diff --git a/rocolib/builders/TugBuilder.py b/rocolib/builders/TugBuilder.py
index 1fde8a2f8d36f5c4fa6b8d8d0fdc7b2cd7170923..8e20af34235ba2645383c68d66eaea87a14db581 100644
--- a/rocolib/builders/TugBuilder.py
+++ b/rocolib/builders/TugBuilder.py
@@ -5,7 +5,7 @@ c = Component()
 # BOX
 
 c.addSubcomponent("cabin","Cabin", inherit=True, prefix=None)
-c.addSubcomponent("boat","BoatBase", root=True)
+c.addSubcomponent("boat","BoatBase", root=True, inherit=True)
 
 c.addConstraint(("boat","boat.length"), ("length", "depth"), "sum(x)")
 c.addConstraint(("boat","boat.width"), "width")
@@ -16,4 +16,7 @@ c.addConstraint(("boat","stern.point"), "length", "x/8.")
 c.addConnection(("cabin", "portedge"), ("boat", "portedge"), angle=0)
 c.addConnection(("cabin", "staredge"), ("boat", "staredge"), angle=0, tabWidth=10)
 
+c.inheritInterface(("portedge"), ("boat", "portedge"))
+c.inheritInterface(("staredge"), ("boat", "staredge"))
+
 c.toLibrary("Tug")
diff --git a/rocolib/builders/boat/BatteryStackMountBuilder.py b/rocolib/builders/boat/BatteryStackMountBuilder.py
index eba6eadc9aac86d0351505a36e36fc19f3f36aff..7757ba6e066239bf00bb7fec549be76d040a068d 100644
--- a/rocolib/builders/boat/BatteryStackMountBuilder.py
+++ b/rocolib/builders/boat/BatteryStackMountBuilder.py
@@ -6,37 +6,34 @@ c = Component()
 c.addParameter("boatwidth", 90, paramType="length")
 c.addParameter("boatdepth", 70, paramType="length")
 
+c.addParameter("batterylength", 60, paramType="length")
+c.addParameter("batterywidth", 17, paramType="length")
+c.addParameter("batterydepth", 9, paramType="length")
+
 c.addParameter("numBatteries", 3, paramType="count", minValue=1, maxValue=10)
 
 c.addSubcomponent("holder", "SimpleRectBeam", inherit=True, prefix=None)
-c.addConstConstraint(("holder", "depth"), 60)
-c.addConstraint(("holder", "length"), ("numBatteries"), "9 * x")
-c.addConstConstraint(("holder", "width"), 17)
+c.addConstraint(("holder", "depth"), "batterylength")
+c.addConstraint(("holder", "length"), ("numBatteries", "batterydepth"), "x[1] * x[0]")
+c.addConstraint(("holder", "width"), "batterywidth")
 
 c.addSubcomponent("larm", "Rectangle", inherit=True)
-c.addConstraint(("larm", "l"), ("numBatteries", "boatwidth", "boatdepth"), "((0.5 * x[1] - 0.5 * ( 9 * x[0])) ** 2 + (x[2] - 17) ** 2) ** 0.5")
-c.addConstConstraint(("larm", "w"), 60)
+c.addConstraint(("larm", "l"), ("numBatteries", "boatwidth", "boatdepth", "batterywidth", "batterydepth"), "((0.5 * x[1] - 0.5 * (x[4] * x[0])) ** 2 + (x[2] - x[3]) ** 2) ** 0.5")
+c.addConstraint(("larm", "w"), "batterylength")
 
 c.addSubcomponent("rarm", "Rectangle", inherit=True)
-c.addConstraint(("rarm", "l"), ("numBatteries","boatwidth", "boatdepth"), "((0.5 * x[1] - 0.5 * ( 9 * x[0])) ** 2 + (x[2] - 17) ** 2) ** 0.5")
-c.addConstConstraint(("rarm", "w"), 60)
+c.addConstraint(("rarm", "l"), ("numBatteries","boatwidth", "boatdepth", "batterywidth", "batterydepth"), "((0.5 * x[1] - 0.5 * (x[4] * x[0])) ** 2 + (x[2] - x[3]) ** 2) ** 0.5")
+c.addConstraint(("rarm", "w"), "batterylength")
 #
 c.addConnection(("larm", "l"), ("holder", "topedge3"), angle=-45)
 c.addConnection(("rarm", "l"), ("holder", "botedge3"), angle=-45)
 
-c.addSubcomponent("terminals1", "Cutout")
-c.addConstConstraint(("terminals1", "dx"), 3)
-c.addConstraint(("terminals1", "dy"), "numBatteries", "x * 6")
+c.addSubcomponent("terminals", "Cutout")
+c.addConstConstraint(("terminals", "dx"), 6)
+c.addConstraint(("terminals", "dy"), "numBatteries", "x * 6")
 c.addConnection(("holder", "face3"),
-                   ("terminals1", "decoration"),
-                   mode="hole", offset=Function(params=("numBatteries"), fnstring="(-28, 0)"))
-
-c.addSubcomponent("terminals2", "Cutout")
-c.addConstConstraint(("terminals2", "dx"), 3)
-c.addConstraint(("terminals2", "dy"), "numBatteries", "x * 6")
-c.addConnection(("holder", "face2"),
-                   ("terminals2", "decoration"),
-                   mode="hole", offset=Function(params=("numBatteries"), fnstring="(7, 0)"))
+                   ("terminals", "decoration"),
+                   mode="hole", offset=Function(params=("batterylength"), fnstring="(-30, 0)"))
 
 c.inheritInterface("leftArmInterface", ("larm", "r"))
 c.inheritInterface("rightArmInterface", ("rarm", "r"))
diff --git a/rocolib/builders/boat/BoatWithServoStackBatteryBuilder.py b/rocolib/builders/boat/BoatWithServoStackBatteryBuilder.py
index f5ade31f68a9c3f8298c85a1687d881f07f10ee0..b323d42fe5f5bdc261dcc1daa06cbea3fbd618a5 100644
--- a/rocolib/builders/boat/BoatWithServoStackBatteryBuilder.py
+++ b/rocolib/builders/boat/BoatWithServoStackBatteryBuilder.py
@@ -6,7 +6,20 @@ c = Component()
 c.addSubcomponent("boat", "BoatBase", inherit=True, prefix=None)
 c.inheritAllInterfaces("boat")
 
+c.addParameter("length", 228, paramType="length")
+c.addParameter("width", 90, paramType="length")
+c.addParameter("depth", 70, paramType="length")
+
+c.addSubcomponent("boat", "BoatBase", inherit=True)
+
+c.addConstraint(("boat", "boat.length"), "length")
+c.addConstraint(("boat", "boat.width"), "width")
+c.addConstraint(("boat", "boat.depth"), "depth")
+
 c.addSubcomponent("servostackbattery", "ServoStackBatteryMount")
-# c.inheritAllInterfaces("servostackbattery")
+c.inheritAllInterfaces("servostackbattery")
+
+c.addConnection(("boat", "portedge"), ("servostackbattery", "lTopSplit")) #both face the same direction
+c.addConnection(("boat", "staredge"), ("servostackbattery", "rTopSplit"))
 
 c.toLibrary("BoatWithServoStackBattery")
diff --git a/rocolib/builders/boat/HouseboatWithServoMountAndStackBuilder.py b/rocolib/builders/boat/HouseboatWithServoMountAndStackBuilder.py
index 50b47595478542affcb46c95933adbc7a2d13834..808a34c94ea72d4bd6129aa8bad68923afdc6979 100644
--- a/rocolib/builders/boat/HouseboatWithServoMountAndStackBuilder.py
+++ b/rocolib/builders/boat/HouseboatWithServoMountAndStackBuilder.py
@@ -3,21 +3,17 @@ from rocolib.api.Function import Function
 
 c = Component()
 
-c.addSubcomponent("houseboat", "Tug", inherit=True)
-c.inheritAllInterfaces("houseboat")
-c.addSubcomponent("servostackbattery", "ServoStackBatteryMount", inherit=True)
-c.inheritAllInterfaces("servosandstack")
+c.addSubcomponent("boat", "Tug", inherit=True, prefix=None)
+c.inheritAllInterfaces("boat")
 
-# c.addSubcomponent("topPortSplit", "SplitEdge")
-# c.addConstraint(("topPortSplit", "toplength"), ("topDistance"), "(x,)")
-# c.addConstraint(("topPortSplit", "botlength"), ("topDistance", "espStack.stack.length"), "(x[1], x[0] - x[1])") #but the value of the new component's boat.length parameter is completely disconnected from the value of the boat component's boat.length parameter
-# c.addConnection(("topPortSplit", "topedge0"), ("boatwithservo", "topPort")) #both face the same direction
-# c.addConnection(("topPortSplit", "botedge0"), ("espStack", "leftArmInterface"), angle=45)
+c.addConstConstraint(("boat", "length"), 228)
+c.addConstConstraint(("boat", "width"), 90)
+c.addConstConstraint(("boat", "depth"), 70)
 
-# c.addSubcomponent("topStarSplit", "SplitEdge")
-# c.addConstraint(("topStarSplit", "toplength"), ("topDistance"), "(x,)")
-# c.addConstraint(("topStarSplit", "botlength"), ("topDistance", "espStack.stack.length"), "(x[0]-x[1], x[1])") #but the value of the new component's boat.length parameter is completely disconnected from the value of the boat component's boat.length parameter
-# c.addConnection(("topStarSplit", "topedge0"), ("boatwithservo", "topStar")) #both face the same direction
-# c.addConnection(("topStarSplit", "botedge1"), ("espStack", "rightArmInterface"), tabWidth=10)
+c.addSubcomponent("servostackbattery", "ServoStackBatteryMount")
+c.inheritAllInterfaces("servostackbattery")
+
+c.addConnection(("boat", "portedge"), ("servostackbattery", "lTopSplit")) #both face the same direction
+c.addConnection(("boat", "staredge"), ("servostackbattery", "rTopSplit"))
 
 c.toLibrary("HouseboatWithServoMountAndStack")
diff --git a/rocolib/library/BatteryStackMount.yaml b/rocolib/library/BatteryStackMount.yaml
index db336c70c975c0fd5229e3d78a3cdccb3b7008c4..e8bc375c16dfe286a1283f06112a215b6b37b4dc 100644
--- a/rocolib/library/BatteryStackMount.yaml
+++ b/rocolib/library/BatteryStackMount.yaml
@@ -18,17 +18,8 @@ connections:
     - decoration
   - mode: hole
     offset:
-      function: (-28, 0)
-      parameter: numBatteries
-  connection3:
-  - - holder
-    - face2
-  - - terminals2
-    - decoration
-  - mode: hole
-    offset:
-      function: (7, 0)
-      parameter: numBatteries
+      function: (-30, 0)
+      parameter: batterylength
 interfaces:
   leftArmInterface:
     interface: r
@@ -83,6 +74,24 @@ parameters:
     defaultValue: true
     spec:
       valueType: bool
+  batterydepth:
+    defaultValue: 9
+    spec:
+      minValue: 0
+      units: mm
+      valueType: (float, int)
+  batterylength:
+    defaultValue: 60
+    spec:
+      minValue: 0
+      units: mm
+      valueType: (float, int)
+  batterywidth:
+    defaultValue: 17
+    spec:
+      minValue: 0
+      units: mm
+      valueType: (float, int)
   boatdepth:
     defaultValue: 70
     spec:
@@ -225,11 +234,15 @@ subcomponents:
         parameter: _q_k
       addTabs:
         parameter: addTabs
-      depth: 60
+      depth:
+        parameter: batterylength
       length:
-        function: 9 * x
-        parameter: numBatteries
-      width: 17
+        function: x[1] * x[0]
+        parameter:
+        - numBatteries
+        - batterydepth
+      width:
+        parameter: batterywidth
   larm:
     classname: Rectangle
     kwargs: {}
@@ -249,12 +262,16 @@ subcomponents:
       _q_k:
         parameter: larm._q_k
       l:
-        function: ((0.5 * x[1] - 0.5 * ( 9 * x[0])) ** 2 + (x[2] - 17) ** 2) ** 0.5
+        function: ((0.5 * x[1] - 0.5 * (x[4] * x[0])) ** 2 + (x[2] - x[3]) ** 2) **
+          0.5
         parameter: &id001
         - numBatteries
         - boatwidth
         - boatdepth
-      w: 60
+        - batterywidth
+        - batterydepth
+      w:
+        parameter: batterylength
   rarm:
     classname: Rectangle
     kwargs: {}
@@ -274,22 +291,16 @@ subcomponents:
       _q_k:
         parameter: rarm._q_k
       l:
-        function: ((0.5 * x[1] - 0.5 * ( 9 * x[0])) ** 2 + (x[2] - 17) ** 2) ** 0.5
+        function: ((0.5 * x[1] - 0.5 * (x[4] * x[0])) ** 2 + (x[2] - x[3]) ** 2) **
+          0.5
         parameter: *id001
-      w: 60
+      w:
+        parameter: batterylength
   terminals1:
     classname: Cutout
     kwargs: {}
     parameters:
-      dx: 3
-      dy:
-        function: x * 6
-        parameter: numBatteries
-  terminals2:
-    classname: Cutout
-    kwargs: {}
-    parameters:
-      dx: 3
+      dx: 6
       dy:
         function: x * 6
         parameter: numBatteries
diff --git a/rocolib/library/BoatWithServoStackBattery.yaml b/rocolib/library/BoatWithServoStackBattery.yaml
index e2e495b288057e55bd205dddbb5f3ad610b2ed3a..d1b5d46b7b7c967c0e361de49ad43f1c5c056085 100644
--- a/rocolib/library/BoatWithServoStackBattery.yaml
+++ b/rocolib/library/BoatWithServoStackBattery.yaml
@@ -1,4 +1,16 @@
-connections: {}
+connections:
+  connection0:
+  - - boat
+    - portedge
+  - - servostackbattery
+    - lTopSplit
+  - {}
+  connection1:
+  - - boat
+    - staredge
+  - - servostackbattery
+    - rTopSplit
+  - {}
 interfaces:
   boat.portedge:
     interface: portedge
@@ -6,7 +18,2449 @@ interfaces:
   boat.staredge:
     interface: staredge
     subcomponent: boat
+  servostackbattery.batterystackmount.leftArmInterface:
+    interface: batterystackmount.leftArmInterface
+    subcomponent: servostackbattery
+  servostackbattery.batterystackmount.rightArmInterface:
+    interface: batterystackmount.rightArmInterface
+    subcomponent: servostackbattery
+  servostackbattery.lTopSplit:
+    interface: lTopSplit
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.botedge0:
+    interface: lfullsplit.botedge0
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.botedge1:
+    interface: lfullsplit.botedge1
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.botedge10:
+    interface: lfullsplit.botedge10
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.botedge11:
+    interface: lfullsplit.botedge11
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.botedge12:
+    interface: lfullsplit.botedge12
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.botedge13:
+    interface: lfullsplit.botedge13
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.botedge14:
+    interface: lfullsplit.botedge14
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.botedge15:
+    interface: lfullsplit.botedge15
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.botedge16:
+    interface: lfullsplit.botedge16
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.botedge17:
+    interface: lfullsplit.botedge17
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.botedge18:
+    interface: lfullsplit.botedge18
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.botedge19:
+    interface: lfullsplit.botedge19
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.botedge2:
+    interface: lfullsplit.botedge2
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.botedge20:
+    interface: lfullsplit.botedge20
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.botedge21:
+    interface: lfullsplit.botedge21
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.botedge22:
+    interface: lfullsplit.botedge22
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.botedge23:
+    interface: lfullsplit.botedge23
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.botedge24:
+    interface: lfullsplit.botedge24
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.botedge25:
+    interface: lfullsplit.botedge25
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.botedge26:
+    interface: lfullsplit.botedge26
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.botedge27:
+    interface: lfullsplit.botedge27
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.botedge28:
+    interface: lfullsplit.botedge28
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.botedge29:
+    interface: lfullsplit.botedge29
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.botedge3:
+    interface: lfullsplit.botedge3
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.botedge30:
+    interface: lfullsplit.botedge30
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.botedge31:
+    interface: lfullsplit.botedge31
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.botedge32:
+    interface: lfullsplit.botedge32
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.botedge33:
+    interface: lfullsplit.botedge33
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.botedge34:
+    interface: lfullsplit.botedge34
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.botedge35:
+    interface: lfullsplit.botedge35
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.botedge36:
+    interface: lfullsplit.botedge36
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.botedge37:
+    interface: lfullsplit.botedge37
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.botedge38:
+    interface: lfullsplit.botedge38
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.botedge39:
+    interface: lfullsplit.botedge39
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.botedge4:
+    interface: lfullsplit.botedge4
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.botedge40:
+    interface: lfullsplit.botedge40
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.botedge41:
+    interface: lfullsplit.botedge41
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.botedge42:
+    interface: lfullsplit.botedge42
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.botedge43:
+    interface: lfullsplit.botedge43
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.botedge44:
+    interface: lfullsplit.botedge44
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.botedge45:
+    interface: lfullsplit.botedge45
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.botedge46:
+    interface: lfullsplit.botedge46
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.botedge47:
+    interface: lfullsplit.botedge47
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.botedge48:
+    interface: lfullsplit.botedge48
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.botedge49:
+    interface: lfullsplit.botedge49
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.botedge5:
+    interface: lfullsplit.botedge5
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.botedge50:
+    interface: lfullsplit.botedge50
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.botedge51:
+    interface: lfullsplit.botedge51
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.botedge52:
+    interface: lfullsplit.botedge52
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.botedge53:
+    interface: lfullsplit.botedge53
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.botedge54:
+    interface: lfullsplit.botedge54
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.botedge55:
+    interface: lfullsplit.botedge55
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.botedge56:
+    interface: lfullsplit.botedge56
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.botedge57:
+    interface: lfullsplit.botedge57
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.botedge58:
+    interface: lfullsplit.botedge58
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.botedge59:
+    interface: lfullsplit.botedge59
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.botedge6:
+    interface: lfullsplit.botedge6
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.botedge60:
+    interface: lfullsplit.botedge60
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.botedge61:
+    interface: lfullsplit.botedge61
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.botedge62:
+    interface: lfullsplit.botedge62
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.botedge63:
+    interface: lfullsplit.botedge63
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.botedge64:
+    interface: lfullsplit.botedge64
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.botedge65:
+    interface: lfullsplit.botedge65
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.botedge66:
+    interface: lfullsplit.botedge66
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.botedge67:
+    interface: lfullsplit.botedge67
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.botedge68:
+    interface: lfullsplit.botedge68
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.botedge69:
+    interface: lfullsplit.botedge69
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.botedge7:
+    interface: lfullsplit.botedge7
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.botedge70:
+    interface: lfullsplit.botedge70
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.botedge71:
+    interface: lfullsplit.botedge71
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.botedge72:
+    interface: lfullsplit.botedge72
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.botedge73:
+    interface: lfullsplit.botedge73
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.botedge74:
+    interface: lfullsplit.botedge74
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.botedge75:
+    interface: lfullsplit.botedge75
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.botedge76:
+    interface: lfullsplit.botedge76
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.botedge77:
+    interface: lfullsplit.botedge77
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.botedge78:
+    interface: lfullsplit.botedge78
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.botedge79:
+    interface: lfullsplit.botedge79
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.botedge8:
+    interface: lfullsplit.botedge8
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.botedge80:
+    interface: lfullsplit.botedge80
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.botedge81:
+    interface: lfullsplit.botedge81
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.botedge82:
+    interface: lfullsplit.botedge82
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.botedge83:
+    interface: lfullsplit.botedge83
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.botedge84:
+    interface: lfullsplit.botedge84
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.botedge85:
+    interface: lfullsplit.botedge85
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.botedge86:
+    interface: lfullsplit.botedge86
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.botedge87:
+    interface: lfullsplit.botedge87
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.botedge88:
+    interface: lfullsplit.botedge88
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.botedge89:
+    interface: lfullsplit.botedge89
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.botedge9:
+    interface: lfullsplit.botedge9
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.botedge90:
+    interface: lfullsplit.botedge90
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.botedge91:
+    interface: lfullsplit.botedge91
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.botedge92:
+    interface: lfullsplit.botedge92
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.botedge93:
+    interface: lfullsplit.botedge93
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.botedge94:
+    interface: lfullsplit.botedge94
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.botedge95:
+    interface: lfullsplit.botedge95
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.botedge96:
+    interface: lfullsplit.botedge96
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.botedge97:
+    interface: lfullsplit.botedge97
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.botedge98:
+    interface: lfullsplit.botedge98
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.botedge99:
+    interface: lfullsplit.botedge99
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.topedge0:
+    interface: lfullsplit.topedge0
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.topedge1:
+    interface: lfullsplit.topedge1
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.topedge10:
+    interface: lfullsplit.topedge10
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.topedge11:
+    interface: lfullsplit.topedge11
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.topedge12:
+    interface: lfullsplit.topedge12
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.topedge13:
+    interface: lfullsplit.topedge13
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.topedge14:
+    interface: lfullsplit.topedge14
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.topedge15:
+    interface: lfullsplit.topedge15
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.topedge16:
+    interface: lfullsplit.topedge16
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.topedge17:
+    interface: lfullsplit.topedge17
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.topedge18:
+    interface: lfullsplit.topedge18
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.topedge19:
+    interface: lfullsplit.topedge19
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.topedge2:
+    interface: lfullsplit.topedge2
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.topedge20:
+    interface: lfullsplit.topedge20
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.topedge21:
+    interface: lfullsplit.topedge21
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.topedge22:
+    interface: lfullsplit.topedge22
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.topedge23:
+    interface: lfullsplit.topedge23
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.topedge24:
+    interface: lfullsplit.topedge24
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.topedge25:
+    interface: lfullsplit.topedge25
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.topedge26:
+    interface: lfullsplit.topedge26
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.topedge27:
+    interface: lfullsplit.topedge27
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.topedge28:
+    interface: lfullsplit.topedge28
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.topedge29:
+    interface: lfullsplit.topedge29
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.topedge3:
+    interface: lfullsplit.topedge3
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.topedge30:
+    interface: lfullsplit.topedge30
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.topedge31:
+    interface: lfullsplit.topedge31
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.topedge32:
+    interface: lfullsplit.topedge32
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.topedge33:
+    interface: lfullsplit.topedge33
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.topedge34:
+    interface: lfullsplit.topedge34
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.topedge35:
+    interface: lfullsplit.topedge35
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.topedge36:
+    interface: lfullsplit.topedge36
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.topedge37:
+    interface: lfullsplit.topedge37
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.topedge38:
+    interface: lfullsplit.topedge38
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.topedge39:
+    interface: lfullsplit.topedge39
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.topedge4:
+    interface: lfullsplit.topedge4
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.topedge40:
+    interface: lfullsplit.topedge40
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.topedge41:
+    interface: lfullsplit.topedge41
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.topedge42:
+    interface: lfullsplit.topedge42
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.topedge43:
+    interface: lfullsplit.topedge43
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.topedge44:
+    interface: lfullsplit.topedge44
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.topedge45:
+    interface: lfullsplit.topedge45
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.topedge46:
+    interface: lfullsplit.topedge46
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.topedge47:
+    interface: lfullsplit.topedge47
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.topedge48:
+    interface: lfullsplit.topedge48
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.topedge49:
+    interface: lfullsplit.topedge49
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.topedge5:
+    interface: lfullsplit.topedge5
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.topedge50:
+    interface: lfullsplit.topedge50
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.topedge51:
+    interface: lfullsplit.topedge51
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.topedge52:
+    interface: lfullsplit.topedge52
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.topedge53:
+    interface: lfullsplit.topedge53
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.topedge54:
+    interface: lfullsplit.topedge54
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.topedge55:
+    interface: lfullsplit.topedge55
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.topedge56:
+    interface: lfullsplit.topedge56
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.topedge57:
+    interface: lfullsplit.topedge57
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.topedge58:
+    interface: lfullsplit.topedge58
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.topedge59:
+    interface: lfullsplit.topedge59
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.topedge6:
+    interface: lfullsplit.topedge6
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.topedge60:
+    interface: lfullsplit.topedge60
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.topedge61:
+    interface: lfullsplit.topedge61
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.topedge62:
+    interface: lfullsplit.topedge62
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.topedge63:
+    interface: lfullsplit.topedge63
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.topedge64:
+    interface: lfullsplit.topedge64
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.topedge65:
+    interface: lfullsplit.topedge65
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.topedge66:
+    interface: lfullsplit.topedge66
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.topedge67:
+    interface: lfullsplit.topedge67
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.topedge68:
+    interface: lfullsplit.topedge68
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.topedge69:
+    interface: lfullsplit.topedge69
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.topedge7:
+    interface: lfullsplit.topedge7
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.topedge70:
+    interface: lfullsplit.topedge70
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.topedge71:
+    interface: lfullsplit.topedge71
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.topedge72:
+    interface: lfullsplit.topedge72
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.topedge73:
+    interface: lfullsplit.topedge73
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.topedge74:
+    interface: lfullsplit.topedge74
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.topedge75:
+    interface: lfullsplit.topedge75
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.topedge76:
+    interface: lfullsplit.topedge76
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.topedge77:
+    interface: lfullsplit.topedge77
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.topedge78:
+    interface: lfullsplit.topedge78
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.topedge79:
+    interface: lfullsplit.topedge79
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.topedge8:
+    interface: lfullsplit.topedge8
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.topedge80:
+    interface: lfullsplit.topedge80
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.topedge81:
+    interface: lfullsplit.topedge81
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.topedge82:
+    interface: lfullsplit.topedge82
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.topedge83:
+    interface: lfullsplit.topedge83
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.topedge84:
+    interface: lfullsplit.topedge84
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.topedge85:
+    interface: lfullsplit.topedge85
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.topedge86:
+    interface: lfullsplit.topedge86
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.topedge87:
+    interface: lfullsplit.topedge87
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.topedge88:
+    interface: lfullsplit.topedge88
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.topedge89:
+    interface: lfullsplit.topedge89
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.topedge9:
+    interface: lfullsplit.topedge9
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.topedge90:
+    interface: lfullsplit.topedge90
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.topedge91:
+    interface: lfullsplit.topedge91
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.topedge92:
+    interface: lfullsplit.topedge92
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.topedge93:
+    interface: lfullsplit.topedge93
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.topedge94:
+    interface: lfullsplit.topedge94
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.topedge95:
+    interface: lfullsplit.topedge95
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.topedge96:
+    interface: lfullsplit.topedge96
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.topedge97:
+    interface: lfullsplit.topedge97
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.topedge98:
+    interface: lfullsplit.topedge98
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.topedge99:
+    interface: lfullsplit.topedge99
+    subcomponent: servostackbattery
+  servostackbattery.rTopSplit:
+    interface: rTopSplit
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.botedge0:
+    interface: rfullsplit.botedge0
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.botedge1:
+    interface: rfullsplit.botedge1
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.botedge10:
+    interface: rfullsplit.botedge10
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.botedge11:
+    interface: rfullsplit.botedge11
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.botedge12:
+    interface: rfullsplit.botedge12
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.botedge13:
+    interface: rfullsplit.botedge13
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.botedge14:
+    interface: rfullsplit.botedge14
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.botedge15:
+    interface: rfullsplit.botedge15
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.botedge16:
+    interface: rfullsplit.botedge16
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.botedge17:
+    interface: rfullsplit.botedge17
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.botedge18:
+    interface: rfullsplit.botedge18
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.botedge19:
+    interface: rfullsplit.botedge19
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.botedge2:
+    interface: rfullsplit.botedge2
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.botedge20:
+    interface: rfullsplit.botedge20
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.botedge21:
+    interface: rfullsplit.botedge21
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.botedge22:
+    interface: rfullsplit.botedge22
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.botedge23:
+    interface: rfullsplit.botedge23
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.botedge24:
+    interface: rfullsplit.botedge24
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.botedge25:
+    interface: rfullsplit.botedge25
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.botedge26:
+    interface: rfullsplit.botedge26
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.botedge27:
+    interface: rfullsplit.botedge27
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.botedge28:
+    interface: rfullsplit.botedge28
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.botedge29:
+    interface: rfullsplit.botedge29
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.botedge3:
+    interface: rfullsplit.botedge3
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.botedge30:
+    interface: rfullsplit.botedge30
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.botedge31:
+    interface: rfullsplit.botedge31
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.botedge32:
+    interface: rfullsplit.botedge32
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.botedge33:
+    interface: rfullsplit.botedge33
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.botedge34:
+    interface: rfullsplit.botedge34
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.botedge35:
+    interface: rfullsplit.botedge35
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.botedge36:
+    interface: rfullsplit.botedge36
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.botedge37:
+    interface: rfullsplit.botedge37
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.botedge38:
+    interface: rfullsplit.botedge38
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.botedge39:
+    interface: rfullsplit.botedge39
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.botedge4:
+    interface: rfullsplit.botedge4
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.botedge40:
+    interface: rfullsplit.botedge40
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.botedge41:
+    interface: rfullsplit.botedge41
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.botedge42:
+    interface: rfullsplit.botedge42
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.botedge43:
+    interface: rfullsplit.botedge43
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.botedge44:
+    interface: rfullsplit.botedge44
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.botedge45:
+    interface: rfullsplit.botedge45
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.botedge46:
+    interface: rfullsplit.botedge46
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.botedge47:
+    interface: rfullsplit.botedge47
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.botedge48:
+    interface: rfullsplit.botedge48
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.botedge49:
+    interface: rfullsplit.botedge49
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.botedge5:
+    interface: rfullsplit.botedge5
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.botedge50:
+    interface: rfullsplit.botedge50
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.botedge51:
+    interface: rfullsplit.botedge51
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.botedge52:
+    interface: rfullsplit.botedge52
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.botedge53:
+    interface: rfullsplit.botedge53
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.botedge54:
+    interface: rfullsplit.botedge54
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.botedge55:
+    interface: rfullsplit.botedge55
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.botedge56:
+    interface: rfullsplit.botedge56
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.botedge57:
+    interface: rfullsplit.botedge57
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.botedge58:
+    interface: rfullsplit.botedge58
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.botedge59:
+    interface: rfullsplit.botedge59
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.botedge6:
+    interface: rfullsplit.botedge6
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.botedge60:
+    interface: rfullsplit.botedge60
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.botedge61:
+    interface: rfullsplit.botedge61
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.botedge62:
+    interface: rfullsplit.botedge62
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.botedge63:
+    interface: rfullsplit.botedge63
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.botedge64:
+    interface: rfullsplit.botedge64
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.botedge65:
+    interface: rfullsplit.botedge65
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.botedge66:
+    interface: rfullsplit.botedge66
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.botedge67:
+    interface: rfullsplit.botedge67
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.botedge68:
+    interface: rfullsplit.botedge68
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.botedge69:
+    interface: rfullsplit.botedge69
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.botedge7:
+    interface: rfullsplit.botedge7
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.botedge70:
+    interface: rfullsplit.botedge70
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.botedge71:
+    interface: rfullsplit.botedge71
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.botedge72:
+    interface: rfullsplit.botedge72
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.botedge73:
+    interface: rfullsplit.botedge73
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.botedge74:
+    interface: rfullsplit.botedge74
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.botedge75:
+    interface: rfullsplit.botedge75
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.botedge76:
+    interface: rfullsplit.botedge76
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.botedge77:
+    interface: rfullsplit.botedge77
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.botedge78:
+    interface: rfullsplit.botedge78
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.botedge79:
+    interface: rfullsplit.botedge79
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.botedge8:
+    interface: rfullsplit.botedge8
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.botedge80:
+    interface: rfullsplit.botedge80
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.botedge81:
+    interface: rfullsplit.botedge81
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.botedge82:
+    interface: rfullsplit.botedge82
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.botedge83:
+    interface: rfullsplit.botedge83
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.botedge84:
+    interface: rfullsplit.botedge84
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.botedge85:
+    interface: rfullsplit.botedge85
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.botedge86:
+    interface: rfullsplit.botedge86
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.botedge87:
+    interface: rfullsplit.botedge87
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.botedge88:
+    interface: rfullsplit.botedge88
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.botedge89:
+    interface: rfullsplit.botedge89
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.botedge9:
+    interface: rfullsplit.botedge9
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.botedge90:
+    interface: rfullsplit.botedge90
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.botedge91:
+    interface: rfullsplit.botedge91
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.botedge92:
+    interface: rfullsplit.botedge92
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.botedge93:
+    interface: rfullsplit.botedge93
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.botedge94:
+    interface: rfullsplit.botedge94
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.botedge95:
+    interface: rfullsplit.botedge95
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.botedge96:
+    interface: rfullsplit.botedge96
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.botedge97:
+    interface: rfullsplit.botedge97
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.botedge98:
+    interface: rfullsplit.botedge98
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.botedge99:
+    interface: rfullsplit.botedge99
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.topedge0:
+    interface: rfullsplit.topedge0
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.topedge1:
+    interface: rfullsplit.topedge1
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.topedge10:
+    interface: rfullsplit.topedge10
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.topedge11:
+    interface: rfullsplit.topedge11
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.topedge12:
+    interface: rfullsplit.topedge12
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.topedge13:
+    interface: rfullsplit.topedge13
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.topedge14:
+    interface: rfullsplit.topedge14
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.topedge15:
+    interface: rfullsplit.topedge15
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.topedge16:
+    interface: rfullsplit.topedge16
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.topedge17:
+    interface: rfullsplit.topedge17
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.topedge18:
+    interface: rfullsplit.topedge18
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.topedge19:
+    interface: rfullsplit.topedge19
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.topedge2:
+    interface: rfullsplit.topedge2
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.topedge20:
+    interface: rfullsplit.topedge20
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.topedge21:
+    interface: rfullsplit.topedge21
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.topedge22:
+    interface: rfullsplit.topedge22
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.topedge23:
+    interface: rfullsplit.topedge23
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.topedge24:
+    interface: rfullsplit.topedge24
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.topedge25:
+    interface: rfullsplit.topedge25
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.topedge26:
+    interface: rfullsplit.topedge26
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.topedge27:
+    interface: rfullsplit.topedge27
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.topedge28:
+    interface: rfullsplit.topedge28
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.topedge29:
+    interface: rfullsplit.topedge29
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.topedge3:
+    interface: rfullsplit.topedge3
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.topedge30:
+    interface: rfullsplit.topedge30
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.topedge31:
+    interface: rfullsplit.topedge31
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.topedge32:
+    interface: rfullsplit.topedge32
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.topedge33:
+    interface: rfullsplit.topedge33
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.topedge34:
+    interface: rfullsplit.topedge34
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.topedge35:
+    interface: rfullsplit.topedge35
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.topedge36:
+    interface: rfullsplit.topedge36
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.topedge37:
+    interface: rfullsplit.topedge37
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.topedge38:
+    interface: rfullsplit.topedge38
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.topedge39:
+    interface: rfullsplit.topedge39
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.topedge4:
+    interface: rfullsplit.topedge4
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.topedge40:
+    interface: rfullsplit.topedge40
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.topedge41:
+    interface: rfullsplit.topedge41
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.topedge42:
+    interface: rfullsplit.topedge42
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.topedge43:
+    interface: rfullsplit.topedge43
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.topedge44:
+    interface: rfullsplit.topedge44
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.topedge45:
+    interface: rfullsplit.topedge45
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.topedge46:
+    interface: rfullsplit.topedge46
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.topedge47:
+    interface: rfullsplit.topedge47
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.topedge48:
+    interface: rfullsplit.topedge48
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.topedge49:
+    interface: rfullsplit.topedge49
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.topedge5:
+    interface: rfullsplit.topedge5
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.topedge50:
+    interface: rfullsplit.topedge50
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.topedge51:
+    interface: rfullsplit.topedge51
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.topedge52:
+    interface: rfullsplit.topedge52
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.topedge53:
+    interface: rfullsplit.topedge53
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.topedge54:
+    interface: rfullsplit.topedge54
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.topedge55:
+    interface: rfullsplit.topedge55
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.topedge56:
+    interface: rfullsplit.topedge56
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.topedge57:
+    interface: rfullsplit.topedge57
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.topedge58:
+    interface: rfullsplit.topedge58
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.topedge59:
+    interface: rfullsplit.topedge59
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.topedge6:
+    interface: rfullsplit.topedge6
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.topedge60:
+    interface: rfullsplit.topedge60
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.topedge61:
+    interface: rfullsplit.topedge61
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.topedge62:
+    interface: rfullsplit.topedge62
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.topedge63:
+    interface: rfullsplit.topedge63
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.topedge64:
+    interface: rfullsplit.topedge64
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.topedge65:
+    interface: rfullsplit.topedge65
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.topedge66:
+    interface: rfullsplit.topedge66
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.topedge67:
+    interface: rfullsplit.topedge67
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.topedge68:
+    interface: rfullsplit.topedge68
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.topedge69:
+    interface: rfullsplit.topedge69
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.topedge7:
+    interface: rfullsplit.topedge7
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.topedge70:
+    interface: rfullsplit.topedge70
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.topedge71:
+    interface: rfullsplit.topedge71
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.topedge72:
+    interface: rfullsplit.topedge72
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.topedge73:
+    interface: rfullsplit.topedge73
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.topedge74:
+    interface: rfullsplit.topedge74
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.topedge75:
+    interface: rfullsplit.topedge75
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.topedge76:
+    interface: rfullsplit.topedge76
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.topedge77:
+    interface: rfullsplit.topedge77
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.topedge78:
+    interface: rfullsplit.topedge78
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.topedge79:
+    interface: rfullsplit.topedge79
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.topedge8:
+    interface: rfullsplit.topedge8
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.topedge80:
+    interface: rfullsplit.topedge80
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.topedge81:
+    interface: rfullsplit.topedge81
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.topedge82:
+    interface: rfullsplit.topedge82
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.topedge83:
+    interface: rfullsplit.topedge83
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.topedge84:
+    interface: rfullsplit.topedge84
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.topedge85:
+    interface: rfullsplit.topedge85
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.topedge86:
+    interface: rfullsplit.topedge86
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.topedge87:
+    interface: rfullsplit.topedge87
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.topedge88:
+    interface: rfullsplit.topedge88
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.topedge89:
+    interface: rfullsplit.topedge89
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.topedge9:
+    interface: rfullsplit.topedge9
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.topedge90:
+    interface: rfullsplit.topedge90
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.topedge91:
+    interface: rfullsplit.topedge91
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.topedge92:
+    interface: rfullsplit.topedge92
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.topedge93:
+    interface: rfullsplit.topedge93
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.topedge94:
+    interface: rfullsplit.topedge94
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.topedge95:
+    interface: rfullsplit.topedge95
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.topedge96:
+    interface: rfullsplit.topedge96
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.topedge97:
+    interface: rfullsplit.topedge97
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.topedge98:
+    interface: rfullsplit.topedge98
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.topedge99:
+    interface: rfullsplit.topedge99
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.doubleServoMount.lServoInterface:
+    interface: servosandstack.doubleServoMount.lServoInterface
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.doubleServoMount.lServoMount.leftInterface:
+    interface: servosandstack.doubleServoMount.lServoMount.leftInterface
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.doubleServoMount.lServoMount.rightInterface:
+    interface: servosandstack.doubleServoMount.lServoMount.rightInterface
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.doubleServoMount.rServoInterface:
+    interface: servosandstack.doubleServoMount.rServoInterface
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.doubleServoMount.rServoMount.leftInterface:
+    interface: servosandstack.doubleServoMount.rServoMount.leftInterface
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.doubleServoMount.rServoMount.rightInterface:
+    interface: servosandstack.doubleServoMount.rServoMount.rightInterface
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.lmountandservosplit:
+    interface: servosandstack.lmountandservosplit
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.botedge0:
+    interface: servosandstack.portsplit.botedge0
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.botedge1:
+    interface: servosandstack.portsplit.botedge1
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.botedge10:
+    interface: servosandstack.portsplit.botedge10
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.botedge11:
+    interface: servosandstack.portsplit.botedge11
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.botedge12:
+    interface: servosandstack.portsplit.botedge12
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.botedge13:
+    interface: servosandstack.portsplit.botedge13
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.botedge14:
+    interface: servosandstack.portsplit.botedge14
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.botedge15:
+    interface: servosandstack.portsplit.botedge15
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.botedge16:
+    interface: servosandstack.portsplit.botedge16
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.botedge17:
+    interface: servosandstack.portsplit.botedge17
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.botedge18:
+    interface: servosandstack.portsplit.botedge18
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.botedge19:
+    interface: servosandstack.portsplit.botedge19
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.botedge2:
+    interface: servosandstack.portsplit.botedge2
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.botedge20:
+    interface: servosandstack.portsplit.botedge20
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.botedge21:
+    interface: servosandstack.portsplit.botedge21
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.botedge22:
+    interface: servosandstack.portsplit.botedge22
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.botedge23:
+    interface: servosandstack.portsplit.botedge23
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.botedge24:
+    interface: servosandstack.portsplit.botedge24
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.botedge25:
+    interface: servosandstack.portsplit.botedge25
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.botedge26:
+    interface: servosandstack.portsplit.botedge26
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.botedge27:
+    interface: servosandstack.portsplit.botedge27
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.botedge28:
+    interface: servosandstack.portsplit.botedge28
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.botedge29:
+    interface: servosandstack.portsplit.botedge29
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.botedge3:
+    interface: servosandstack.portsplit.botedge3
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.botedge30:
+    interface: servosandstack.portsplit.botedge30
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.botedge31:
+    interface: servosandstack.portsplit.botedge31
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.botedge32:
+    interface: servosandstack.portsplit.botedge32
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.botedge33:
+    interface: servosandstack.portsplit.botedge33
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.botedge34:
+    interface: servosandstack.portsplit.botedge34
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.botedge35:
+    interface: servosandstack.portsplit.botedge35
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.botedge36:
+    interface: servosandstack.portsplit.botedge36
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.botedge37:
+    interface: servosandstack.portsplit.botedge37
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.botedge38:
+    interface: servosandstack.portsplit.botedge38
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.botedge39:
+    interface: servosandstack.portsplit.botedge39
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.botedge4:
+    interface: servosandstack.portsplit.botedge4
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.botedge40:
+    interface: servosandstack.portsplit.botedge40
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.botedge41:
+    interface: servosandstack.portsplit.botedge41
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.botedge42:
+    interface: servosandstack.portsplit.botedge42
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.botedge43:
+    interface: servosandstack.portsplit.botedge43
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.botedge44:
+    interface: servosandstack.portsplit.botedge44
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.botedge45:
+    interface: servosandstack.portsplit.botedge45
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.botedge46:
+    interface: servosandstack.portsplit.botedge46
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.botedge47:
+    interface: servosandstack.portsplit.botedge47
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.botedge48:
+    interface: servosandstack.portsplit.botedge48
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.botedge49:
+    interface: servosandstack.portsplit.botedge49
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.botedge5:
+    interface: servosandstack.portsplit.botedge5
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.botedge50:
+    interface: servosandstack.portsplit.botedge50
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.botedge51:
+    interface: servosandstack.portsplit.botedge51
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.botedge52:
+    interface: servosandstack.portsplit.botedge52
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.botedge53:
+    interface: servosandstack.portsplit.botedge53
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.botedge54:
+    interface: servosandstack.portsplit.botedge54
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.botedge55:
+    interface: servosandstack.portsplit.botedge55
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.botedge56:
+    interface: servosandstack.portsplit.botedge56
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.botedge57:
+    interface: servosandstack.portsplit.botedge57
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.botedge58:
+    interface: servosandstack.portsplit.botedge58
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.botedge59:
+    interface: servosandstack.portsplit.botedge59
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.botedge6:
+    interface: servosandstack.portsplit.botedge6
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.botedge60:
+    interface: servosandstack.portsplit.botedge60
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.botedge61:
+    interface: servosandstack.portsplit.botedge61
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.botedge62:
+    interface: servosandstack.portsplit.botedge62
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.botedge63:
+    interface: servosandstack.portsplit.botedge63
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.botedge64:
+    interface: servosandstack.portsplit.botedge64
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.botedge65:
+    interface: servosandstack.portsplit.botedge65
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.botedge66:
+    interface: servosandstack.portsplit.botedge66
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.botedge67:
+    interface: servosandstack.portsplit.botedge67
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.botedge68:
+    interface: servosandstack.portsplit.botedge68
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.botedge69:
+    interface: servosandstack.portsplit.botedge69
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.botedge7:
+    interface: servosandstack.portsplit.botedge7
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.botedge70:
+    interface: servosandstack.portsplit.botedge70
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.botedge71:
+    interface: servosandstack.portsplit.botedge71
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.botedge72:
+    interface: servosandstack.portsplit.botedge72
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.botedge73:
+    interface: servosandstack.portsplit.botedge73
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.botedge74:
+    interface: servosandstack.portsplit.botedge74
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.botedge75:
+    interface: servosandstack.portsplit.botedge75
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.botedge76:
+    interface: servosandstack.portsplit.botedge76
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.botedge77:
+    interface: servosandstack.portsplit.botedge77
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.botedge78:
+    interface: servosandstack.portsplit.botedge78
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.botedge79:
+    interface: servosandstack.portsplit.botedge79
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.botedge8:
+    interface: servosandstack.portsplit.botedge8
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.botedge80:
+    interface: servosandstack.portsplit.botedge80
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.botedge81:
+    interface: servosandstack.portsplit.botedge81
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.botedge82:
+    interface: servosandstack.portsplit.botedge82
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.botedge83:
+    interface: servosandstack.portsplit.botedge83
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.botedge84:
+    interface: servosandstack.portsplit.botedge84
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.botedge85:
+    interface: servosandstack.portsplit.botedge85
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.botedge86:
+    interface: servosandstack.portsplit.botedge86
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.botedge87:
+    interface: servosandstack.portsplit.botedge87
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.botedge88:
+    interface: servosandstack.portsplit.botedge88
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.botedge89:
+    interface: servosandstack.portsplit.botedge89
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.botedge9:
+    interface: servosandstack.portsplit.botedge9
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.botedge90:
+    interface: servosandstack.portsplit.botedge90
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.botedge91:
+    interface: servosandstack.portsplit.botedge91
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.botedge92:
+    interface: servosandstack.portsplit.botedge92
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.botedge93:
+    interface: servosandstack.portsplit.botedge93
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.botedge94:
+    interface: servosandstack.portsplit.botedge94
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.botedge95:
+    interface: servosandstack.portsplit.botedge95
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.botedge96:
+    interface: servosandstack.portsplit.botedge96
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.botedge97:
+    interface: servosandstack.portsplit.botedge97
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.botedge98:
+    interface: servosandstack.portsplit.botedge98
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.botedge99:
+    interface: servosandstack.portsplit.botedge99
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.topedge0:
+    interface: servosandstack.portsplit.topedge0
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.topedge1:
+    interface: servosandstack.portsplit.topedge1
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.topedge10:
+    interface: servosandstack.portsplit.topedge10
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.topedge11:
+    interface: servosandstack.portsplit.topedge11
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.topedge12:
+    interface: servosandstack.portsplit.topedge12
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.topedge13:
+    interface: servosandstack.portsplit.topedge13
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.topedge14:
+    interface: servosandstack.portsplit.topedge14
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.topedge15:
+    interface: servosandstack.portsplit.topedge15
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.topedge16:
+    interface: servosandstack.portsplit.topedge16
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.topedge17:
+    interface: servosandstack.portsplit.topedge17
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.topedge18:
+    interface: servosandstack.portsplit.topedge18
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.topedge19:
+    interface: servosandstack.portsplit.topedge19
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.topedge2:
+    interface: servosandstack.portsplit.topedge2
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.topedge20:
+    interface: servosandstack.portsplit.topedge20
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.topedge21:
+    interface: servosandstack.portsplit.topedge21
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.topedge22:
+    interface: servosandstack.portsplit.topedge22
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.topedge23:
+    interface: servosandstack.portsplit.topedge23
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.topedge24:
+    interface: servosandstack.portsplit.topedge24
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.topedge25:
+    interface: servosandstack.portsplit.topedge25
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.topedge26:
+    interface: servosandstack.portsplit.topedge26
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.topedge27:
+    interface: servosandstack.portsplit.topedge27
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.topedge28:
+    interface: servosandstack.portsplit.topedge28
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.topedge29:
+    interface: servosandstack.portsplit.topedge29
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.topedge3:
+    interface: servosandstack.portsplit.topedge3
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.topedge30:
+    interface: servosandstack.portsplit.topedge30
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.topedge31:
+    interface: servosandstack.portsplit.topedge31
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.topedge32:
+    interface: servosandstack.portsplit.topedge32
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.topedge33:
+    interface: servosandstack.portsplit.topedge33
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.topedge34:
+    interface: servosandstack.portsplit.topedge34
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.topedge35:
+    interface: servosandstack.portsplit.topedge35
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.topedge36:
+    interface: servosandstack.portsplit.topedge36
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.topedge37:
+    interface: servosandstack.portsplit.topedge37
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.topedge38:
+    interface: servosandstack.portsplit.topedge38
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.topedge39:
+    interface: servosandstack.portsplit.topedge39
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.topedge4:
+    interface: servosandstack.portsplit.topedge4
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.topedge40:
+    interface: servosandstack.portsplit.topedge40
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.topedge41:
+    interface: servosandstack.portsplit.topedge41
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.topedge42:
+    interface: servosandstack.portsplit.topedge42
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.topedge43:
+    interface: servosandstack.portsplit.topedge43
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.topedge44:
+    interface: servosandstack.portsplit.topedge44
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.topedge45:
+    interface: servosandstack.portsplit.topedge45
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.topedge46:
+    interface: servosandstack.portsplit.topedge46
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.topedge47:
+    interface: servosandstack.portsplit.topedge47
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.topedge48:
+    interface: servosandstack.portsplit.topedge48
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.topedge49:
+    interface: servosandstack.portsplit.topedge49
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.topedge5:
+    interface: servosandstack.portsplit.topedge5
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.topedge50:
+    interface: servosandstack.portsplit.topedge50
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.topedge51:
+    interface: servosandstack.portsplit.topedge51
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.topedge52:
+    interface: servosandstack.portsplit.topedge52
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.topedge53:
+    interface: servosandstack.portsplit.topedge53
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.topedge54:
+    interface: servosandstack.portsplit.topedge54
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.topedge55:
+    interface: servosandstack.portsplit.topedge55
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.topedge56:
+    interface: servosandstack.portsplit.topedge56
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.topedge57:
+    interface: servosandstack.portsplit.topedge57
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.topedge58:
+    interface: servosandstack.portsplit.topedge58
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.topedge59:
+    interface: servosandstack.portsplit.topedge59
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.topedge6:
+    interface: servosandstack.portsplit.topedge6
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.topedge60:
+    interface: servosandstack.portsplit.topedge60
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.topedge61:
+    interface: servosandstack.portsplit.topedge61
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.topedge62:
+    interface: servosandstack.portsplit.topedge62
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.topedge63:
+    interface: servosandstack.portsplit.topedge63
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.topedge64:
+    interface: servosandstack.portsplit.topedge64
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.topedge65:
+    interface: servosandstack.portsplit.topedge65
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.topedge66:
+    interface: servosandstack.portsplit.topedge66
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.topedge67:
+    interface: servosandstack.portsplit.topedge67
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.topedge68:
+    interface: servosandstack.portsplit.topedge68
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.topedge69:
+    interface: servosandstack.portsplit.topedge69
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.topedge7:
+    interface: servosandstack.portsplit.topedge7
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.topedge70:
+    interface: servosandstack.portsplit.topedge70
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.topedge71:
+    interface: servosandstack.portsplit.topedge71
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.topedge72:
+    interface: servosandstack.portsplit.topedge72
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.topedge73:
+    interface: servosandstack.portsplit.topedge73
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.topedge74:
+    interface: servosandstack.portsplit.topedge74
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.topedge75:
+    interface: servosandstack.portsplit.topedge75
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.topedge76:
+    interface: servosandstack.portsplit.topedge76
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.topedge77:
+    interface: servosandstack.portsplit.topedge77
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.topedge78:
+    interface: servosandstack.portsplit.topedge78
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.topedge79:
+    interface: servosandstack.portsplit.topedge79
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.topedge8:
+    interface: servosandstack.portsplit.topedge8
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.topedge80:
+    interface: servosandstack.portsplit.topedge80
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.topedge81:
+    interface: servosandstack.portsplit.topedge81
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.topedge82:
+    interface: servosandstack.portsplit.topedge82
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.topedge83:
+    interface: servosandstack.portsplit.topedge83
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.topedge84:
+    interface: servosandstack.portsplit.topedge84
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.topedge85:
+    interface: servosandstack.portsplit.topedge85
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.topedge86:
+    interface: servosandstack.portsplit.topedge86
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.topedge87:
+    interface: servosandstack.portsplit.topedge87
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.topedge88:
+    interface: servosandstack.portsplit.topedge88
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.topedge89:
+    interface: servosandstack.portsplit.topedge89
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.topedge9:
+    interface: servosandstack.portsplit.topedge9
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.topedge90:
+    interface: servosandstack.portsplit.topedge90
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.topedge91:
+    interface: servosandstack.portsplit.topedge91
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.topedge92:
+    interface: servosandstack.portsplit.topedge92
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.topedge93:
+    interface: servosandstack.portsplit.topedge93
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.topedge94:
+    interface: servosandstack.portsplit.topedge94
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.topedge95:
+    interface: servosandstack.portsplit.topedge95
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.topedge96:
+    interface: servosandstack.portsplit.topedge96
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.topedge97:
+    interface: servosandstack.portsplit.topedge97
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.topedge98:
+    interface: servosandstack.portsplit.topedge98
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.topedge99:
+    interface: servosandstack.portsplit.topedge99
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.rmountandservosplit:
+    interface: servosandstack.rmountandservosplit
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.botedge0:
+    interface: servosandstack.starsplit.botedge0
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.botedge1:
+    interface: servosandstack.starsplit.botedge1
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.botedge10:
+    interface: servosandstack.starsplit.botedge10
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.botedge11:
+    interface: servosandstack.starsplit.botedge11
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.botedge12:
+    interface: servosandstack.starsplit.botedge12
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.botedge13:
+    interface: servosandstack.starsplit.botedge13
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.botedge14:
+    interface: servosandstack.starsplit.botedge14
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.botedge15:
+    interface: servosandstack.starsplit.botedge15
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.botedge16:
+    interface: servosandstack.starsplit.botedge16
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.botedge17:
+    interface: servosandstack.starsplit.botedge17
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.botedge18:
+    interface: servosandstack.starsplit.botedge18
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.botedge19:
+    interface: servosandstack.starsplit.botedge19
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.botedge2:
+    interface: servosandstack.starsplit.botedge2
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.botedge20:
+    interface: servosandstack.starsplit.botedge20
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.botedge21:
+    interface: servosandstack.starsplit.botedge21
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.botedge22:
+    interface: servosandstack.starsplit.botedge22
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.botedge23:
+    interface: servosandstack.starsplit.botedge23
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.botedge24:
+    interface: servosandstack.starsplit.botedge24
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.botedge25:
+    interface: servosandstack.starsplit.botedge25
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.botedge26:
+    interface: servosandstack.starsplit.botedge26
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.botedge27:
+    interface: servosandstack.starsplit.botedge27
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.botedge28:
+    interface: servosandstack.starsplit.botedge28
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.botedge29:
+    interface: servosandstack.starsplit.botedge29
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.botedge3:
+    interface: servosandstack.starsplit.botedge3
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.botedge30:
+    interface: servosandstack.starsplit.botedge30
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.botedge31:
+    interface: servosandstack.starsplit.botedge31
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.botedge32:
+    interface: servosandstack.starsplit.botedge32
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.botedge33:
+    interface: servosandstack.starsplit.botedge33
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.botedge34:
+    interface: servosandstack.starsplit.botedge34
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.botedge35:
+    interface: servosandstack.starsplit.botedge35
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.botedge36:
+    interface: servosandstack.starsplit.botedge36
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.botedge37:
+    interface: servosandstack.starsplit.botedge37
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.botedge38:
+    interface: servosandstack.starsplit.botedge38
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.botedge39:
+    interface: servosandstack.starsplit.botedge39
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.botedge4:
+    interface: servosandstack.starsplit.botedge4
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.botedge40:
+    interface: servosandstack.starsplit.botedge40
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.botedge41:
+    interface: servosandstack.starsplit.botedge41
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.botedge42:
+    interface: servosandstack.starsplit.botedge42
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.botedge43:
+    interface: servosandstack.starsplit.botedge43
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.botedge44:
+    interface: servosandstack.starsplit.botedge44
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.botedge45:
+    interface: servosandstack.starsplit.botedge45
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.botedge46:
+    interface: servosandstack.starsplit.botedge46
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.botedge47:
+    interface: servosandstack.starsplit.botedge47
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.botedge48:
+    interface: servosandstack.starsplit.botedge48
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.botedge49:
+    interface: servosandstack.starsplit.botedge49
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.botedge5:
+    interface: servosandstack.starsplit.botedge5
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.botedge50:
+    interface: servosandstack.starsplit.botedge50
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.botedge51:
+    interface: servosandstack.starsplit.botedge51
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.botedge52:
+    interface: servosandstack.starsplit.botedge52
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.botedge53:
+    interface: servosandstack.starsplit.botedge53
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.botedge54:
+    interface: servosandstack.starsplit.botedge54
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.botedge55:
+    interface: servosandstack.starsplit.botedge55
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.botedge56:
+    interface: servosandstack.starsplit.botedge56
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.botedge57:
+    interface: servosandstack.starsplit.botedge57
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.botedge58:
+    interface: servosandstack.starsplit.botedge58
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.botedge59:
+    interface: servosandstack.starsplit.botedge59
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.botedge6:
+    interface: servosandstack.starsplit.botedge6
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.botedge60:
+    interface: servosandstack.starsplit.botedge60
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.botedge61:
+    interface: servosandstack.starsplit.botedge61
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.botedge62:
+    interface: servosandstack.starsplit.botedge62
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.botedge63:
+    interface: servosandstack.starsplit.botedge63
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.botedge64:
+    interface: servosandstack.starsplit.botedge64
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.botedge65:
+    interface: servosandstack.starsplit.botedge65
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.botedge66:
+    interface: servosandstack.starsplit.botedge66
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.botedge67:
+    interface: servosandstack.starsplit.botedge67
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.botedge68:
+    interface: servosandstack.starsplit.botedge68
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.botedge69:
+    interface: servosandstack.starsplit.botedge69
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.botedge7:
+    interface: servosandstack.starsplit.botedge7
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.botedge70:
+    interface: servosandstack.starsplit.botedge70
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.botedge71:
+    interface: servosandstack.starsplit.botedge71
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.botedge72:
+    interface: servosandstack.starsplit.botedge72
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.botedge73:
+    interface: servosandstack.starsplit.botedge73
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.botedge74:
+    interface: servosandstack.starsplit.botedge74
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.botedge75:
+    interface: servosandstack.starsplit.botedge75
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.botedge76:
+    interface: servosandstack.starsplit.botedge76
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.botedge77:
+    interface: servosandstack.starsplit.botedge77
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.botedge78:
+    interface: servosandstack.starsplit.botedge78
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.botedge79:
+    interface: servosandstack.starsplit.botedge79
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.botedge8:
+    interface: servosandstack.starsplit.botedge8
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.botedge80:
+    interface: servosandstack.starsplit.botedge80
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.botedge81:
+    interface: servosandstack.starsplit.botedge81
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.botedge82:
+    interface: servosandstack.starsplit.botedge82
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.botedge83:
+    interface: servosandstack.starsplit.botedge83
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.botedge84:
+    interface: servosandstack.starsplit.botedge84
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.botedge85:
+    interface: servosandstack.starsplit.botedge85
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.botedge86:
+    interface: servosandstack.starsplit.botedge86
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.botedge87:
+    interface: servosandstack.starsplit.botedge87
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.botedge88:
+    interface: servosandstack.starsplit.botedge88
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.botedge89:
+    interface: servosandstack.starsplit.botedge89
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.botedge9:
+    interface: servosandstack.starsplit.botedge9
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.botedge90:
+    interface: servosandstack.starsplit.botedge90
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.botedge91:
+    interface: servosandstack.starsplit.botedge91
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.botedge92:
+    interface: servosandstack.starsplit.botedge92
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.botedge93:
+    interface: servosandstack.starsplit.botedge93
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.botedge94:
+    interface: servosandstack.starsplit.botedge94
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.botedge95:
+    interface: servosandstack.starsplit.botedge95
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.botedge96:
+    interface: servosandstack.starsplit.botedge96
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.botedge97:
+    interface: servosandstack.starsplit.botedge97
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.botedge98:
+    interface: servosandstack.starsplit.botedge98
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.botedge99:
+    interface: servosandstack.starsplit.botedge99
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.topedge0:
+    interface: servosandstack.starsplit.topedge0
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.topedge1:
+    interface: servosandstack.starsplit.topedge1
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.topedge10:
+    interface: servosandstack.starsplit.topedge10
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.topedge11:
+    interface: servosandstack.starsplit.topedge11
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.topedge12:
+    interface: servosandstack.starsplit.topedge12
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.topedge13:
+    interface: servosandstack.starsplit.topedge13
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.topedge14:
+    interface: servosandstack.starsplit.topedge14
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.topedge15:
+    interface: servosandstack.starsplit.topedge15
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.topedge16:
+    interface: servosandstack.starsplit.topedge16
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.topedge17:
+    interface: servosandstack.starsplit.topedge17
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.topedge18:
+    interface: servosandstack.starsplit.topedge18
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.topedge19:
+    interface: servosandstack.starsplit.topedge19
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.topedge2:
+    interface: servosandstack.starsplit.topedge2
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.topedge20:
+    interface: servosandstack.starsplit.topedge20
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.topedge21:
+    interface: servosandstack.starsplit.topedge21
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.topedge22:
+    interface: servosandstack.starsplit.topedge22
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.topedge23:
+    interface: servosandstack.starsplit.topedge23
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.topedge24:
+    interface: servosandstack.starsplit.topedge24
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.topedge25:
+    interface: servosandstack.starsplit.topedge25
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.topedge26:
+    interface: servosandstack.starsplit.topedge26
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.topedge27:
+    interface: servosandstack.starsplit.topedge27
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.topedge28:
+    interface: servosandstack.starsplit.topedge28
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.topedge29:
+    interface: servosandstack.starsplit.topedge29
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.topedge3:
+    interface: servosandstack.starsplit.topedge3
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.topedge30:
+    interface: servosandstack.starsplit.topedge30
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.topedge31:
+    interface: servosandstack.starsplit.topedge31
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.topedge32:
+    interface: servosandstack.starsplit.topedge32
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.topedge33:
+    interface: servosandstack.starsplit.topedge33
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.topedge34:
+    interface: servosandstack.starsplit.topedge34
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.topedge35:
+    interface: servosandstack.starsplit.topedge35
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.topedge36:
+    interface: servosandstack.starsplit.topedge36
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.topedge37:
+    interface: servosandstack.starsplit.topedge37
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.topedge38:
+    interface: servosandstack.starsplit.topedge38
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.topedge39:
+    interface: servosandstack.starsplit.topedge39
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.topedge4:
+    interface: servosandstack.starsplit.topedge4
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.topedge40:
+    interface: servosandstack.starsplit.topedge40
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.topedge41:
+    interface: servosandstack.starsplit.topedge41
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.topedge42:
+    interface: servosandstack.starsplit.topedge42
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.topedge43:
+    interface: servosandstack.starsplit.topedge43
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.topedge44:
+    interface: servosandstack.starsplit.topedge44
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.topedge45:
+    interface: servosandstack.starsplit.topedge45
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.topedge46:
+    interface: servosandstack.starsplit.topedge46
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.topedge47:
+    interface: servosandstack.starsplit.topedge47
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.topedge48:
+    interface: servosandstack.starsplit.topedge48
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.topedge49:
+    interface: servosandstack.starsplit.topedge49
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.topedge5:
+    interface: servosandstack.starsplit.topedge5
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.topedge50:
+    interface: servosandstack.starsplit.topedge50
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.topedge51:
+    interface: servosandstack.starsplit.topedge51
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.topedge52:
+    interface: servosandstack.starsplit.topedge52
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.topedge53:
+    interface: servosandstack.starsplit.topedge53
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.topedge54:
+    interface: servosandstack.starsplit.topedge54
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.topedge55:
+    interface: servosandstack.starsplit.topedge55
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.topedge56:
+    interface: servosandstack.starsplit.topedge56
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.topedge57:
+    interface: servosandstack.starsplit.topedge57
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.topedge58:
+    interface: servosandstack.starsplit.topedge58
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.topedge59:
+    interface: servosandstack.starsplit.topedge59
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.topedge6:
+    interface: servosandstack.starsplit.topedge6
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.topedge60:
+    interface: servosandstack.starsplit.topedge60
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.topedge61:
+    interface: servosandstack.starsplit.topedge61
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.topedge62:
+    interface: servosandstack.starsplit.topedge62
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.topedge63:
+    interface: servosandstack.starsplit.topedge63
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.topedge64:
+    interface: servosandstack.starsplit.topedge64
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.topedge65:
+    interface: servosandstack.starsplit.topedge65
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.topedge66:
+    interface: servosandstack.starsplit.topedge66
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.topedge67:
+    interface: servosandstack.starsplit.topedge67
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.topedge68:
+    interface: servosandstack.starsplit.topedge68
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.topedge69:
+    interface: servosandstack.starsplit.topedge69
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.topedge7:
+    interface: servosandstack.starsplit.topedge7
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.topedge70:
+    interface: servosandstack.starsplit.topedge70
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.topedge71:
+    interface: servosandstack.starsplit.topedge71
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.topedge72:
+    interface: servosandstack.starsplit.topedge72
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.topedge73:
+    interface: servosandstack.starsplit.topedge73
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.topedge74:
+    interface: servosandstack.starsplit.topedge74
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.topedge75:
+    interface: servosandstack.starsplit.topedge75
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.topedge76:
+    interface: servosandstack.starsplit.topedge76
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.topedge77:
+    interface: servosandstack.starsplit.topedge77
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.topedge78:
+    interface: servosandstack.starsplit.topedge78
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.topedge79:
+    interface: servosandstack.starsplit.topedge79
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.topedge8:
+    interface: servosandstack.starsplit.topedge8
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.topedge80:
+    interface: servosandstack.starsplit.topedge80
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.topedge81:
+    interface: servosandstack.starsplit.topedge81
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.topedge82:
+    interface: servosandstack.starsplit.topedge82
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.topedge83:
+    interface: servosandstack.starsplit.topedge83
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.topedge84:
+    interface: servosandstack.starsplit.topedge84
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.topedge85:
+    interface: servosandstack.starsplit.topedge85
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.topedge86:
+    interface: servosandstack.starsplit.topedge86
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.topedge87:
+    interface: servosandstack.starsplit.topedge87
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.topedge88:
+    interface: servosandstack.starsplit.topedge88
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.topedge89:
+    interface: servosandstack.starsplit.topedge89
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.topedge9:
+    interface: servosandstack.starsplit.topedge9
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.topedge90:
+    interface: servosandstack.starsplit.topedge90
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.topedge91:
+    interface: servosandstack.starsplit.topedge91
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.topedge92:
+    interface: servosandstack.starsplit.topedge92
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.topedge93:
+    interface: servosandstack.starsplit.topedge93
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.topedge94:
+    interface: servosandstack.starsplit.topedge94
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.topedge95:
+    interface: servosandstack.starsplit.topedge95
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.topedge96:
+    interface: servosandstack.starsplit.topedge96
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.topedge97:
+    interface: servosandstack.starsplit.topedge97
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.topedge98:
+    interface: servosandstack.starsplit.topedge98
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.topedge99:
+    interface: servosandstack.starsplit.topedge99
+    subcomponent: servostackbattery
 parameters:
+  boat.bow.point:
+    defaultValue: 50
+    spec:
+      minValue: 0
+      units: mm
+      valueType: (float, int)
   boat.depth:
     defaultValue: 20
     spec:
@@ -19,6 +2473,12 @@ parameters:
       minValue: 0
       units: mm
       valueType: (float, int)
+  boat.stern.point:
+    defaultValue: 50
+    spec:
+      minValue: 0
+      units: mm
+      valueType: (float, int)
   boat.width:
     defaultValue: 50
     spec:
@@ -31,12 +2491,30 @@ parameters:
       minValue: 0
       units: mm
       valueType: (float, int)
+  depth:
+    defaultValue: 70
+    spec:
+      minValue: 0
+      units: mm
+      valueType: (float, int)
+  length:
+    defaultValue: 228
+    spec:
+      minValue: 0
+      units: mm
+      valueType: (float, int)
   stern.point:
     defaultValue: 50
     spec:
       minValue: 0
       units: mm
       valueType: (float, int)
+  width:
+    defaultValue: 90
+    spec:
+      minValue: 0
+      units: mm
+      valueType: (float, int)
 source: ../builders/boat/BoatWithServoStackBatteryBuilder.py
 subcomponents:
   boat:
@@ -44,15 +2522,15 @@ subcomponents:
     kwargs: {}
     parameters:
       boat.depth:
-        parameter: boat.depth
+        parameter: depth
       boat.length:
-        parameter: boat.length
+        parameter: length
       boat.width:
-        parameter: boat.width
+        parameter: width
       bow.point:
-        parameter: bow.point
+        parameter: boat.bow.point
       stern.point:
-        parameter: stern.point
+        parameter: boat.stern.point
   servostackbattery:
     classname: ServoStackBatteryMount
     kwargs: {}
diff --git a/rocolib/library/HouseboatWithServoMountAndStack.yaml b/rocolib/library/HouseboatWithServoMountAndStack.yaml
index 6e47990ce1906ec6a241b8f19e16e5a50100658c..75b697c54c265e135d74a63b424caaeb0a66f538 100644
--- a/rocolib/library/HouseboatWithServoMountAndStack.yaml
+++ b/rocolib/library/HouseboatWithServoMountAndStack.yaml
@@ -1,1459 +1,2496 @@
-connections: {}
+connections:
+  connection0:
+  - - boat
+    - portedge
+  - - servostackbattery
+    - lTopSplit
+  - {}
+  connection1:
+  - - boat
+    - staredge
+  - - servostackbattery
+    - rTopSplit
+  - {}
 interfaces:
-  servosandstack.doubleServoMount.lServoInterface:
-    interface: doubleServoMount.lServoInterface
-    subcomponent: servosandstack
-  servosandstack.doubleServoMount.lServoMount.leftInterface:
-    interface: doubleServoMount.lServoMount.leftInterface
-    subcomponent: servosandstack
-  servosandstack.doubleServoMount.lServoMount.rightInterface:
-    interface: doubleServoMount.lServoMount.rightInterface
-    subcomponent: servosandstack
-  servosandstack.doubleServoMount.rServoInterface:
-    interface: doubleServoMount.rServoInterface
-    subcomponent: servosandstack
-  servosandstack.doubleServoMount.rServoMount.leftInterface:
-    interface: doubleServoMount.rServoMount.leftInterface
-    subcomponent: servosandstack
-  servosandstack.doubleServoMount.rServoMount.rightInterface:
-    interface: doubleServoMount.rServoMount.rightInterface
-    subcomponent: servosandstack
-  servosandstack.portsplit.botedge0:
-    interface: portsplit.botedge0
-    subcomponent: servosandstack
-  servosandstack.portsplit.botedge1:
-    interface: portsplit.botedge1
-    subcomponent: servosandstack
-  servosandstack.portsplit.botedge10:
-    interface: portsplit.botedge10
-    subcomponent: servosandstack
-  servosandstack.portsplit.botedge11:
-    interface: portsplit.botedge11
-    subcomponent: servosandstack
-  servosandstack.portsplit.botedge12:
-    interface: portsplit.botedge12
-    subcomponent: servosandstack
-  servosandstack.portsplit.botedge13:
-    interface: portsplit.botedge13
-    subcomponent: servosandstack
-  servosandstack.portsplit.botedge14:
-    interface: portsplit.botedge14
-    subcomponent: servosandstack
-  servosandstack.portsplit.botedge15:
-    interface: portsplit.botedge15
-    subcomponent: servosandstack
-  servosandstack.portsplit.botedge16:
-    interface: portsplit.botedge16
-    subcomponent: servosandstack
-  servosandstack.portsplit.botedge17:
-    interface: portsplit.botedge17
-    subcomponent: servosandstack
-  servosandstack.portsplit.botedge18:
-    interface: portsplit.botedge18
-    subcomponent: servosandstack
-  servosandstack.portsplit.botedge19:
-    interface: portsplit.botedge19
-    subcomponent: servosandstack
-  servosandstack.portsplit.botedge2:
-    interface: portsplit.botedge2
-    subcomponent: servosandstack
-  servosandstack.portsplit.botedge20:
-    interface: portsplit.botedge20
-    subcomponent: servosandstack
-  servosandstack.portsplit.botedge21:
-    interface: portsplit.botedge21
-    subcomponent: servosandstack
-  servosandstack.portsplit.botedge22:
-    interface: portsplit.botedge22
-    subcomponent: servosandstack
-  servosandstack.portsplit.botedge23:
-    interface: portsplit.botedge23
-    subcomponent: servosandstack
-  servosandstack.portsplit.botedge24:
-    interface: portsplit.botedge24
-    subcomponent: servosandstack
-  servosandstack.portsplit.botedge25:
-    interface: portsplit.botedge25
-    subcomponent: servosandstack
-  servosandstack.portsplit.botedge26:
-    interface: portsplit.botedge26
-    subcomponent: servosandstack
-  servosandstack.portsplit.botedge27:
-    interface: portsplit.botedge27
-    subcomponent: servosandstack
-  servosandstack.portsplit.botedge28:
-    interface: portsplit.botedge28
-    subcomponent: servosandstack
-  servosandstack.portsplit.botedge29:
-    interface: portsplit.botedge29
-    subcomponent: servosandstack
-  servosandstack.portsplit.botedge3:
-    interface: portsplit.botedge3
-    subcomponent: servosandstack
-  servosandstack.portsplit.botedge30:
-    interface: portsplit.botedge30
-    subcomponent: servosandstack
-  servosandstack.portsplit.botedge31:
-    interface: portsplit.botedge31
-    subcomponent: servosandstack
-  servosandstack.portsplit.botedge32:
-    interface: portsplit.botedge32
-    subcomponent: servosandstack
-  servosandstack.portsplit.botedge33:
-    interface: portsplit.botedge33
-    subcomponent: servosandstack
-  servosandstack.portsplit.botedge34:
-    interface: portsplit.botedge34
-    subcomponent: servosandstack
-  servosandstack.portsplit.botedge35:
-    interface: portsplit.botedge35
-    subcomponent: servosandstack
-  servosandstack.portsplit.botedge36:
-    interface: portsplit.botedge36
-    subcomponent: servosandstack
-  servosandstack.portsplit.botedge37:
-    interface: portsplit.botedge37
-    subcomponent: servosandstack
-  servosandstack.portsplit.botedge38:
-    interface: portsplit.botedge38
-    subcomponent: servosandstack
-  servosandstack.portsplit.botedge39:
-    interface: portsplit.botedge39
-    subcomponent: servosandstack
-  servosandstack.portsplit.botedge4:
-    interface: portsplit.botedge4
-    subcomponent: servosandstack
-  servosandstack.portsplit.botedge40:
-    interface: portsplit.botedge40
-    subcomponent: servosandstack
-  servosandstack.portsplit.botedge41:
-    interface: portsplit.botedge41
-    subcomponent: servosandstack
-  servosandstack.portsplit.botedge42:
-    interface: portsplit.botedge42
-    subcomponent: servosandstack
-  servosandstack.portsplit.botedge43:
-    interface: portsplit.botedge43
-    subcomponent: servosandstack
-  servosandstack.portsplit.botedge44:
-    interface: portsplit.botedge44
-    subcomponent: servosandstack
-  servosandstack.portsplit.botedge45:
-    interface: portsplit.botedge45
-    subcomponent: servosandstack
-  servosandstack.portsplit.botedge46:
-    interface: portsplit.botedge46
-    subcomponent: servosandstack
-  servosandstack.portsplit.botedge47:
-    interface: portsplit.botedge47
-    subcomponent: servosandstack
-  servosandstack.portsplit.botedge48:
-    interface: portsplit.botedge48
-    subcomponent: servosandstack
-  servosandstack.portsplit.botedge49:
-    interface: portsplit.botedge49
-    subcomponent: servosandstack
-  servosandstack.portsplit.botedge5:
-    interface: portsplit.botedge5
-    subcomponent: servosandstack
-  servosandstack.portsplit.botedge50:
-    interface: portsplit.botedge50
-    subcomponent: servosandstack
-  servosandstack.portsplit.botedge51:
-    interface: portsplit.botedge51
-    subcomponent: servosandstack
-  servosandstack.portsplit.botedge52:
-    interface: portsplit.botedge52
-    subcomponent: servosandstack
-  servosandstack.portsplit.botedge53:
-    interface: portsplit.botedge53
-    subcomponent: servosandstack
-  servosandstack.portsplit.botedge54:
-    interface: portsplit.botedge54
-    subcomponent: servosandstack
-  servosandstack.portsplit.botedge55:
-    interface: portsplit.botedge55
-    subcomponent: servosandstack
-  servosandstack.portsplit.botedge56:
-    interface: portsplit.botedge56
-    subcomponent: servosandstack
-  servosandstack.portsplit.botedge57:
-    interface: portsplit.botedge57
-    subcomponent: servosandstack
-  servosandstack.portsplit.botedge58:
-    interface: portsplit.botedge58
-    subcomponent: servosandstack
-  servosandstack.portsplit.botedge59:
-    interface: portsplit.botedge59
-    subcomponent: servosandstack
-  servosandstack.portsplit.botedge6:
-    interface: portsplit.botedge6
-    subcomponent: servosandstack
-  servosandstack.portsplit.botedge60:
-    interface: portsplit.botedge60
-    subcomponent: servosandstack
-  servosandstack.portsplit.botedge61:
-    interface: portsplit.botedge61
-    subcomponent: servosandstack
-  servosandstack.portsplit.botedge62:
-    interface: portsplit.botedge62
-    subcomponent: servosandstack
-  servosandstack.portsplit.botedge63:
-    interface: portsplit.botedge63
-    subcomponent: servosandstack
-  servosandstack.portsplit.botedge64:
-    interface: portsplit.botedge64
-    subcomponent: servosandstack
-  servosandstack.portsplit.botedge65:
-    interface: portsplit.botedge65
-    subcomponent: servosandstack
-  servosandstack.portsplit.botedge66:
-    interface: portsplit.botedge66
-    subcomponent: servosandstack
-  servosandstack.portsplit.botedge67:
-    interface: portsplit.botedge67
-    subcomponent: servosandstack
-  servosandstack.portsplit.botedge68:
-    interface: portsplit.botedge68
-    subcomponent: servosandstack
-  servosandstack.portsplit.botedge69:
-    interface: portsplit.botedge69
-    subcomponent: servosandstack
-  servosandstack.portsplit.botedge7:
-    interface: portsplit.botedge7
-    subcomponent: servosandstack
-  servosandstack.portsplit.botedge70:
-    interface: portsplit.botedge70
-    subcomponent: servosandstack
-  servosandstack.portsplit.botedge71:
-    interface: portsplit.botedge71
-    subcomponent: servosandstack
-  servosandstack.portsplit.botedge72:
-    interface: portsplit.botedge72
-    subcomponent: servosandstack
-  servosandstack.portsplit.botedge73:
-    interface: portsplit.botedge73
-    subcomponent: servosandstack
-  servosandstack.portsplit.botedge74:
-    interface: portsplit.botedge74
-    subcomponent: servosandstack
-  servosandstack.portsplit.botedge75:
-    interface: portsplit.botedge75
-    subcomponent: servosandstack
-  servosandstack.portsplit.botedge76:
-    interface: portsplit.botedge76
-    subcomponent: servosandstack
-  servosandstack.portsplit.botedge77:
-    interface: portsplit.botedge77
-    subcomponent: servosandstack
-  servosandstack.portsplit.botedge78:
-    interface: portsplit.botedge78
-    subcomponent: servosandstack
-  servosandstack.portsplit.botedge79:
-    interface: portsplit.botedge79
-    subcomponent: servosandstack
-  servosandstack.portsplit.botedge8:
-    interface: portsplit.botedge8
-    subcomponent: servosandstack
-  servosandstack.portsplit.botedge80:
-    interface: portsplit.botedge80
-    subcomponent: servosandstack
-  servosandstack.portsplit.botedge81:
-    interface: portsplit.botedge81
-    subcomponent: servosandstack
-  servosandstack.portsplit.botedge82:
-    interface: portsplit.botedge82
-    subcomponent: servosandstack
-  servosandstack.portsplit.botedge83:
-    interface: portsplit.botedge83
-    subcomponent: servosandstack
-  servosandstack.portsplit.botedge84:
-    interface: portsplit.botedge84
-    subcomponent: servosandstack
-  servosandstack.portsplit.botedge85:
-    interface: portsplit.botedge85
-    subcomponent: servosandstack
-  servosandstack.portsplit.botedge86:
-    interface: portsplit.botedge86
-    subcomponent: servosandstack
-  servosandstack.portsplit.botedge87:
-    interface: portsplit.botedge87
-    subcomponent: servosandstack
-  servosandstack.portsplit.botedge88:
-    interface: portsplit.botedge88
-    subcomponent: servosandstack
-  servosandstack.portsplit.botedge89:
-    interface: portsplit.botedge89
-    subcomponent: servosandstack
-  servosandstack.portsplit.botedge9:
-    interface: portsplit.botedge9
-    subcomponent: servosandstack
-  servosandstack.portsplit.botedge90:
-    interface: portsplit.botedge90
-    subcomponent: servosandstack
-  servosandstack.portsplit.botedge91:
-    interface: portsplit.botedge91
-    subcomponent: servosandstack
-  servosandstack.portsplit.botedge92:
-    interface: portsplit.botedge92
-    subcomponent: servosandstack
-  servosandstack.portsplit.botedge93:
-    interface: portsplit.botedge93
-    subcomponent: servosandstack
-  servosandstack.portsplit.botedge94:
-    interface: portsplit.botedge94
-    subcomponent: servosandstack
-  servosandstack.portsplit.botedge95:
-    interface: portsplit.botedge95
-    subcomponent: servosandstack
-  servosandstack.portsplit.botedge96:
-    interface: portsplit.botedge96
-    subcomponent: servosandstack
-  servosandstack.portsplit.botedge97:
-    interface: portsplit.botedge97
-    subcomponent: servosandstack
-  servosandstack.portsplit.botedge98:
-    interface: portsplit.botedge98
-    subcomponent: servosandstack
-  servosandstack.portsplit.botedge99:
-    interface: portsplit.botedge99
-    subcomponent: servosandstack
-  servosandstack.portsplit.topedge0:
-    interface: portsplit.topedge0
-    subcomponent: servosandstack
-  servosandstack.portsplit.topedge1:
-    interface: portsplit.topedge1
-    subcomponent: servosandstack
-  servosandstack.portsplit.topedge10:
-    interface: portsplit.topedge10
-    subcomponent: servosandstack
-  servosandstack.portsplit.topedge11:
-    interface: portsplit.topedge11
-    subcomponent: servosandstack
-  servosandstack.portsplit.topedge12:
-    interface: portsplit.topedge12
-    subcomponent: servosandstack
-  servosandstack.portsplit.topedge13:
-    interface: portsplit.topedge13
-    subcomponent: servosandstack
-  servosandstack.portsplit.topedge14:
-    interface: portsplit.topedge14
-    subcomponent: servosandstack
-  servosandstack.portsplit.topedge15:
-    interface: portsplit.topedge15
-    subcomponent: servosandstack
-  servosandstack.portsplit.topedge16:
-    interface: portsplit.topedge16
-    subcomponent: servosandstack
-  servosandstack.portsplit.topedge17:
-    interface: portsplit.topedge17
-    subcomponent: servosandstack
-  servosandstack.portsplit.topedge18:
-    interface: portsplit.topedge18
-    subcomponent: servosandstack
-  servosandstack.portsplit.topedge19:
-    interface: portsplit.topedge19
-    subcomponent: servosandstack
-  servosandstack.portsplit.topedge2:
-    interface: portsplit.topedge2
-    subcomponent: servosandstack
-  servosandstack.portsplit.topedge20:
-    interface: portsplit.topedge20
-    subcomponent: servosandstack
-  servosandstack.portsplit.topedge21:
-    interface: portsplit.topedge21
-    subcomponent: servosandstack
-  servosandstack.portsplit.topedge22:
-    interface: portsplit.topedge22
-    subcomponent: servosandstack
-  servosandstack.portsplit.topedge23:
-    interface: portsplit.topedge23
-    subcomponent: servosandstack
-  servosandstack.portsplit.topedge24:
-    interface: portsplit.topedge24
-    subcomponent: servosandstack
-  servosandstack.portsplit.topedge25:
-    interface: portsplit.topedge25
-    subcomponent: servosandstack
-  servosandstack.portsplit.topedge26:
-    interface: portsplit.topedge26
-    subcomponent: servosandstack
-  servosandstack.portsplit.topedge27:
-    interface: portsplit.topedge27
-    subcomponent: servosandstack
-  servosandstack.portsplit.topedge28:
-    interface: portsplit.topedge28
-    subcomponent: servosandstack
-  servosandstack.portsplit.topedge29:
-    interface: portsplit.topedge29
-    subcomponent: servosandstack
-  servosandstack.portsplit.topedge3:
-    interface: portsplit.topedge3
-    subcomponent: servosandstack
-  servosandstack.portsplit.topedge30:
-    interface: portsplit.topedge30
-    subcomponent: servosandstack
-  servosandstack.portsplit.topedge31:
-    interface: portsplit.topedge31
-    subcomponent: servosandstack
-  servosandstack.portsplit.topedge32:
-    interface: portsplit.topedge32
-    subcomponent: servosandstack
-  servosandstack.portsplit.topedge33:
-    interface: portsplit.topedge33
-    subcomponent: servosandstack
-  servosandstack.portsplit.topedge34:
-    interface: portsplit.topedge34
-    subcomponent: servosandstack
-  servosandstack.portsplit.topedge35:
-    interface: portsplit.topedge35
-    subcomponent: servosandstack
-  servosandstack.portsplit.topedge36:
-    interface: portsplit.topedge36
-    subcomponent: servosandstack
-  servosandstack.portsplit.topedge37:
-    interface: portsplit.topedge37
-    subcomponent: servosandstack
-  servosandstack.portsplit.topedge38:
-    interface: portsplit.topedge38
-    subcomponent: servosandstack
-  servosandstack.portsplit.topedge39:
-    interface: portsplit.topedge39
-    subcomponent: servosandstack
-  servosandstack.portsplit.topedge4:
-    interface: portsplit.topedge4
-    subcomponent: servosandstack
-  servosandstack.portsplit.topedge40:
-    interface: portsplit.topedge40
-    subcomponent: servosandstack
-  servosandstack.portsplit.topedge41:
-    interface: portsplit.topedge41
-    subcomponent: servosandstack
-  servosandstack.portsplit.topedge42:
-    interface: portsplit.topedge42
-    subcomponent: servosandstack
-  servosandstack.portsplit.topedge43:
-    interface: portsplit.topedge43
-    subcomponent: servosandstack
-  servosandstack.portsplit.topedge44:
-    interface: portsplit.topedge44
-    subcomponent: servosandstack
-  servosandstack.portsplit.topedge45:
-    interface: portsplit.topedge45
-    subcomponent: servosandstack
-  servosandstack.portsplit.topedge46:
-    interface: portsplit.topedge46
-    subcomponent: servosandstack
-  servosandstack.portsplit.topedge47:
-    interface: portsplit.topedge47
-    subcomponent: servosandstack
-  servosandstack.portsplit.topedge48:
-    interface: portsplit.topedge48
-    subcomponent: servosandstack
-  servosandstack.portsplit.topedge49:
-    interface: portsplit.topedge49
-    subcomponent: servosandstack
-  servosandstack.portsplit.topedge5:
-    interface: portsplit.topedge5
-    subcomponent: servosandstack
-  servosandstack.portsplit.topedge50:
-    interface: portsplit.topedge50
-    subcomponent: servosandstack
-  servosandstack.portsplit.topedge51:
-    interface: portsplit.topedge51
-    subcomponent: servosandstack
-  servosandstack.portsplit.topedge52:
-    interface: portsplit.topedge52
-    subcomponent: servosandstack
-  servosandstack.portsplit.topedge53:
-    interface: portsplit.topedge53
-    subcomponent: servosandstack
-  servosandstack.portsplit.topedge54:
-    interface: portsplit.topedge54
-    subcomponent: servosandstack
-  servosandstack.portsplit.topedge55:
-    interface: portsplit.topedge55
-    subcomponent: servosandstack
-  servosandstack.portsplit.topedge56:
-    interface: portsplit.topedge56
-    subcomponent: servosandstack
-  servosandstack.portsplit.topedge57:
-    interface: portsplit.topedge57
-    subcomponent: servosandstack
-  servosandstack.portsplit.topedge58:
-    interface: portsplit.topedge58
-    subcomponent: servosandstack
-  servosandstack.portsplit.topedge59:
-    interface: portsplit.topedge59
-    subcomponent: servosandstack
-  servosandstack.portsplit.topedge6:
-    interface: portsplit.topedge6
-    subcomponent: servosandstack
-  servosandstack.portsplit.topedge60:
-    interface: portsplit.topedge60
-    subcomponent: servosandstack
-  servosandstack.portsplit.topedge61:
-    interface: portsplit.topedge61
-    subcomponent: servosandstack
-  servosandstack.portsplit.topedge62:
-    interface: portsplit.topedge62
-    subcomponent: servosandstack
-  servosandstack.portsplit.topedge63:
-    interface: portsplit.topedge63
-    subcomponent: servosandstack
-  servosandstack.portsplit.topedge64:
-    interface: portsplit.topedge64
-    subcomponent: servosandstack
-  servosandstack.portsplit.topedge65:
-    interface: portsplit.topedge65
-    subcomponent: servosandstack
-  servosandstack.portsplit.topedge66:
-    interface: portsplit.topedge66
-    subcomponent: servosandstack
-  servosandstack.portsplit.topedge67:
-    interface: portsplit.topedge67
-    subcomponent: servosandstack
-  servosandstack.portsplit.topedge68:
-    interface: portsplit.topedge68
-    subcomponent: servosandstack
-  servosandstack.portsplit.topedge69:
-    interface: portsplit.topedge69
-    subcomponent: servosandstack
-  servosandstack.portsplit.topedge7:
-    interface: portsplit.topedge7
-    subcomponent: servosandstack
-  servosandstack.portsplit.topedge70:
-    interface: portsplit.topedge70
-    subcomponent: servosandstack
-  servosandstack.portsplit.topedge71:
-    interface: portsplit.topedge71
-    subcomponent: servosandstack
-  servosandstack.portsplit.topedge72:
-    interface: portsplit.topedge72
-    subcomponent: servosandstack
-  servosandstack.portsplit.topedge73:
-    interface: portsplit.topedge73
-    subcomponent: servosandstack
-  servosandstack.portsplit.topedge74:
-    interface: portsplit.topedge74
-    subcomponent: servosandstack
-  servosandstack.portsplit.topedge75:
-    interface: portsplit.topedge75
-    subcomponent: servosandstack
-  servosandstack.portsplit.topedge76:
-    interface: portsplit.topedge76
-    subcomponent: servosandstack
-  servosandstack.portsplit.topedge77:
-    interface: portsplit.topedge77
-    subcomponent: servosandstack
-  servosandstack.portsplit.topedge78:
-    interface: portsplit.topedge78
-    subcomponent: servosandstack
-  servosandstack.portsplit.topedge79:
-    interface: portsplit.topedge79
-    subcomponent: servosandstack
-  servosandstack.portsplit.topedge8:
-    interface: portsplit.topedge8
-    subcomponent: servosandstack
-  servosandstack.portsplit.topedge80:
-    interface: portsplit.topedge80
-    subcomponent: servosandstack
-  servosandstack.portsplit.topedge81:
-    interface: portsplit.topedge81
-    subcomponent: servosandstack
-  servosandstack.portsplit.topedge82:
-    interface: portsplit.topedge82
-    subcomponent: servosandstack
-  servosandstack.portsplit.topedge83:
-    interface: portsplit.topedge83
-    subcomponent: servosandstack
-  servosandstack.portsplit.topedge84:
-    interface: portsplit.topedge84
-    subcomponent: servosandstack
-  servosandstack.portsplit.topedge85:
-    interface: portsplit.topedge85
-    subcomponent: servosandstack
-  servosandstack.portsplit.topedge86:
-    interface: portsplit.topedge86
-    subcomponent: servosandstack
-  servosandstack.portsplit.topedge87:
-    interface: portsplit.topedge87
-    subcomponent: servosandstack
-  servosandstack.portsplit.topedge88:
-    interface: portsplit.topedge88
-    subcomponent: servosandstack
-  servosandstack.portsplit.topedge89:
-    interface: portsplit.topedge89
-    subcomponent: servosandstack
-  servosandstack.portsplit.topedge9:
-    interface: portsplit.topedge9
-    subcomponent: servosandstack
-  servosandstack.portsplit.topedge90:
-    interface: portsplit.topedge90
-    subcomponent: servosandstack
-  servosandstack.portsplit.topedge91:
-    interface: portsplit.topedge91
-    subcomponent: servosandstack
-  servosandstack.portsplit.topedge92:
-    interface: portsplit.topedge92
-    subcomponent: servosandstack
-  servosandstack.portsplit.topedge93:
-    interface: portsplit.topedge93
-    subcomponent: servosandstack
-  servosandstack.portsplit.topedge94:
-    interface: portsplit.topedge94
-    subcomponent: servosandstack
-  servosandstack.portsplit.topedge95:
-    interface: portsplit.topedge95
-    subcomponent: servosandstack
-  servosandstack.portsplit.topedge96:
-    interface: portsplit.topedge96
-    subcomponent: servosandstack
-  servosandstack.portsplit.topedge97:
-    interface: portsplit.topedge97
-    subcomponent: servosandstack
-  servosandstack.portsplit.topedge98:
-    interface: portsplit.topedge98
-    subcomponent: servosandstack
-  servosandstack.portsplit.topedge99:
-    interface: portsplit.topedge99
-    subcomponent: servosandstack
-  servosandstack.starsplit.botedge0:
-    interface: starsplit.botedge0
-    subcomponent: servosandstack
-  servosandstack.starsplit.botedge1:
-    interface: starsplit.botedge1
-    subcomponent: servosandstack
-  servosandstack.starsplit.botedge10:
-    interface: starsplit.botedge10
-    subcomponent: servosandstack
-  servosandstack.starsplit.botedge11:
-    interface: starsplit.botedge11
-    subcomponent: servosandstack
-  servosandstack.starsplit.botedge12:
-    interface: starsplit.botedge12
-    subcomponent: servosandstack
-  servosandstack.starsplit.botedge13:
-    interface: starsplit.botedge13
-    subcomponent: servosandstack
-  servosandstack.starsplit.botedge14:
-    interface: starsplit.botedge14
-    subcomponent: servosandstack
-  servosandstack.starsplit.botedge15:
-    interface: starsplit.botedge15
-    subcomponent: servosandstack
-  servosandstack.starsplit.botedge16:
-    interface: starsplit.botedge16
-    subcomponent: servosandstack
-  servosandstack.starsplit.botedge17:
-    interface: starsplit.botedge17
-    subcomponent: servosandstack
-  servosandstack.starsplit.botedge18:
-    interface: starsplit.botedge18
-    subcomponent: servosandstack
-  servosandstack.starsplit.botedge19:
-    interface: starsplit.botedge19
-    subcomponent: servosandstack
-  servosandstack.starsplit.botedge2:
-    interface: starsplit.botedge2
-    subcomponent: servosandstack
-  servosandstack.starsplit.botedge20:
-    interface: starsplit.botedge20
-    subcomponent: servosandstack
-  servosandstack.starsplit.botedge21:
-    interface: starsplit.botedge21
-    subcomponent: servosandstack
-  servosandstack.starsplit.botedge22:
-    interface: starsplit.botedge22
-    subcomponent: servosandstack
-  servosandstack.starsplit.botedge23:
-    interface: starsplit.botedge23
-    subcomponent: servosandstack
-  servosandstack.starsplit.botedge24:
-    interface: starsplit.botedge24
-    subcomponent: servosandstack
-  servosandstack.starsplit.botedge25:
-    interface: starsplit.botedge25
-    subcomponent: servosandstack
-  servosandstack.starsplit.botedge26:
-    interface: starsplit.botedge26
-    subcomponent: servosandstack
-  servosandstack.starsplit.botedge27:
-    interface: starsplit.botedge27
-    subcomponent: servosandstack
-  servosandstack.starsplit.botedge28:
-    interface: starsplit.botedge28
-    subcomponent: servosandstack
-  servosandstack.starsplit.botedge29:
-    interface: starsplit.botedge29
-    subcomponent: servosandstack
-  servosandstack.starsplit.botedge3:
-    interface: starsplit.botedge3
-    subcomponent: servosandstack
-  servosandstack.starsplit.botedge30:
-    interface: starsplit.botedge30
-    subcomponent: servosandstack
-  servosandstack.starsplit.botedge31:
-    interface: starsplit.botedge31
-    subcomponent: servosandstack
-  servosandstack.starsplit.botedge32:
-    interface: starsplit.botedge32
-    subcomponent: servosandstack
-  servosandstack.starsplit.botedge33:
-    interface: starsplit.botedge33
-    subcomponent: servosandstack
-  servosandstack.starsplit.botedge34:
-    interface: starsplit.botedge34
-    subcomponent: servosandstack
-  servosandstack.starsplit.botedge35:
-    interface: starsplit.botedge35
-    subcomponent: servosandstack
-  servosandstack.starsplit.botedge36:
-    interface: starsplit.botedge36
-    subcomponent: servosandstack
-  servosandstack.starsplit.botedge37:
-    interface: starsplit.botedge37
-    subcomponent: servosandstack
-  servosandstack.starsplit.botedge38:
-    interface: starsplit.botedge38
-    subcomponent: servosandstack
-  servosandstack.starsplit.botedge39:
-    interface: starsplit.botedge39
-    subcomponent: servosandstack
-  servosandstack.starsplit.botedge4:
-    interface: starsplit.botedge4
-    subcomponent: servosandstack
-  servosandstack.starsplit.botedge40:
-    interface: starsplit.botedge40
-    subcomponent: servosandstack
-  servosandstack.starsplit.botedge41:
-    interface: starsplit.botedge41
-    subcomponent: servosandstack
-  servosandstack.starsplit.botedge42:
-    interface: starsplit.botedge42
-    subcomponent: servosandstack
-  servosandstack.starsplit.botedge43:
-    interface: starsplit.botedge43
-    subcomponent: servosandstack
-  servosandstack.starsplit.botedge44:
-    interface: starsplit.botedge44
-    subcomponent: servosandstack
-  servosandstack.starsplit.botedge45:
-    interface: starsplit.botedge45
-    subcomponent: servosandstack
-  servosandstack.starsplit.botedge46:
-    interface: starsplit.botedge46
-    subcomponent: servosandstack
-  servosandstack.starsplit.botedge47:
-    interface: starsplit.botedge47
-    subcomponent: servosandstack
-  servosandstack.starsplit.botedge48:
-    interface: starsplit.botedge48
-    subcomponent: servosandstack
-  servosandstack.starsplit.botedge49:
-    interface: starsplit.botedge49
-    subcomponent: servosandstack
-  servosandstack.starsplit.botedge5:
-    interface: starsplit.botedge5
-    subcomponent: servosandstack
-  servosandstack.starsplit.botedge50:
-    interface: starsplit.botedge50
-    subcomponent: servosandstack
-  servosandstack.starsplit.botedge51:
-    interface: starsplit.botedge51
-    subcomponent: servosandstack
-  servosandstack.starsplit.botedge52:
-    interface: starsplit.botedge52
-    subcomponent: servosandstack
-  servosandstack.starsplit.botedge53:
-    interface: starsplit.botedge53
-    subcomponent: servosandstack
-  servosandstack.starsplit.botedge54:
-    interface: starsplit.botedge54
-    subcomponent: servosandstack
-  servosandstack.starsplit.botedge55:
-    interface: starsplit.botedge55
-    subcomponent: servosandstack
-  servosandstack.starsplit.botedge56:
-    interface: starsplit.botedge56
-    subcomponent: servosandstack
-  servosandstack.starsplit.botedge57:
-    interface: starsplit.botedge57
-    subcomponent: servosandstack
-  servosandstack.starsplit.botedge58:
-    interface: starsplit.botedge58
-    subcomponent: servosandstack
-  servosandstack.starsplit.botedge59:
-    interface: starsplit.botedge59
-    subcomponent: servosandstack
-  servosandstack.starsplit.botedge6:
-    interface: starsplit.botedge6
-    subcomponent: servosandstack
-  servosandstack.starsplit.botedge60:
-    interface: starsplit.botedge60
-    subcomponent: servosandstack
-  servosandstack.starsplit.botedge61:
-    interface: starsplit.botedge61
-    subcomponent: servosandstack
-  servosandstack.starsplit.botedge62:
-    interface: starsplit.botedge62
-    subcomponent: servosandstack
-  servosandstack.starsplit.botedge63:
-    interface: starsplit.botedge63
-    subcomponent: servosandstack
-  servosandstack.starsplit.botedge64:
-    interface: starsplit.botedge64
-    subcomponent: servosandstack
-  servosandstack.starsplit.botedge65:
-    interface: starsplit.botedge65
-    subcomponent: servosandstack
-  servosandstack.starsplit.botedge66:
-    interface: starsplit.botedge66
-    subcomponent: servosandstack
-  servosandstack.starsplit.botedge67:
-    interface: starsplit.botedge67
-    subcomponent: servosandstack
-  servosandstack.starsplit.botedge68:
-    interface: starsplit.botedge68
-    subcomponent: servosandstack
-  servosandstack.starsplit.botedge69:
-    interface: starsplit.botedge69
-    subcomponent: servosandstack
-  servosandstack.starsplit.botedge7:
-    interface: starsplit.botedge7
-    subcomponent: servosandstack
-  servosandstack.starsplit.botedge70:
-    interface: starsplit.botedge70
-    subcomponent: servosandstack
-  servosandstack.starsplit.botedge71:
-    interface: starsplit.botedge71
-    subcomponent: servosandstack
-  servosandstack.starsplit.botedge72:
-    interface: starsplit.botedge72
-    subcomponent: servosandstack
-  servosandstack.starsplit.botedge73:
-    interface: starsplit.botedge73
-    subcomponent: servosandstack
-  servosandstack.starsplit.botedge74:
-    interface: starsplit.botedge74
-    subcomponent: servosandstack
-  servosandstack.starsplit.botedge75:
-    interface: starsplit.botedge75
-    subcomponent: servosandstack
-  servosandstack.starsplit.botedge76:
-    interface: starsplit.botedge76
-    subcomponent: servosandstack
-  servosandstack.starsplit.botedge77:
-    interface: starsplit.botedge77
-    subcomponent: servosandstack
-  servosandstack.starsplit.botedge78:
-    interface: starsplit.botedge78
-    subcomponent: servosandstack
-  servosandstack.starsplit.botedge79:
-    interface: starsplit.botedge79
-    subcomponent: servosandstack
-  servosandstack.starsplit.botedge8:
-    interface: starsplit.botedge8
-    subcomponent: servosandstack
-  servosandstack.starsplit.botedge80:
-    interface: starsplit.botedge80
-    subcomponent: servosandstack
-  servosandstack.starsplit.botedge81:
-    interface: starsplit.botedge81
-    subcomponent: servosandstack
-  servosandstack.starsplit.botedge82:
-    interface: starsplit.botedge82
-    subcomponent: servosandstack
-  servosandstack.starsplit.botedge83:
-    interface: starsplit.botedge83
-    subcomponent: servosandstack
-  servosandstack.starsplit.botedge84:
-    interface: starsplit.botedge84
-    subcomponent: servosandstack
-  servosandstack.starsplit.botedge85:
-    interface: starsplit.botedge85
-    subcomponent: servosandstack
-  servosandstack.starsplit.botedge86:
-    interface: starsplit.botedge86
-    subcomponent: servosandstack
-  servosandstack.starsplit.botedge87:
-    interface: starsplit.botedge87
-    subcomponent: servosandstack
-  servosandstack.starsplit.botedge88:
-    interface: starsplit.botedge88
-    subcomponent: servosandstack
-  servosandstack.starsplit.botedge89:
-    interface: starsplit.botedge89
-    subcomponent: servosandstack
-  servosandstack.starsplit.botedge9:
-    interface: starsplit.botedge9
-    subcomponent: servosandstack
-  servosandstack.starsplit.botedge90:
-    interface: starsplit.botedge90
-    subcomponent: servosandstack
-  servosandstack.starsplit.botedge91:
-    interface: starsplit.botedge91
-    subcomponent: servosandstack
-  servosandstack.starsplit.botedge92:
-    interface: starsplit.botedge92
-    subcomponent: servosandstack
-  servosandstack.starsplit.botedge93:
-    interface: starsplit.botedge93
-    subcomponent: servosandstack
-  servosandstack.starsplit.botedge94:
-    interface: starsplit.botedge94
-    subcomponent: servosandstack
-  servosandstack.starsplit.botedge95:
-    interface: starsplit.botedge95
-    subcomponent: servosandstack
-  servosandstack.starsplit.botedge96:
-    interface: starsplit.botedge96
-    subcomponent: servosandstack
-  servosandstack.starsplit.botedge97:
-    interface: starsplit.botedge97
-    subcomponent: servosandstack
-  servosandstack.starsplit.botedge98:
-    interface: starsplit.botedge98
-    subcomponent: servosandstack
-  servosandstack.starsplit.botedge99:
-    interface: starsplit.botedge99
-    subcomponent: servosandstack
-  servosandstack.starsplit.topedge0:
-    interface: starsplit.topedge0
-    subcomponent: servosandstack
-  servosandstack.starsplit.topedge1:
-    interface: starsplit.topedge1
-    subcomponent: servosandstack
-  servosandstack.starsplit.topedge10:
-    interface: starsplit.topedge10
-    subcomponent: servosandstack
-  servosandstack.starsplit.topedge11:
-    interface: starsplit.topedge11
-    subcomponent: servosandstack
-  servosandstack.starsplit.topedge12:
-    interface: starsplit.topedge12
-    subcomponent: servosandstack
-  servosandstack.starsplit.topedge13:
-    interface: starsplit.topedge13
-    subcomponent: servosandstack
-  servosandstack.starsplit.topedge14:
-    interface: starsplit.topedge14
-    subcomponent: servosandstack
-  servosandstack.starsplit.topedge15:
-    interface: starsplit.topedge15
-    subcomponent: servosandstack
-  servosandstack.starsplit.topedge16:
-    interface: starsplit.topedge16
-    subcomponent: servosandstack
-  servosandstack.starsplit.topedge17:
-    interface: starsplit.topedge17
-    subcomponent: servosandstack
-  servosandstack.starsplit.topedge18:
-    interface: starsplit.topedge18
-    subcomponent: servosandstack
-  servosandstack.starsplit.topedge19:
-    interface: starsplit.topedge19
-    subcomponent: servosandstack
-  servosandstack.starsplit.topedge2:
-    interface: starsplit.topedge2
-    subcomponent: servosandstack
-  servosandstack.starsplit.topedge20:
-    interface: starsplit.topedge20
-    subcomponent: servosandstack
-  servosandstack.starsplit.topedge21:
-    interface: starsplit.topedge21
-    subcomponent: servosandstack
-  servosandstack.starsplit.topedge22:
-    interface: starsplit.topedge22
-    subcomponent: servosandstack
-  servosandstack.starsplit.topedge23:
-    interface: starsplit.topedge23
-    subcomponent: servosandstack
-  servosandstack.starsplit.topedge24:
-    interface: starsplit.topedge24
-    subcomponent: servosandstack
-  servosandstack.starsplit.topedge25:
-    interface: starsplit.topedge25
-    subcomponent: servosandstack
-  servosandstack.starsplit.topedge26:
-    interface: starsplit.topedge26
-    subcomponent: servosandstack
-  servosandstack.starsplit.topedge27:
-    interface: starsplit.topedge27
-    subcomponent: servosandstack
-  servosandstack.starsplit.topedge28:
-    interface: starsplit.topedge28
-    subcomponent: servosandstack
-  servosandstack.starsplit.topedge29:
-    interface: starsplit.topedge29
-    subcomponent: servosandstack
-  servosandstack.starsplit.topedge3:
-    interface: starsplit.topedge3
-    subcomponent: servosandstack
-  servosandstack.starsplit.topedge30:
-    interface: starsplit.topedge30
-    subcomponent: servosandstack
-  servosandstack.starsplit.topedge31:
-    interface: starsplit.topedge31
-    subcomponent: servosandstack
-  servosandstack.starsplit.topedge32:
-    interface: starsplit.topedge32
-    subcomponent: servosandstack
-  servosandstack.starsplit.topedge33:
-    interface: starsplit.topedge33
-    subcomponent: servosandstack
-  servosandstack.starsplit.topedge34:
-    interface: starsplit.topedge34
-    subcomponent: servosandstack
-  servosandstack.starsplit.topedge35:
-    interface: starsplit.topedge35
-    subcomponent: servosandstack
-  servosandstack.starsplit.topedge36:
-    interface: starsplit.topedge36
-    subcomponent: servosandstack
-  servosandstack.starsplit.topedge37:
-    interface: starsplit.topedge37
-    subcomponent: servosandstack
-  servosandstack.starsplit.topedge38:
-    interface: starsplit.topedge38
-    subcomponent: servosandstack
-  servosandstack.starsplit.topedge39:
-    interface: starsplit.topedge39
-    subcomponent: servosandstack
-  servosandstack.starsplit.topedge4:
-    interface: starsplit.topedge4
-    subcomponent: servosandstack
-  servosandstack.starsplit.topedge40:
-    interface: starsplit.topedge40
-    subcomponent: servosandstack
-  servosandstack.starsplit.topedge41:
-    interface: starsplit.topedge41
-    subcomponent: servosandstack
-  servosandstack.starsplit.topedge42:
-    interface: starsplit.topedge42
-    subcomponent: servosandstack
-  servosandstack.starsplit.topedge43:
-    interface: starsplit.topedge43
-    subcomponent: servosandstack
-  servosandstack.starsplit.topedge44:
-    interface: starsplit.topedge44
-    subcomponent: servosandstack
-  servosandstack.starsplit.topedge45:
-    interface: starsplit.topedge45
-    subcomponent: servosandstack
-  servosandstack.starsplit.topedge46:
-    interface: starsplit.topedge46
-    subcomponent: servosandstack
-  servosandstack.starsplit.topedge47:
-    interface: starsplit.topedge47
-    subcomponent: servosandstack
-  servosandstack.starsplit.topedge48:
-    interface: starsplit.topedge48
-    subcomponent: servosandstack
-  servosandstack.starsplit.topedge49:
-    interface: starsplit.topedge49
-    subcomponent: servosandstack
-  servosandstack.starsplit.topedge5:
-    interface: starsplit.topedge5
-    subcomponent: servosandstack
-  servosandstack.starsplit.topedge50:
-    interface: starsplit.topedge50
-    subcomponent: servosandstack
-  servosandstack.starsplit.topedge51:
-    interface: starsplit.topedge51
-    subcomponent: servosandstack
-  servosandstack.starsplit.topedge52:
-    interface: starsplit.topedge52
-    subcomponent: servosandstack
-  servosandstack.starsplit.topedge53:
-    interface: starsplit.topedge53
-    subcomponent: servosandstack
-  servosandstack.starsplit.topedge54:
-    interface: starsplit.topedge54
-    subcomponent: servosandstack
-  servosandstack.starsplit.topedge55:
-    interface: starsplit.topedge55
-    subcomponent: servosandstack
-  servosandstack.starsplit.topedge56:
-    interface: starsplit.topedge56
-    subcomponent: servosandstack
-  servosandstack.starsplit.topedge57:
-    interface: starsplit.topedge57
-    subcomponent: servosandstack
-  servosandstack.starsplit.topedge58:
-    interface: starsplit.topedge58
-    subcomponent: servosandstack
-  servosandstack.starsplit.topedge59:
-    interface: starsplit.topedge59
-    subcomponent: servosandstack
-  servosandstack.starsplit.topedge6:
-    interface: starsplit.topedge6
-    subcomponent: servosandstack
-  servosandstack.starsplit.topedge60:
-    interface: starsplit.topedge60
-    subcomponent: servosandstack
-  servosandstack.starsplit.topedge61:
-    interface: starsplit.topedge61
-    subcomponent: servosandstack
-  servosandstack.starsplit.topedge62:
-    interface: starsplit.topedge62
-    subcomponent: servosandstack
-  servosandstack.starsplit.topedge63:
-    interface: starsplit.topedge63
-    subcomponent: servosandstack
-  servosandstack.starsplit.topedge64:
-    interface: starsplit.topedge64
-    subcomponent: servosandstack
-  servosandstack.starsplit.topedge65:
-    interface: starsplit.topedge65
-    subcomponent: servosandstack
-  servosandstack.starsplit.topedge66:
-    interface: starsplit.topedge66
-    subcomponent: servosandstack
-  servosandstack.starsplit.topedge67:
-    interface: starsplit.topedge67
-    subcomponent: servosandstack
-  servosandstack.starsplit.topedge68:
-    interface: starsplit.topedge68
-    subcomponent: servosandstack
-  servosandstack.starsplit.topedge69:
-    interface: starsplit.topedge69
-    subcomponent: servosandstack
-  servosandstack.starsplit.topedge7:
-    interface: starsplit.topedge7
-    subcomponent: servosandstack
-  servosandstack.starsplit.topedge70:
-    interface: starsplit.topedge70
-    subcomponent: servosandstack
-  servosandstack.starsplit.topedge71:
-    interface: starsplit.topedge71
-    subcomponent: servosandstack
-  servosandstack.starsplit.topedge72:
-    interface: starsplit.topedge72
-    subcomponent: servosandstack
-  servosandstack.starsplit.topedge73:
-    interface: starsplit.topedge73
-    subcomponent: servosandstack
-  servosandstack.starsplit.topedge74:
-    interface: starsplit.topedge74
-    subcomponent: servosandstack
-  servosandstack.starsplit.topedge75:
-    interface: starsplit.topedge75
-    subcomponent: servosandstack
-  servosandstack.starsplit.topedge76:
-    interface: starsplit.topedge76
-    subcomponent: servosandstack
-  servosandstack.starsplit.topedge77:
-    interface: starsplit.topedge77
-    subcomponent: servosandstack
-  servosandstack.starsplit.topedge78:
-    interface: starsplit.topedge78
-    subcomponent: servosandstack
-  servosandstack.starsplit.topedge79:
-    interface: starsplit.topedge79
-    subcomponent: servosandstack
-  servosandstack.starsplit.topedge8:
-    interface: starsplit.topedge8
-    subcomponent: servosandstack
-  servosandstack.starsplit.topedge80:
-    interface: starsplit.topedge80
-    subcomponent: servosandstack
-  servosandstack.starsplit.topedge81:
-    interface: starsplit.topedge81
-    subcomponent: servosandstack
-  servosandstack.starsplit.topedge82:
-    interface: starsplit.topedge82
-    subcomponent: servosandstack
-  servosandstack.starsplit.topedge83:
-    interface: starsplit.topedge83
-    subcomponent: servosandstack
-  servosandstack.starsplit.topedge84:
-    interface: starsplit.topedge84
-    subcomponent: servosandstack
-  servosandstack.starsplit.topedge85:
-    interface: starsplit.topedge85
-    subcomponent: servosandstack
-  servosandstack.starsplit.topedge86:
-    interface: starsplit.topedge86
-    subcomponent: servosandstack
-  servosandstack.starsplit.topedge87:
-    interface: starsplit.topedge87
-    subcomponent: servosandstack
-  servosandstack.starsplit.topedge88:
-    interface: starsplit.topedge88
-    subcomponent: servosandstack
-  servosandstack.starsplit.topedge89:
-    interface: starsplit.topedge89
-    subcomponent: servosandstack
-  servosandstack.starsplit.topedge9:
-    interface: starsplit.topedge9
-    subcomponent: servosandstack
-  servosandstack.starsplit.topedge90:
-    interface: starsplit.topedge90
-    subcomponent: servosandstack
-  servosandstack.starsplit.topedge91:
-    interface: starsplit.topedge91
-    subcomponent: servosandstack
-  servosandstack.starsplit.topedge92:
-    interface: starsplit.topedge92
-    subcomponent: servosandstack
-  servosandstack.starsplit.topedge93:
-    interface: starsplit.topedge93
-    subcomponent: servosandstack
-  servosandstack.starsplit.topedge94:
-    interface: starsplit.topedge94
-    subcomponent: servosandstack
-  servosandstack.starsplit.topedge95:
-    interface: starsplit.topedge95
-    subcomponent: servosandstack
-  servosandstack.starsplit.topedge96:
-    interface: starsplit.topedge96
-    subcomponent: servosandstack
-  servosandstack.starsplit.topedge97:
-    interface: starsplit.topedge97
-    subcomponent: servosandstack
-  servosandstack.starsplit.topedge98:
-    interface: starsplit.topedge98
-    subcomponent: servosandstack
-  servosandstack.starsplit.topedge99:
-    interface: starsplit.topedge99
-    subcomponent: servosandstack
+  boat.portedge:
+    interface: portedge
+    subcomponent: boat
+  boat.staredge:
+    interface: staredge
+    subcomponent: boat
+  servostackbattery.batterystackmount.leftArmInterface:
+    interface: batterystackmount.leftArmInterface
+    subcomponent: servostackbattery
+  servostackbattery.batterystackmount.rightArmInterface:
+    interface: batterystackmount.rightArmInterface
+    subcomponent: servostackbattery
+  servostackbattery.lTopSplit:
+    interface: lTopSplit
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.botedge0:
+    interface: lfullsplit.botedge0
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.botedge1:
+    interface: lfullsplit.botedge1
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.botedge10:
+    interface: lfullsplit.botedge10
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.botedge11:
+    interface: lfullsplit.botedge11
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.botedge12:
+    interface: lfullsplit.botedge12
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.botedge13:
+    interface: lfullsplit.botedge13
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.botedge14:
+    interface: lfullsplit.botedge14
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.botedge15:
+    interface: lfullsplit.botedge15
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.botedge16:
+    interface: lfullsplit.botedge16
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.botedge17:
+    interface: lfullsplit.botedge17
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.botedge18:
+    interface: lfullsplit.botedge18
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.botedge19:
+    interface: lfullsplit.botedge19
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.botedge2:
+    interface: lfullsplit.botedge2
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.botedge20:
+    interface: lfullsplit.botedge20
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.botedge21:
+    interface: lfullsplit.botedge21
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.botedge22:
+    interface: lfullsplit.botedge22
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.botedge23:
+    interface: lfullsplit.botedge23
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.botedge24:
+    interface: lfullsplit.botedge24
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.botedge25:
+    interface: lfullsplit.botedge25
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.botedge26:
+    interface: lfullsplit.botedge26
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.botedge27:
+    interface: lfullsplit.botedge27
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.botedge28:
+    interface: lfullsplit.botedge28
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.botedge29:
+    interface: lfullsplit.botedge29
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.botedge3:
+    interface: lfullsplit.botedge3
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.botedge30:
+    interface: lfullsplit.botedge30
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.botedge31:
+    interface: lfullsplit.botedge31
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.botedge32:
+    interface: lfullsplit.botedge32
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.botedge33:
+    interface: lfullsplit.botedge33
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.botedge34:
+    interface: lfullsplit.botedge34
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.botedge35:
+    interface: lfullsplit.botedge35
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.botedge36:
+    interface: lfullsplit.botedge36
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.botedge37:
+    interface: lfullsplit.botedge37
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.botedge38:
+    interface: lfullsplit.botedge38
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.botedge39:
+    interface: lfullsplit.botedge39
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.botedge4:
+    interface: lfullsplit.botedge4
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.botedge40:
+    interface: lfullsplit.botedge40
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.botedge41:
+    interface: lfullsplit.botedge41
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.botedge42:
+    interface: lfullsplit.botedge42
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.botedge43:
+    interface: lfullsplit.botedge43
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.botedge44:
+    interface: lfullsplit.botedge44
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.botedge45:
+    interface: lfullsplit.botedge45
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.botedge46:
+    interface: lfullsplit.botedge46
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.botedge47:
+    interface: lfullsplit.botedge47
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.botedge48:
+    interface: lfullsplit.botedge48
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.botedge49:
+    interface: lfullsplit.botedge49
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.botedge5:
+    interface: lfullsplit.botedge5
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.botedge50:
+    interface: lfullsplit.botedge50
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.botedge51:
+    interface: lfullsplit.botedge51
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.botedge52:
+    interface: lfullsplit.botedge52
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.botedge53:
+    interface: lfullsplit.botedge53
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.botedge54:
+    interface: lfullsplit.botedge54
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.botedge55:
+    interface: lfullsplit.botedge55
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.botedge56:
+    interface: lfullsplit.botedge56
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.botedge57:
+    interface: lfullsplit.botedge57
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.botedge58:
+    interface: lfullsplit.botedge58
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.botedge59:
+    interface: lfullsplit.botedge59
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.botedge6:
+    interface: lfullsplit.botedge6
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.botedge60:
+    interface: lfullsplit.botedge60
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.botedge61:
+    interface: lfullsplit.botedge61
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.botedge62:
+    interface: lfullsplit.botedge62
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.botedge63:
+    interface: lfullsplit.botedge63
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.botedge64:
+    interface: lfullsplit.botedge64
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.botedge65:
+    interface: lfullsplit.botedge65
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.botedge66:
+    interface: lfullsplit.botedge66
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.botedge67:
+    interface: lfullsplit.botedge67
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.botedge68:
+    interface: lfullsplit.botedge68
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.botedge69:
+    interface: lfullsplit.botedge69
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.botedge7:
+    interface: lfullsplit.botedge7
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.botedge70:
+    interface: lfullsplit.botedge70
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.botedge71:
+    interface: lfullsplit.botedge71
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.botedge72:
+    interface: lfullsplit.botedge72
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.botedge73:
+    interface: lfullsplit.botedge73
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.botedge74:
+    interface: lfullsplit.botedge74
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.botedge75:
+    interface: lfullsplit.botedge75
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.botedge76:
+    interface: lfullsplit.botedge76
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.botedge77:
+    interface: lfullsplit.botedge77
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.botedge78:
+    interface: lfullsplit.botedge78
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.botedge79:
+    interface: lfullsplit.botedge79
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.botedge8:
+    interface: lfullsplit.botedge8
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.botedge80:
+    interface: lfullsplit.botedge80
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.botedge81:
+    interface: lfullsplit.botedge81
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.botedge82:
+    interface: lfullsplit.botedge82
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.botedge83:
+    interface: lfullsplit.botedge83
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.botedge84:
+    interface: lfullsplit.botedge84
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.botedge85:
+    interface: lfullsplit.botedge85
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.botedge86:
+    interface: lfullsplit.botedge86
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.botedge87:
+    interface: lfullsplit.botedge87
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.botedge88:
+    interface: lfullsplit.botedge88
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.botedge89:
+    interface: lfullsplit.botedge89
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.botedge9:
+    interface: lfullsplit.botedge9
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.botedge90:
+    interface: lfullsplit.botedge90
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.botedge91:
+    interface: lfullsplit.botedge91
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.botedge92:
+    interface: lfullsplit.botedge92
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.botedge93:
+    interface: lfullsplit.botedge93
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.botedge94:
+    interface: lfullsplit.botedge94
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.botedge95:
+    interface: lfullsplit.botedge95
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.botedge96:
+    interface: lfullsplit.botedge96
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.botedge97:
+    interface: lfullsplit.botedge97
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.botedge98:
+    interface: lfullsplit.botedge98
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.botedge99:
+    interface: lfullsplit.botedge99
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.topedge0:
+    interface: lfullsplit.topedge0
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.topedge1:
+    interface: lfullsplit.topedge1
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.topedge10:
+    interface: lfullsplit.topedge10
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.topedge11:
+    interface: lfullsplit.topedge11
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.topedge12:
+    interface: lfullsplit.topedge12
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.topedge13:
+    interface: lfullsplit.topedge13
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.topedge14:
+    interface: lfullsplit.topedge14
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.topedge15:
+    interface: lfullsplit.topedge15
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.topedge16:
+    interface: lfullsplit.topedge16
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.topedge17:
+    interface: lfullsplit.topedge17
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.topedge18:
+    interface: lfullsplit.topedge18
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.topedge19:
+    interface: lfullsplit.topedge19
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.topedge2:
+    interface: lfullsplit.topedge2
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.topedge20:
+    interface: lfullsplit.topedge20
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.topedge21:
+    interface: lfullsplit.topedge21
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.topedge22:
+    interface: lfullsplit.topedge22
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.topedge23:
+    interface: lfullsplit.topedge23
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.topedge24:
+    interface: lfullsplit.topedge24
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.topedge25:
+    interface: lfullsplit.topedge25
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.topedge26:
+    interface: lfullsplit.topedge26
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.topedge27:
+    interface: lfullsplit.topedge27
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.topedge28:
+    interface: lfullsplit.topedge28
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.topedge29:
+    interface: lfullsplit.topedge29
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.topedge3:
+    interface: lfullsplit.topedge3
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.topedge30:
+    interface: lfullsplit.topedge30
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.topedge31:
+    interface: lfullsplit.topedge31
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.topedge32:
+    interface: lfullsplit.topedge32
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.topedge33:
+    interface: lfullsplit.topedge33
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.topedge34:
+    interface: lfullsplit.topedge34
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.topedge35:
+    interface: lfullsplit.topedge35
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.topedge36:
+    interface: lfullsplit.topedge36
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.topedge37:
+    interface: lfullsplit.topedge37
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.topedge38:
+    interface: lfullsplit.topedge38
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.topedge39:
+    interface: lfullsplit.topedge39
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.topedge4:
+    interface: lfullsplit.topedge4
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.topedge40:
+    interface: lfullsplit.topedge40
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.topedge41:
+    interface: lfullsplit.topedge41
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.topedge42:
+    interface: lfullsplit.topedge42
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.topedge43:
+    interface: lfullsplit.topedge43
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.topedge44:
+    interface: lfullsplit.topedge44
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.topedge45:
+    interface: lfullsplit.topedge45
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.topedge46:
+    interface: lfullsplit.topedge46
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.topedge47:
+    interface: lfullsplit.topedge47
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.topedge48:
+    interface: lfullsplit.topedge48
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.topedge49:
+    interface: lfullsplit.topedge49
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.topedge5:
+    interface: lfullsplit.topedge5
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.topedge50:
+    interface: lfullsplit.topedge50
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.topedge51:
+    interface: lfullsplit.topedge51
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.topedge52:
+    interface: lfullsplit.topedge52
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.topedge53:
+    interface: lfullsplit.topedge53
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.topedge54:
+    interface: lfullsplit.topedge54
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.topedge55:
+    interface: lfullsplit.topedge55
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.topedge56:
+    interface: lfullsplit.topedge56
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.topedge57:
+    interface: lfullsplit.topedge57
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.topedge58:
+    interface: lfullsplit.topedge58
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.topedge59:
+    interface: lfullsplit.topedge59
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.topedge6:
+    interface: lfullsplit.topedge6
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.topedge60:
+    interface: lfullsplit.topedge60
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.topedge61:
+    interface: lfullsplit.topedge61
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.topedge62:
+    interface: lfullsplit.topedge62
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.topedge63:
+    interface: lfullsplit.topedge63
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.topedge64:
+    interface: lfullsplit.topedge64
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.topedge65:
+    interface: lfullsplit.topedge65
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.topedge66:
+    interface: lfullsplit.topedge66
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.topedge67:
+    interface: lfullsplit.topedge67
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.topedge68:
+    interface: lfullsplit.topedge68
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.topedge69:
+    interface: lfullsplit.topedge69
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.topedge7:
+    interface: lfullsplit.topedge7
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.topedge70:
+    interface: lfullsplit.topedge70
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.topedge71:
+    interface: lfullsplit.topedge71
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.topedge72:
+    interface: lfullsplit.topedge72
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.topedge73:
+    interface: lfullsplit.topedge73
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.topedge74:
+    interface: lfullsplit.topedge74
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.topedge75:
+    interface: lfullsplit.topedge75
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.topedge76:
+    interface: lfullsplit.topedge76
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.topedge77:
+    interface: lfullsplit.topedge77
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.topedge78:
+    interface: lfullsplit.topedge78
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.topedge79:
+    interface: lfullsplit.topedge79
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.topedge8:
+    interface: lfullsplit.topedge8
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.topedge80:
+    interface: lfullsplit.topedge80
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.topedge81:
+    interface: lfullsplit.topedge81
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.topedge82:
+    interface: lfullsplit.topedge82
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.topedge83:
+    interface: lfullsplit.topedge83
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.topedge84:
+    interface: lfullsplit.topedge84
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.topedge85:
+    interface: lfullsplit.topedge85
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.topedge86:
+    interface: lfullsplit.topedge86
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.topedge87:
+    interface: lfullsplit.topedge87
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.topedge88:
+    interface: lfullsplit.topedge88
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.topedge89:
+    interface: lfullsplit.topedge89
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.topedge9:
+    interface: lfullsplit.topedge9
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.topedge90:
+    interface: lfullsplit.topedge90
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.topedge91:
+    interface: lfullsplit.topedge91
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.topedge92:
+    interface: lfullsplit.topedge92
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.topedge93:
+    interface: lfullsplit.topedge93
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.topedge94:
+    interface: lfullsplit.topedge94
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.topedge95:
+    interface: lfullsplit.topedge95
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.topedge96:
+    interface: lfullsplit.topedge96
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.topedge97:
+    interface: lfullsplit.topedge97
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.topedge98:
+    interface: lfullsplit.topedge98
+    subcomponent: servostackbattery
+  servostackbattery.lfullsplit.topedge99:
+    interface: lfullsplit.topedge99
+    subcomponent: servostackbattery
+  servostackbattery.rTopSplit:
+    interface: rTopSplit
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.botedge0:
+    interface: rfullsplit.botedge0
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.botedge1:
+    interface: rfullsplit.botedge1
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.botedge10:
+    interface: rfullsplit.botedge10
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.botedge11:
+    interface: rfullsplit.botedge11
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.botedge12:
+    interface: rfullsplit.botedge12
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.botedge13:
+    interface: rfullsplit.botedge13
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.botedge14:
+    interface: rfullsplit.botedge14
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.botedge15:
+    interface: rfullsplit.botedge15
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.botedge16:
+    interface: rfullsplit.botedge16
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.botedge17:
+    interface: rfullsplit.botedge17
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.botedge18:
+    interface: rfullsplit.botedge18
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.botedge19:
+    interface: rfullsplit.botedge19
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.botedge2:
+    interface: rfullsplit.botedge2
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.botedge20:
+    interface: rfullsplit.botedge20
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.botedge21:
+    interface: rfullsplit.botedge21
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.botedge22:
+    interface: rfullsplit.botedge22
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.botedge23:
+    interface: rfullsplit.botedge23
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.botedge24:
+    interface: rfullsplit.botedge24
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.botedge25:
+    interface: rfullsplit.botedge25
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.botedge26:
+    interface: rfullsplit.botedge26
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.botedge27:
+    interface: rfullsplit.botedge27
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.botedge28:
+    interface: rfullsplit.botedge28
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.botedge29:
+    interface: rfullsplit.botedge29
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.botedge3:
+    interface: rfullsplit.botedge3
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.botedge30:
+    interface: rfullsplit.botedge30
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.botedge31:
+    interface: rfullsplit.botedge31
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.botedge32:
+    interface: rfullsplit.botedge32
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.botedge33:
+    interface: rfullsplit.botedge33
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.botedge34:
+    interface: rfullsplit.botedge34
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.botedge35:
+    interface: rfullsplit.botedge35
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.botedge36:
+    interface: rfullsplit.botedge36
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.botedge37:
+    interface: rfullsplit.botedge37
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.botedge38:
+    interface: rfullsplit.botedge38
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.botedge39:
+    interface: rfullsplit.botedge39
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.botedge4:
+    interface: rfullsplit.botedge4
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.botedge40:
+    interface: rfullsplit.botedge40
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.botedge41:
+    interface: rfullsplit.botedge41
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.botedge42:
+    interface: rfullsplit.botedge42
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.botedge43:
+    interface: rfullsplit.botedge43
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.botedge44:
+    interface: rfullsplit.botedge44
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.botedge45:
+    interface: rfullsplit.botedge45
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.botedge46:
+    interface: rfullsplit.botedge46
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.botedge47:
+    interface: rfullsplit.botedge47
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.botedge48:
+    interface: rfullsplit.botedge48
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.botedge49:
+    interface: rfullsplit.botedge49
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.botedge5:
+    interface: rfullsplit.botedge5
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.botedge50:
+    interface: rfullsplit.botedge50
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.botedge51:
+    interface: rfullsplit.botedge51
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.botedge52:
+    interface: rfullsplit.botedge52
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.botedge53:
+    interface: rfullsplit.botedge53
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.botedge54:
+    interface: rfullsplit.botedge54
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.botedge55:
+    interface: rfullsplit.botedge55
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.botedge56:
+    interface: rfullsplit.botedge56
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.botedge57:
+    interface: rfullsplit.botedge57
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.botedge58:
+    interface: rfullsplit.botedge58
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.botedge59:
+    interface: rfullsplit.botedge59
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.botedge6:
+    interface: rfullsplit.botedge6
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.botedge60:
+    interface: rfullsplit.botedge60
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.botedge61:
+    interface: rfullsplit.botedge61
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.botedge62:
+    interface: rfullsplit.botedge62
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.botedge63:
+    interface: rfullsplit.botedge63
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.botedge64:
+    interface: rfullsplit.botedge64
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.botedge65:
+    interface: rfullsplit.botedge65
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.botedge66:
+    interface: rfullsplit.botedge66
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.botedge67:
+    interface: rfullsplit.botedge67
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.botedge68:
+    interface: rfullsplit.botedge68
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.botedge69:
+    interface: rfullsplit.botedge69
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.botedge7:
+    interface: rfullsplit.botedge7
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.botedge70:
+    interface: rfullsplit.botedge70
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.botedge71:
+    interface: rfullsplit.botedge71
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.botedge72:
+    interface: rfullsplit.botedge72
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.botedge73:
+    interface: rfullsplit.botedge73
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.botedge74:
+    interface: rfullsplit.botedge74
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.botedge75:
+    interface: rfullsplit.botedge75
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.botedge76:
+    interface: rfullsplit.botedge76
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.botedge77:
+    interface: rfullsplit.botedge77
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.botedge78:
+    interface: rfullsplit.botedge78
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.botedge79:
+    interface: rfullsplit.botedge79
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.botedge8:
+    interface: rfullsplit.botedge8
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.botedge80:
+    interface: rfullsplit.botedge80
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.botedge81:
+    interface: rfullsplit.botedge81
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.botedge82:
+    interface: rfullsplit.botedge82
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.botedge83:
+    interface: rfullsplit.botedge83
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.botedge84:
+    interface: rfullsplit.botedge84
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.botedge85:
+    interface: rfullsplit.botedge85
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.botedge86:
+    interface: rfullsplit.botedge86
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.botedge87:
+    interface: rfullsplit.botedge87
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.botedge88:
+    interface: rfullsplit.botedge88
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.botedge89:
+    interface: rfullsplit.botedge89
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.botedge9:
+    interface: rfullsplit.botedge9
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.botedge90:
+    interface: rfullsplit.botedge90
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.botedge91:
+    interface: rfullsplit.botedge91
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.botedge92:
+    interface: rfullsplit.botedge92
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.botedge93:
+    interface: rfullsplit.botedge93
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.botedge94:
+    interface: rfullsplit.botedge94
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.botedge95:
+    interface: rfullsplit.botedge95
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.botedge96:
+    interface: rfullsplit.botedge96
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.botedge97:
+    interface: rfullsplit.botedge97
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.botedge98:
+    interface: rfullsplit.botedge98
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.botedge99:
+    interface: rfullsplit.botedge99
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.topedge0:
+    interface: rfullsplit.topedge0
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.topedge1:
+    interface: rfullsplit.topedge1
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.topedge10:
+    interface: rfullsplit.topedge10
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.topedge11:
+    interface: rfullsplit.topedge11
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.topedge12:
+    interface: rfullsplit.topedge12
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.topedge13:
+    interface: rfullsplit.topedge13
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.topedge14:
+    interface: rfullsplit.topedge14
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.topedge15:
+    interface: rfullsplit.topedge15
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.topedge16:
+    interface: rfullsplit.topedge16
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.topedge17:
+    interface: rfullsplit.topedge17
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.topedge18:
+    interface: rfullsplit.topedge18
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.topedge19:
+    interface: rfullsplit.topedge19
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.topedge2:
+    interface: rfullsplit.topedge2
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.topedge20:
+    interface: rfullsplit.topedge20
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.topedge21:
+    interface: rfullsplit.topedge21
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.topedge22:
+    interface: rfullsplit.topedge22
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.topedge23:
+    interface: rfullsplit.topedge23
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.topedge24:
+    interface: rfullsplit.topedge24
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.topedge25:
+    interface: rfullsplit.topedge25
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.topedge26:
+    interface: rfullsplit.topedge26
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.topedge27:
+    interface: rfullsplit.topedge27
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.topedge28:
+    interface: rfullsplit.topedge28
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.topedge29:
+    interface: rfullsplit.topedge29
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.topedge3:
+    interface: rfullsplit.topedge3
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.topedge30:
+    interface: rfullsplit.topedge30
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.topedge31:
+    interface: rfullsplit.topedge31
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.topedge32:
+    interface: rfullsplit.topedge32
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.topedge33:
+    interface: rfullsplit.topedge33
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.topedge34:
+    interface: rfullsplit.topedge34
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.topedge35:
+    interface: rfullsplit.topedge35
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.topedge36:
+    interface: rfullsplit.topedge36
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.topedge37:
+    interface: rfullsplit.topedge37
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.topedge38:
+    interface: rfullsplit.topedge38
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.topedge39:
+    interface: rfullsplit.topedge39
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.topedge4:
+    interface: rfullsplit.topedge4
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.topedge40:
+    interface: rfullsplit.topedge40
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.topedge41:
+    interface: rfullsplit.topedge41
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.topedge42:
+    interface: rfullsplit.topedge42
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.topedge43:
+    interface: rfullsplit.topedge43
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.topedge44:
+    interface: rfullsplit.topedge44
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.topedge45:
+    interface: rfullsplit.topedge45
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.topedge46:
+    interface: rfullsplit.topedge46
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.topedge47:
+    interface: rfullsplit.topedge47
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.topedge48:
+    interface: rfullsplit.topedge48
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.topedge49:
+    interface: rfullsplit.topedge49
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.topedge5:
+    interface: rfullsplit.topedge5
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.topedge50:
+    interface: rfullsplit.topedge50
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.topedge51:
+    interface: rfullsplit.topedge51
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.topedge52:
+    interface: rfullsplit.topedge52
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.topedge53:
+    interface: rfullsplit.topedge53
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.topedge54:
+    interface: rfullsplit.topedge54
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.topedge55:
+    interface: rfullsplit.topedge55
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.topedge56:
+    interface: rfullsplit.topedge56
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.topedge57:
+    interface: rfullsplit.topedge57
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.topedge58:
+    interface: rfullsplit.topedge58
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.topedge59:
+    interface: rfullsplit.topedge59
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.topedge6:
+    interface: rfullsplit.topedge6
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.topedge60:
+    interface: rfullsplit.topedge60
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.topedge61:
+    interface: rfullsplit.topedge61
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.topedge62:
+    interface: rfullsplit.topedge62
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.topedge63:
+    interface: rfullsplit.topedge63
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.topedge64:
+    interface: rfullsplit.topedge64
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.topedge65:
+    interface: rfullsplit.topedge65
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.topedge66:
+    interface: rfullsplit.topedge66
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.topedge67:
+    interface: rfullsplit.topedge67
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.topedge68:
+    interface: rfullsplit.topedge68
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.topedge69:
+    interface: rfullsplit.topedge69
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.topedge7:
+    interface: rfullsplit.topedge7
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.topedge70:
+    interface: rfullsplit.topedge70
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.topedge71:
+    interface: rfullsplit.topedge71
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.topedge72:
+    interface: rfullsplit.topedge72
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.topedge73:
+    interface: rfullsplit.topedge73
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.topedge74:
+    interface: rfullsplit.topedge74
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.topedge75:
+    interface: rfullsplit.topedge75
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.topedge76:
+    interface: rfullsplit.topedge76
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.topedge77:
+    interface: rfullsplit.topedge77
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.topedge78:
+    interface: rfullsplit.topedge78
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.topedge79:
+    interface: rfullsplit.topedge79
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.topedge8:
+    interface: rfullsplit.topedge8
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.topedge80:
+    interface: rfullsplit.topedge80
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.topedge81:
+    interface: rfullsplit.topedge81
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.topedge82:
+    interface: rfullsplit.topedge82
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.topedge83:
+    interface: rfullsplit.topedge83
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.topedge84:
+    interface: rfullsplit.topedge84
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.topedge85:
+    interface: rfullsplit.topedge85
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.topedge86:
+    interface: rfullsplit.topedge86
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.topedge87:
+    interface: rfullsplit.topedge87
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.topedge88:
+    interface: rfullsplit.topedge88
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.topedge89:
+    interface: rfullsplit.topedge89
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.topedge9:
+    interface: rfullsplit.topedge9
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.topedge90:
+    interface: rfullsplit.topedge90
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.topedge91:
+    interface: rfullsplit.topedge91
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.topedge92:
+    interface: rfullsplit.topedge92
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.topedge93:
+    interface: rfullsplit.topedge93
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.topedge94:
+    interface: rfullsplit.topedge94
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.topedge95:
+    interface: rfullsplit.topedge95
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.topedge96:
+    interface: rfullsplit.topedge96
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.topedge97:
+    interface: rfullsplit.topedge97
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.topedge98:
+    interface: rfullsplit.topedge98
+    subcomponent: servostackbattery
+  servostackbattery.rfullsplit.topedge99:
+    interface: rfullsplit.topedge99
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.doubleServoMount.lServoInterface:
+    interface: servosandstack.doubleServoMount.lServoInterface
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.doubleServoMount.lServoMount.leftInterface:
+    interface: servosandstack.doubleServoMount.lServoMount.leftInterface
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.doubleServoMount.lServoMount.rightInterface:
+    interface: servosandstack.doubleServoMount.lServoMount.rightInterface
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.doubleServoMount.rServoInterface:
+    interface: servosandstack.doubleServoMount.rServoInterface
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.doubleServoMount.rServoMount.leftInterface:
+    interface: servosandstack.doubleServoMount.rServoMount.leftInterface
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.doubleServoMount.rServoMount.rightInterface:
+    interface: servosandstack.doubleServoMount.rServoMount.rightInterface
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.lmountandservosplit:
+    interface: servosandstack.lmountandservosplit
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.botedge0:
+    interface: servosandstack.portsplit.botedge0
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.botedge1:
+    interface: servosandstack.portsplit.botedge1
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.botedge10:
+    interface: servosandstack.portsplit.botedge10
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.botedge11:
+    interface: servosandstack.portsplit.botedge11
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.botedge12:
+    interface: servosandstack.portsplit.botedge12
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.botedge13:
+    interface: servosandstack.portsplit.botedge13
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.botedge14:
+    interface: servosandstack.portsplit.botedge14
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.botedge15:
+    interface: servosandstack.portsplit.botedge15
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.botedge16:
+    interface: servosandstack.portsplit.botedge16
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.botedge17:
+    interface: servosandstack.portsplit.botedge17
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.botedge18:
+    interface: servosandstack.portsplit.botedge18
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.botedge19:
+    interface: servosandstack.portsplit.botedge19
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.botedge2:
+    interface: servosandstack.portsplit.botedge2
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.botedge20:
+    interface: servosandstack.portsplit.botedge20
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.botedge21:
+    interface: servosandstack.portsplit.botedge21
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.botedge22:
+    interface: servosandstack.portsplit.botedge22
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.botedge23:
+    interface: servosandstack.portsplit.botedge23
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.botedge24:
+    interface: servosandstack.portsplit.botedge24
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.botedge25:
+    interface: servosandstack.portsplit.botedge25
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.botedge26:
+    interface: servosandstack.portsplit.botedge26
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.botedge27:
+    interface: servosandstack.portsplit.botedge27
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.botedge28:
+    interface: servosandstack.portsplit.botedge28
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.botedge29:
+    interface: servosandstack.portsplit.botedge29
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.botedge3:
+    interface: servosandstack.portsplit.botedge3
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.botedge30:
+    interface: servosandstack.portsplit.botedge30
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.botedge31:
+    interface: servosandstack.portsplit.botedge31
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.botedge32:
+    interface: servosandstack.portsplit.botedge32
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.botedge33:
+    interface: servosandstack.portsplit.botedge33
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.botedge34:
+    interface: servosandstack.portsplit.botedge34
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.botedge35:
+    interface: servosandstack.portsplit.botedge35
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.botedge36:
+    interface: servosandstack.portsplit.botedge36
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.botedge37:
+    interface: servosandstack.portsplit.botedge37
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.botedge38:
+    interface: servosandstack.portsplit.botedge38
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.botedge39:
+    interface: servosandstack.portsplit.botedge39
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.botedge4:
+    interface: servosandstack.portsplit.botedge4
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.botedge40:
+    interface: servosandstack.portsplit.botedge40
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.botedge41:
+    interface: servosandstack.portsplit.botedge41
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.botedge42:
+    interface: servosandstack.portsplit.botedge42
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.botedge43:
+    interface: servosandstack.portsplit.botedge43
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.botedge44:
+    interface: servosandstack.portsplit.botedge44
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.botedge45:
+    interface: servosandstack.portsplit.botedge45
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.botedge46:
+    interface: servosandstack.portsplit.botedge46
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.botedge47:
+    interface: servosandstack.portsplit.botedge47
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.botedge48:
+    interface: servosandstack.portsplit.botedge48
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.botedge49:
+    interface: servosandstack.portsplit.botedge49
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.botedge5:
+    interface: servosandstack.portsplit.botedge5
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.botedge50:
+    interface: servosandstack.portsplit.botedge50
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.botedge51:
+    interface: servosandstack.portsplit.botedge51
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.botedge52:
+    interface: servosandstack.portsplit.botedge52
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.botedge53:
+    interface: servosandstack.portsplit.botedge53
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.botedge54:
+    interface: servosandstack.portsplit.botedge54
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.botedge55:
+    interface: servosandstack.portsplit.botedge55
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.botedge56:
+    interface: servosandstack.portsplit.botedge56
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.botedge57:
+    interface: servosandstack.portsplit.botedge57
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.botedge58:
+    interface: servosandstack.portsplit.botedge58
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.botedge59:
+    interface: servosandstack.portsplit.botedge59
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.botedge6:
+    interface: servosandstack.portsplit.botedge6
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.botedge60:
+    interface: servosandstack.portsplit.botedge60
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.botedge61:
+    interface: servosandstack.portsplit.botedge61
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.botedge62:
+    interface: servosandstack.portsplit.botedge62
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.botedge63:
+    interface: servosandstack.portsplit.botedge63
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.botedge64:
+    interface: servosandstack.portsplit.botedge64
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.botedge65:
+    interface: servosandstack.portsplit.botedge65
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.botedge66:
+    interface: servosandstack.portsplit.botedge66
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.botedge67:
+    interface: servosandstack.portsplit.botedge67
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.botedge68:
+    interface: servosandstack.portsplit.botedge68
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.botedge69:
+    interface: servosandstack.portsplit.botedge69
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.botedge7:
+    interface: servosandstack.portsplit.botedge7
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.botedge70:
+    interface: servosandstack.portsplit.botedge70
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.botedge71:
+    interface: servosandstack.portsplit.botedge71
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.botedge72:
+    interface: servosandstack.portsplit.botedge72
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.botedge73:
+    interface: servosandstack.portsplit.botedge73
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.botedge74:
+    interface: servosandstack.portsplit.botedge74
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.botedge75:
+    interface: servosandstack.portsplit.botedge75
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.botedge76:
+    interface: servosandstack.portsplit.botedge76
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.botedge77:
+    interface: servosandstack.portsplit.botedge77
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.botedge78:
+    interface: servosandstack.portsplit.botedge78
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.botedge79:
+    interface: servosandstack.portsplit.botedge79
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.botedge8:
+    interface: servosandstack.portsplit.botedge8
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.botedge80:
+    interface: servosandstack.portsplit.botedge80
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.botedge81:
+    interface: servosandstack.portsplit.botedge81
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.botedge82:
+    interface: servosandstack.portsplit.botedge82
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.botedge83:
+    interface: servosandstack.portsplit.botedge83
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.botedge84:
+    interface: servosandstack.portsplit.botedge84
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.botedge85:
+    interface: servosandstack.portsplit.botedge85
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.botedge86:
+    interface: servosandstack.portsplit.botedge86
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.botedge87:
+    interface: servosandstack.portsplit.botedge87
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.botedge88:
+    interface: servosandstack.portsplit.botedge88
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.botedge89:
+    interface: servosandstack.portsplit.botedge89
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.botedge9:
+    interface: servosandstack.portsplit.botedge9
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.botedge90:
+    interface: servosandstack.portsplit.botedge90
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.botedge91:
+    interface: servosandstack.portsplit.botedge91
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.botedge92:
+    interface: servosandstack.portsplit.botedge92
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.botedge93:
+    interface: servosandstack.portsplit.botedge93
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.botedge94:
+    interface: servosandstack.portsplit.botedge94
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.botedge95:
+    interface: servosandstack.portsplit.botedge95
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.botedge96:
+    interface: servosandstack.portsplit.botedge96
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.botedge97:
+    interface: servosandstack.portsplit.botedge97
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.botedge98:
+    interface: servosandstack.portsplit.botedge98
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.botedge99:
+    interface: servosandstack.portsplit.botedge99
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.topedge0:
+    interface: servosandstack.portsplit.topedge0
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.topedge1:
+    interface: servosandstack.portsplit.topedge1
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.topedge10:
+    interface: servosandstack.portsplit.topedge10
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.topedge11:
+    interface: servosandstack.portsplit.topedge11
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.topedge12:
+    interface: servosandstack.portsplit.topedge12
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.topedge13:
+    interface: servosandstack.portsplit.topedge13
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.topedge14:
+    interface: servosandstack.portsplit.topedge14
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.topedge15:
+    interface: servosandstack.portsplit.topedge15
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.topedge16:
+    interface: servosandstack.portsplit.topedge16
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.topedge17:
+    interface: servosandstack.portsplit.topedge17
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.topedge18:
+    interface: servosandstack.portsplit.topedge18
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.topedge19:
+    interface: servosandstack.portsplit.topedge19
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.topedge2:
+    interface: servosandstack.portsplit.topedge2
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.topedge20:
+    interface: servosandstack.portsplit.topedge20
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.topedge21:
+    interface: servosandstack.portsplit.topedge21
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.topedge22:
+    interface: servosandstack.portsplit.topedge22
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.topedge23:
+    interface: servosandstack.portsplit.topedge23
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.topedge24:
+    interface: servosandstack.portsplit.topedge24
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.topedge25:
+    interface: servosandstack.portsplit.topedge25
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.topedge26:
+    interface: servosandstack.portsplit.topedge26
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.topedge27:
+    interface: servosandstack.portsplit.topedge27
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.topedge28:
+    interface: servosandstack.portsplit.topedge28
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.topedge29:
+    interface: servosandstack.portsplit.topedge29
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.topedge3:
+    interface: servosandstack.portsplit.topedge3
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.topedge30:
+    interface: servosandstack.portsplit.topedge30
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.topedge31:
+    interface: servosandstack.portsplit.topedge31
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.topedge32:
+    interface: servosandstack.portsplit.topedge32
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.topedge33:
+    interface: servosandstack.portsplit.topedge33
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.topedge34:
+    interface: servosandstack.portsplit.topedge34
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.topedge35:
+    interface: servosandstack.portsplit.topedge35
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.topedge36:
+    interface: servosandstack.portsplit.topedge36
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.topedge37:
+    interface: servosandstack.portsplit.topedge37
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.topedge38:
+    interface: servosandstack.portsplit.topedge38
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.topedge39:
+    interface: servosandstack.portsplit.topedge39
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.topedge4:
+    interface: servosandstack.portsplit.topedge4
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.topedge40:
+    interface: servosandstack.portsplit.topedge40
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.topedge41:
+    interface: servosandstack.portsplit.topedge41
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.topedge42:
+    interface: servosandstack.portsplit.topedge42
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.topedge43:
+    interface: servosandstack.portsplit.topedge43
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.topedge44:
+    interface: servosandstack.portsplit.topedge44
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.topedge45:
+    interface: servosandstack.portsplit.topedge45
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.topedge46:
+    interface: servosandstack.portsplit.topedge46
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.topedge47:
+    interface: servosandstack.portsplit.topedge47
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.topedge48:
+    interface: servosandstack.portsplit.topedge48
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.topedge49:
+    interface: servosandstack.portsplit.topedge49
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.topedge5:
+    interface: servosandstack.portsplit.topedge5
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.topedge50:
+    interface: servosandstack.portsplit.topedge50
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.topedge51:
+    interface: servosandstack.portsplit.topedge51
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.topedge52:
+    interface: servosandstack.portsplit.topedge52
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.topedge53:
+    interface: servosandstack.portsplit.topedge53
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.topedge54:
+    interface: servosandstack.portsplit.topedge54
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.topedge55:
+    interface: servosandstack.portsplit.topedge55
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.topedge56:
+    interface: servosandstack.portsplit.topedge56
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.topedge57:
+    interface: servosandstack.portsplit.topedge57
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.topedge58:
+    interface: servosandstack.portsplit.topedge58
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.topedge59:
+    interface: servosandstack.portsplit.topedge59
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.topedge6:
+    interface: servosandstack.portsplit.topedge6
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.topedge60:
+    interface: servosandstack.portsplit.topedge60
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.topedge61:
+    interface: servosandstack.portsplit.topedge61
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.topedge62:
+    interface: servosandstack.portsplit.topedge62
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.topedge63:
+    interface: servosandstack.portsplit.topedge63
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.topedge64:
+    interface: servosandstack.portsplit.topedge64
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.topedge65:
+    interface: servosandstack.portsplit.topedge65
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.topedge66:
+    interface: servosandstack.portsplit.topedge66
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.topedge67:
+    interface: servosandstack.portsplit.topedge67
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.topedge68:
+    interface: servosandstack.portsplit.topedge68
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.topedge69:
+    interface: servosandstack.portsplit.topedge69
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.topedge7:
+    interface: servosandstack.portsplit.topedge7
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.topedge70:
+    interface: servosandstack.portsplit.topedge70
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.topedge71:
+    interface: servosandstack.portsplit.topedge71
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.topedge72:
+    interface: servosandstack.portsplit.topedge72
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.topedge73:
+    interface: servosandstack.portsplit.topedge73
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.topedge74:
+    interface: servosandstack.portsplit.topedge74
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.topedge75:
+    interface: servosandstack.portsplit.topedge75
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.topedge76:
+    interface: servosandstack.portsplit.topedge76
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.topedge77:
+    interface: servosandstack.portsplit.topedge77
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.topedge78:
+    interface: servosandstack.portsplit.topedge78
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.topedge79:
+    interface: servosandstack.portsplit.topedge79
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.topedge8:
+    interface: servosandstack.portsplit.topedge8
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.topedge80:
+    interface: servosandstack.portsplit.topedge80
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.topedge81:
+    interface: servosandstack.portsplit.topedge81
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.topedge82:
+    interface: servosandstack.portsplit.topedge82
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.topedge83:
+    interface: servosandstack.portsplit.topedge83
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.topedge84:
+    interface: servosandstack.portsplit.topedge84
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.topedge85:
+    interface: servosandstack.portsplit.topedge85
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.topedge86:
+    interface: servosandstack.portsplit.topedge86
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.topedge87:
+    interface: servosandstack.portsplit.topedge87
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.topedge88:
+    interface: servosandstack.portsplit.topedge88
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.topedge89:
+    interface: servosandstack.portsplit.topedge89
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.topedge9:
+    interface: servosandstack.portsplit.topedge9
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.topedge90:
+    interface: servosandstack.portsplit.topedge90
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.topedge91:
+    interface: servosandstack.portsplit.topedge91
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.topedge92:
+    interface: servosandstack.portsplit.topedge92
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.topedge93:
+    interface: servosandstack.portsplit.topedge93
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.topedge94:
+    interface: servosandstack.portsplit.topedge94
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.topedge95:
+    interface: servosandstack.portsplit.topedge95
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.topedge96:
+    interface: servosandstack.portsplit.topedge96
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.topedge97:
+    interface: servosandstack.portsplit.topedge97
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.topedge98:
+    interface: servosandstack.portsplit.topedge98
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.portsplit.topedge99:
+    interface: servosandstack.portsplit.topedge99
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.rmountandservosplit:
+    interface: servosandstack.rmountandservosplit
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.botedge0:
+    interface: servosandstack.starsplit.botedge0
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.botedge1:
+    interface: servosandstack.starsplit.botedge1
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.botedge10:
+    interface: servosandstack.starsplit.botedge10
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.botedge11:
+    interface: servosandstack.starsplit.botedge11
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.botedge12:
+    interface: servosandstack.starsplit.botedge12
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.botedge13:
+    interface: servosandstack.starsplit.botedge13
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.botedge14:
+    interface: servosandstack.starsplit.botedge14
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.botedge15:
+    interface: servosandstack.starsplit.botedge15
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.botedge16:
+    interface: servosandstack.starsplit.botedge16
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.botedge17:
+    interface: servosandstack.starsplit.botedge17
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.botedge18:
+    interface: servosandstack.starsplit.botedge18
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.botedge19:
+    interface: servosandstack.starsplit.botedge19
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.botedge2:
+    interface: servosandstack.starsplit.botedge2
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.botedge20:
+    interface: servosandstack.starsplit.botedge20
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.botedge21:
+    interface: servosandstack.starsplit.botedge21
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.botedge22:
+    interface: servosandstack.starsplit.botedge22
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.botedge23:
+    interface: servosandstack.starsplit.botedge23
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.botedge24:
+    interface: servosandstack.starsplit.botedge24
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.botedge25:
+    interface: servosandstack.starsplit.botedge25
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.botedge26:
+    interface: servosandstack.starsplit.botedge26
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.botedge27:
+    interface: servosandstack.starsplit.botedge27
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.botedge28:
+    interface: servosandstack.starsplit.botedge28
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.botedge29:
+    interface: servosandstack.starsplit.botedge29
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.botedge3:
+    interface: servosandstack.starsplit.botedge3
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.botedge30:
+    interface: servosandstack.starsplit.botedge30
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.botedge31:
+    interface: servosandstack.starsplit.botedge31
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.botedge32:
+    interface: servosandstack.starsplit.botedge32
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.botedge33:
+    interface: servosandstack.starsplit.botedge33
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.botedge34:
+    interface: servosandstack.starsplit.botedge34
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.botedge35:
+    interface: servosandstack.starsplit.botedge35
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.botedge36:
+    interface: servosandstack.starsplit.botedge36
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.botedge37:
+    interface: servosandstack.starsplit.botedge37
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.botedge38:
+    interface: servosandstack.starsplit.botedge38
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.botedge39:
+    interface: servosandstack.starsplit.botedge39
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.botedge4:
+    interface: servosandstack.starsplit.botedge4
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.botedge40:
+    interface: servosandstack.starsplit.botedge40
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.botedge41:
+    interface: servosandstack.starsplit.botedge41
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.botedge42:
+    interface: servosandstack.starsplit.botedge42
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.botedge43:
+    interface: servosandstack.starsplit.botedge43
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.botedge44:
+    interface: servosandstack.starsplit.botedge44
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.botedge45:
+    interface: servosandstack.starsplit.botedge45
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.botedge46:
+    interface: servosandstack.starsplit.botedge46
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.botedge47:
+    interface: servosandstack.starsplit.botedge47
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.botedge48:
+    interface: servosandstack.starsplit.botedge48
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.botedge49:
+    interface: servosandstack.starsplit.botedge49
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.botedge5:
+    interface: servosandstack.starsplit.botedge5
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.botedge50:
+    interface: servosandstack.starsplit.botedge50
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.botedge51:
+    interface: servosandstack.starsplit.botedge51
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.botedge52:
+    interface: servosandstack.starsplit.botedge52
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.botedge53:
+    interface: servosandstack.starsplit.botedge53
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.botedge54:
+    interface: servosandstack.starsplit.botedge54
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.botedge55:
+    interface: servosandstack.starsplit.botedge55
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.botedge56:
+    interface: servosandstack.starsplit.botedge56
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.botedge57:
+    interface: servosandstack.starsplit.botedge57
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.botedge58:
+    interface: servosandstack.starsplit.botedge58
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.botedge59:
+    interface: servosandstack.starsplit.botedge59
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.botedge6:
+    interface: servosandstack.starsplit.botedge6
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.botedge60:
+    interface: servosandstack.starsplit.botedge60
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.botedge61:
+    interface: servosandstack.starsplit.botedge61
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.botedge62:
+    interface: servosandstack.starsplit.botedge62
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.botedge63:
+    interface: servosandstack.starsplit.botedge63
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.botedge64:
+    interface: servosandstack.starsplit.botedge64
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.botedge65:
+    interface: servosandstack.starsplit.botedge65
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.botedge66:
+    interface: servosandstack.starsplit.botedge66
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.botedge67:
+    interface: servosandstack.starsplit.botedge67
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.botedge68:
+    interface: servosandstack.starsplit.botedge68
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.botedge69:
+    interface: servosandstack.starsplit.botedge69
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.botedge7:
+    interface: servosandstack.starsplit.botedge7
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.botedge70:
+    interface: servosandstack.starsplit.botedge70
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.botedge71:
+    interface: servosandstack.starsplit.botedge71
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.botedge72:
+    interface: servosandstack.starsplit.botedge72
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.botedge73:
+    interface: servosandstack.starsplit.botedge73
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.botedge74:
+    interface: servosandstack.starsplit.botedge74
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.botedge75:
+    interface: servosandstack.starsplit.botedge75
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.botedge76:
+    interface: servosandstack.starsplit.botedge76
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.botedge77:
+    interface: servosandstack.starsplit.botedge77
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.botedge78:
+    interface: servosandstack.starsplit.botedge78
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.botedge79:
+    interface: servosandstack.starsplit.botedge79
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.botedge8:
+    interface: servosandstack.starsplit.botedge8
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.botedge80:
+    interface: servosandstack.starsplit.botedge80
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.botedge81:
+    interface: servosandstack.starsplit.botedge81
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.botedge82:
+    interface: servosandstack.starsplit.botedge82
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.botedge83:
+    interface: servosandstack.starsplit.botedge83
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.botedge84:
+    interface: servosandstack.starsplit.botedge84
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.botedge85:
+    interface: servosandstack.starsplit.botedge85
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.botedge86:
+    interface: servosandstack.starsplit.botedge86
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.botedge87:
+    interface: servosandstack.starsplit.botedge87
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.botedge88:
+    interface: servosandstack.starsplit.botedge88
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.botedge89:
+    interface: servosandstack.starsplit.botedge89
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.botedge9:
+    interface: servosandstack.starsplit.botedge9
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.botedge90:
+    interface: servosandstack.starsplit.botedge90
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.botedge91:
+    interface: servosandstack.starsplit.botedge91
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.botedge92:
+    interface: servosandstack.starsplit.botedge92
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.botedge93:
+    interface: servosandstack.starsplit.botedge93
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.botedge94:
+    interface: servosandstack.starsplit.botedge94
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.botedge95:
+    interface: servosandstack.starsplit.botedge95
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.botedge96:
+    interface: servosandstack.starsplit.botedge96
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.botedge97:
+    interface: servosandstack.starsplit.botedge97
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.botedge98:
+    interface: servosandstack.starsplit.botedge98
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.botedge99:
+    interface: servosandstack.starsplit.botedge99
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.topedge0:
+    interface: servosandstack.starsplit.topedge0
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.topedge1:
+    interface: servosandstack.starsplit.topedge1
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.topedge10:
+    interface: servosandstack.starsplit.topedge10
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.topedge11:
+    interface: servosandstack.starsplit.topedge11
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.topedge12:
+    interface: servosandstack.starsplit.topedge12
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.topedge13:
+    interface: servosandstack.starsplit.topedge13
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.topedge14:
+    interface: servosandstack.starsplit.topedge14
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.topedge15:
+    interface: servosandstack.starsplit.topedge15
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.topedge16:
+    interface: servosandstack.starsplit.topedge16
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.topedge17:
+    interface: servosandstack.starsplit.topedge17
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.topedge18:
+    interface: servosandstack.starsplit.topedge18
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.topedge19:
+    interface: servosandstack.starsplit.topedge19
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.topedge2:
+    interface: servosandstack.starsplit.topedge2
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.topedge20:
+    interface: servosandstack.starsplit.topedge20
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.topedge21:
+    interface: servosandstack.starsplit.topedge21
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.topedge22:
+    interface: servosandstack.starsplit.topedge22
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.topedge23:
+    interface: servosandstack.starsplit.topedge23
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.topedge24:
+    interface: servosandstack.starsplit.topedge24
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.topedge25:
+    interface: servosandstack.starsplit.topedge25
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.topedge26:
+    interface: servosandstack.starsplit.topedge26
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.topedge27:
+    interface: servosandstack.starsplit.topedge27
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.topedge28:
+    interface: servosandstack.starsplit.topedge28
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.topedge29:
+    interface: servosandstack.starsplit.topedge29
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.topedge3:
+    interface: servosandstack.starsplit.topedge3
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.topedge30:
+    interface: servosandstack.starsplit.topedge30
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.topedge31:
+    interface: servosandstack.starsplit.topedge31
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.topedge32:
+    interface: servosandstack.starsplit.topedge32
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.topedge33:
+    interface: servosandstack.starsplit.topedge33
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.topedge34:
+    interface: servosandstack.starsplit.topedge34
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.topedge35:
+    interface: servosandstack.starsplit.topedge35
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.topedge36:
+    interface: servosandstack.starsplit.topedge36
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.topedge37:
+    interface: servosandstack.starsplit.topedge37
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.topedge38:
+    interface: servosandstack.starsplit.topedge38
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.topedge39:
+    interface: servosandstack.starsplit.topedge39
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.topedge4:
+    interface: servosandstack.starsplit.topedge4
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.topedge40:
+    interface: servosandstack.starsplit.topedge40
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.topedge41:
+    interface: servosandstack.starsplit.topedge41
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.topedge42:
+    interface: servosandstack.starsplit.topedge42
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.topedge43:
+    interface: servosandstack.starsplit.topedge43
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.topedge44:
+    interface: servosandstack.starsplit.topedge44
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.topedge45:
+    interface: servosandstack.starsplit.topedge45
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.topedge46:
+    interface: servosandstack.starsplit.topedge46
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.topedge47:
+    interface: servosandstack.starsplit.topedge47
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.topedge48:
+    interface: servosandstack.starsplit.topedge48
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.topedge49:
+    interface: servosandstack.starsplit.topedge49
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.topedge5:
+    interface: servosandstack.starsplit.topedge5
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.topedge50:
+    interface: servosandstack.starsplit.topedge50
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.topedge51:
+    interface: servosandstack.starsplit.topedge51
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.topedge52:
+    interface: servosandstack.starsplit.topedge52
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.topedge53:
+    interface: servosandstack.starsplit.topedge53
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.topedge54:
+    interface: servosandstack.starsplit.topedge54
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.topedge55:
+    interface: servosandstack.starsplit.topedge55
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.topedge56:
+    interface: servosandstack.starsplit.topedge56
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.topedge57:
+    interface: servosandstack.starsplit.topedge57
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.topedge58:
+    interface: servosandstack.starsplit.topedge58
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.topedge59:
+    interface: servosandstack.starsplit.topedge59
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.topedge6:
+    interface: servosandstack.starsplit.topedge6
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.topedge60:
+    interface: servosandstack.starsplit.topedge60
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.topedge61:
+    interface: servosandstack.starsplit.topedge61
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.topedge62:
+    interface: servosandstack.starsplit.topedge62
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.topedge63:
+    interface: servosandstack.starsplit.topedge63
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.topedge64:
+    interface: servosandstack.starsplit.topedge64
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.topedge65:
+    interface: servosandstack.starsplit.topedge65
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.topedge66:
+    interface: servosandstack.starsplit.topedge66
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.topedge67:
+    interface: servosandstack.starsplit.topedge67
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.topedge68:
+    interface: servosandstack.starsplit.topedge68
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.topedge69:
+    interface: servosandstack.starsplit.topedge69
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.topedge7:
+    interface: servosandstack.starsplit.topedge7
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.topedge70:
+    interface: servosandstack.starsplit.topedge70
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.topedge71:
+    interface: servosandstack.starsplit.topedge71
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.topedge72:
+    interface: servosandstack.starsplit.topedge72
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.topedge73:
+    interface: servosandstack.starsplit.topedge73
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.topedge74:
+    interface: servosandstack.starsplit.topedge74
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.topedge75:
+    interface: servosandstack.starsplit.topedge75
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.topedge76:
+    interface: servosandstack.starsplit.topedge76
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.topedge77:
+    interface: servosandstack.starsplit.topedge77
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.topedge78:
+    interface: servosandstack.starsplit.topedge78
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.topedge79:
+    interface: servosandstack.starsplit.topedge79
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.topedge8:
+    interface: servosandstack.starsplit.topedge8
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.topedge80:
+    interface: servosandstack.starsplit.topedge80
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.topedge81:
+    interface: servosandstack.starsplit.topedge81
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.topedge82:
+    interface: servosandstack.starsplit.topedge82
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.topedge83:
+    interface: servosandstack.starsplit.topedge83
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.topedge84:
+    interface: servosandstack.starsplit.topedge84
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.topedge85:
+    interface: servosandstack.starsplit.topedge85
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.topedge86:
+    interface: servosandstack.starsplit.topedge86
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.topedge87:
+    interface: servosandstack.starsplit.topedge87
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.topedge88:
+    interface: servosandstack.starsplit.topedge88
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.topedge89:
+    interface: servosandstack.starsplit.topedge89
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.topedge9:
+    interface: servosandstack.starsplit.topedge9
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.topedge90:
+    interface: servosandstack.starsplit.topedge90
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.topedge91:
+    interface: servosandstack.starsplit.topedge91
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.topedge92:
+    interface: servosandstack.starsplit.topedge92
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.topedge93:
+    interface: servosandstack.starsplit.topedge93
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.topedge94:
+    interface: servosandstack.starsplit.topedge94
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.topedge95:
+    interface: servosandstack.starsplit.topedge95
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.topedge96:
+    interface: servosandstack.starsplit.topedge96
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.topedge97:
+    interface: servosandstack.starsplit.topedge97
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.topedge98:
+    interface: servosandstack.starsplit.topedge98
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.starsplit.topedge99:
+    interface: servosandstack.starsplit.topedge99
+    subcomponent: servostackbattery
 parameters:
-  houseboat.depth:
+  depth:
     defaultValue: 50
     spec:
       minValue: 0
       units: mm
       valueType: (float, int)
-  houseboat.height:
+  height:
     defaultValue: 30
     spec:
       minValue: 0
       units: mm
       valueType: (float, int)
-  houseboat.length:
+  length:
     defaultValue: 200
     spec:
       minValue: 0
       units: mm
       valueType: (float, int)
-  houseboat.width:
+  width:
     defaultValue: 60
     spec:
       minValue: 0
       units: mm
       valueType: (float, int)
-  servosandstack.depth:
-    defaultValue: 70
-    spec:
-      minValue: 0
-      units: mm
-      valueType: (float, int)
-  servosandstack.espStack.depth:
-    defaultValue: 70
-    spec:
-      minValue: 0
-      units: mm
-      valueType: (float, int)
-  servosandstack.espStack.lArm._dx:
-    defaultValue: 0
-    spec:
-      minValue: null
-      units: mm
-      valueType: (float, int)
-  servosandstack.espStack.lArm._dy:
-    defaultValue: 0
-    spec:
-      minValue: null
-      units: mm
-      valueType: (float, int)
-  servosandstack.espStack.lArm._dz:
-    defaultValue: 0
-    spec:
-      minValue: null
-      units: mm
-      valueType: (float, int)
-  servosandstack.espStack.lArm._q_a:
-    defaultValue: 1
-    spec:
-      maxValue: 1
-      minValue: -1
-      valueType: (int, float)
-  servosandstack.espStack.lArm._q_i:
-    defaultValue: 0
-    spec:
-      maxValue: 1
-      minValue: -1
-      valueType: (int, float)
-  servosandstack.espStack.lArm._q_j:
-    defaultValue: 0
-    spec:
-      maxValue: 1
-      minValue: -1
-      valueType: (int, float)
-  servosandstack.espStack.lArm._q_k:
-    defaultValue: 0
-    spec:
-      maxValue: 1
-      minValue: -1
-      valueType: (int, float)
-  servosandstack.espStack.rArm._dx:
-    defaultValue: 0
-    spec:
-      minValue: null
-      units: mm
-      valueType: (float, int)
-  servosandstack.espStack.rArm._dy:
-    defaultValue: 0
-    spec:
-      minValue: null
-      units: mm
-      valueType: (float, int)
-  servosandstack.espStack.rArm._dz:
-    defaultValue: 0
-    spec:
-      minValue: null
-      units: mm
-      valueType: (float, int)
-  servosandstack.espStack.rArm._q_a:
-    defaultValue: 1
-    spec:
-      maxValue: 1
-      minValue: -1
-      valueType: (int, float)
-  servosandstack.espStack.rArm._q_i:
-    defaultValue: 0
-    spec:
-      maxValue: 1
-      minValue: -1
-      valueType: (int, float)
-  servosandstack.espStack.rArm._q_j:
-    defaultValue: 0
-    spec:
-      maxValue: 1
-      minValue: -1
-      valueType: (int, float)
-  servosandstack.espStack.rArm._q_k:
-    defaultValue: 0
-    spec:
-      maxValue: 1
-      minValue: -1
-      valueType: (int, float)
-  servosandstack.espStack.stack.brains:
-    defaultValue: esp32stack
-    spec:
-      valueType: str
-  servosandstack.espStack.stack.dy1:
-    defaultValue: 18
-    spec:
-      parameterType: length
-  servosandstack.espStack.stack.length:
-    defaultValue: 61
-    spec:
-      minValue: 0
-      units: mm
-      valueType: (float, int)
-  servosandstack.espStack.width:
-    defaultValue: 70
-    spec:
-      minValue: 0
-      units: mm
-      valueType: (float, int)
-  servosandstack.lServoMount.depth:
-    defaultValue: 24
-    spec:
-      minValue: 0
-      units: mm
-      valueType: (float, int)
-  servosandstack.lServoMount.length:
-    defaultValue: 34
-    spec:
-      minValue: 0
-      units: mm
-      valueType: (float, int)
-  servosandstack.rServoMount.depth:
-    defaultValue: 24
-    spec:
-      minValue: 0
-      units: mm
-      valueType: (float, int)
-  servosandstack.rServoMount.length:
-    defaultValue: 34
-    spec:
-      minValue: 0
-      units: mm
-      valueType: (float, int)
-  servosandstack.width:
-    defaultValue: 90
-    spec:
-      minValue: 0
-      units: mm
-      valueType: (float, int)
-source: ../builders/boat/HouseboatWithServoMountAndStack.py
+source: ../builders/boat/HouseboatWithServoMountAndStackBuilder.py
 subcomponents:
-  houseboat:
+  boat:
     classname: Tug
     kwargs: {}
     parameters:
-      depth:
-        parameter: houseboat.depth
+      depth: 70
       height:
-        parameter: houseboat.height
-      length:
-        parameter: houseboat.length
-      width:
-        parameter: houseboat.width
-  servosandstack:
-    classname: ServoMountAndStack
+        parameter: height
+      length: 228
+      width: 90
+  servostackbattery:
+    classname: ServoStackBatteryMount
     kwargs: {}
-    parameters:
-      depth:
-        parameter: servosandstack.depth
-      espStack.depth:
-        parameter: servosandstack.espStack.depth
-      espStack.lArm._dx:
-        parameter: servosandstack.espStack.lArm._dx
-      espStack.lArm._dy:
-        parameter: servosandstack.espStack.lArm._dy
-      espStack.lArm._dz:
-        parameter: servosandstack.espStack.lArm._dz
-      espStack.lArm._q_a:
-        parameter: servosandstack.espStack.lArm._q_a
-      espStack.lArm._q_i:
-        parameter: servosandstack.espStack.lArm._q_i
-      espStack.lArm._q_j:
-        parameter: servosandstack.espStack.lArm._q_j
-      espStack.lArm._q_k:
-        parameter: servosandstack.espStack.lArm._q_k
-      espStack.rArm._dx:
-        parameter: servosandstack.espStack.rArm._dx
-      espStack.rArm._dy:
-        parameter: servosandstack.espStack.rArm._dy
-      espStack.rArm._dz:
-        parameter: servosandstack.espStack.rArm._dz
-      espStack.rArm._q_a:
-        parameter: servosandstack.espStack.rArm._q_a
-      espStack.rArm._q_i:
-        parameter: servosandstack.espStack.rArm._q_i
-      espStack.rArm._q_j:
-        parameter: servosandstack.espStack.rArm._q_j
-      espStack.rArm._q_k:
-        parameter: servosandstack.espStack.rArm._q_k
-      espStack.stack.brains:
-        parameter: servosandstack.espStack.stack.brains
-      espStack.stack.dy1:
-        parameter: servosandstack.espStack.stack.dy1
-      espStack.stack.length:
-        parameter: servosandstack.espStack.stack.length
-      espStack.width:
-        parameter: servosandstack.espStack.width
-      lServoMount.depth:
-        parameter: servosandstack.lServoMount.depth
-      lServoMount.length:
-        parameter: servosandstack.lServoMount.length
-      rServoMount.depth:
-        parameter: servosandstack.rServoMount.depth
-      rServoMount.length:
-        parameter: servosandstack.rServoMount.length
-      width:
-        parameter: servosandstack.width
+    parameters: {}
diff --git a/rocolib/library/Tug.yaml b/rocolib/library/Tug.yaml
index 7444ea8f2200f4079955451b694a976cad470e16..7bdf7adcb4a938344492deed122efdcefa35e799 100644
--- a/rocolib/library/Tug.yaml
+++ b/rocolib/library/Tug.yaml
@@ -12,7 +12,13 @@ connections:
     - staredge
   - angle: 0
     tabWidth: 10
-interfaces: {}
+interfaces:
+  portedge:
+    interface: portedge
+    subcomponent: boat
+  staredge:
+    interface: staredge
+    subcomponent: boat
 parameters:
   depth:
     defaultValue: 50
diff --git a/rocolib/output/.DS_Store b/rocolib/output/.DS_Store
index b0bc45b8e57b02ade4ea4fa469d257cedd32afee..967ad30a1b66cd1a6df3e9d3b821475062024f7c 100644
Binary files a/rocolib/output/.DS_Store and b/rocolib/output/.DS_Store differ
diff --git a/rocolib/output/BatteryStackMount/graph-anim.svg b/rocolib/output/BatteryStackMount/graph-anim.svg
index ec0f8c28dea49ce47fc8b3ee7d7f4cdf80d74668..d21a25dbb262ed326dee04705f08073b51c79c89 100644
--- a/rocolib/output/BatteryStackMount/graph-anim.svg
+++ b/rocolib/output/BatteryStackMount/graph-anim.svg
@@ -23,18 +23,14 @@
   <line stroke="#000000" x1="61.65427803486147" x2="61.65427803486147" y1="0.0" y2="10.000000000000002"/>
   <line stroke="#000000" x1="88.65427803486148" x2="61.65427803486147" y1="0.0" y2="0.0"/>
   <line stroke="#000000" x1="88.65427803486148" x2="88.65427803486148" y1="10.000000000000002" y2="0.0"/>
-  <line stroke="#888888" x1="84.15427803486146" x2="84.15427803486146" y1="104.50000000000001" y2="107.50000000000001"/>
-  <line stroke="#888888" x1="84.15427803486146" x2="66.15427803486146" y1="107.50000000000001" y2="107.50000000000001"/>
-  <line stroke="#888888" x1="66.15427803486146" x2="66.15427803486146" y1="107.50000000000001" y2="104.50000000000001"/>
-  <line stroke="#888888" x1="66.15427803486146" x2="84.15427803486146" y1="104.50000000000001" y2="104.50000000000001"/>
+  <line stroke="#888888" x1="84.15427803486146" x2="84.15427803486146" y1="101.00000000000001" y2="107.0"/>
+  <line stroke="#888888" x1="84.15427803486146" x2="66.15427803486146" y1="107.0" y2="107.0"/>
+  <line stroke="#888888" x1="66.15427803486146" x2="66.15427803486146" y1="107.0" y2="101.00000000000001"/>
+  <line stroke="#888888" x1="66.15427803486146" x2="84.15427803486146" y1="101.00000000000001" y2="101.00000000000001"/>
   <line stroke="#888888" x1="70.40427803486146" x2="79.90427803486146" y1="156.25000000000003" y2="156.25000000000003"/>
   <line stroke="#888888" x1="79.90427803486146" x2="79.90427803486146" y1="156.25000000000003" y2="156.75"/>
   <line stroke="#888888" x1="79.90427803486146" x2="70.40427803486146" y1="156.75" y2="156.75"/>
   <line stroke="#888888" x1="70.40427803486146" x2="70.40427803486146" y1="156.75" y2="156.25000000000003"/>
-  <line stroke="#888888" x1="84.15427803486146" x2="84.15427803486146" y1="101.00000000000001" y2="104.00000000000001"/>
-  <line stroke="#888888" x1="84.15427803486146" x2="66.15427803486146" y1="104.00000000000001" y2="104.00000000000001"/>
-  <line stroke="#888888" x1="66.15427803486146" x2="66.15427803486146" y1="104.00000000000001" y2="101.00000000000001"/>
-  <line stroke="#888888" x1="66.15427803486146" x2="84.15427803486146" y1="101.00000000000001" y2="101.00000000000001"/>
   <line stroke="#888888" x1="79.65427803486146" x2="79.65427803486146" y1="2.5000000000000004" y2="7.500000000000001"/>
   <line stroke="#888888" x1="79.65427803486146" x2="70.65427803486146" y1="7.500000000000001" y2="7.500000000000001"/>
   <line stroke="#888888" x1="70.65427803486146" x2="70.65427803486146" y1="7.500000000000001" y2="2.5000000000000004"/>
diff --git a/rocolib/output/BatteryStackMount/graph-autofold-default.dxf b/rocolib/output/BatteryStackMount/graph-autofold-default.dxf
index 9dcad2d111378140c62d75809428abdfe3cfe4ce..82502b810d7cbf9d14edb8df39c373034a54c815 100644
--- a/rocolib/output/BatteryStackMount/graph-autofold-default.dxf
+++ b/rocolib/output/BatteryStackMount/graph-autofold-default.dxf
@@ -1383,13 +1383,13 @@ cut
  10
 84.15427803486146
  20
-104.50000000000001
+101.00000000000001
  30
 0.0
  11
 84.15427803486146
  21
-107.50000000000001
+107.0
  31
 0.0
   0
@@ -1401,13 +1401,13 @@ cut
  10
 84.15427803486146
  20
-107.50000000000001
+107.0
  30
 0.0
  11
 66.15427803486146
  21
-107.50000000000001
+107.0
  31
 0.0
   0
@@ -1419,13 +1419,13 @@ cut
  10
 66.15427803486146
  20
-107.50000000000001
+107.0
  30
 0.0
  11
 66.15427803486146
  21
-104.50000000000001
+101.00000000000001
  31
 0.0
   0
@@ -1437,13 +1437,13 @@ cut
  10
 66.15427803486146
  20
-104.50000000000001
+101.00000000000001
  30
 0.0
  11
 84.15427803486146
  21
-104.50000000000001
+101.00000000000001
  31
 0.0
   0
@@ -1525,78 +1525,6 @@ LINE
   8
 cut
  10
-84.15427803486146
- 20
-101.00000000000001
- 30
-0.0
- 11
-84.15427803486146
- 21
-104.00000000000001
- 31
-0.0
-  0
-LINE
- 62
-5
-  8
-cut
- 10
-84.15427803486146
- 20
-104.00000000000001
- 30
-0.0
- 11
-66.15427803486146
- 21
-104.00000000000001
- 31
-0.0
-  0
-LINE
- 62
-5
-  8
-cut
- 10
-66.15427803486146
- 20
-104.00000000000001
- 30
-0.0
- 11
-66.15427803486146
- 21
-101.00000000000001
- 31
-0.0
-  0
-LINE
- 62
-5
-  8
-cut
- 10
-66.15427803486146
- 20
-101.00000000000001
- 30
-0.0
- 11
-84.15427803486146
- 21
-101.00000000000001
- 31
-0.0
-  0
-LINE
- 62
-5
-  8
-cut
- 10
 79.65427803486146
  20
 2.5000000000000004
diff --git a/rocolib/output/BatteryStackMount/graph-autofold-graph.dxf b/rocolib/output/BatteryStackMount/graph-autofold-graph.dxf
index 2eaed7e0de2e51d8cb324216bb058579a4b95c3a..3a80b10e3c5ee4e3903e83b8966bc3d9efa17e54 100644
--- a/rocolib/output/BatteryStackMount/graph-autofold-graph.dxf
+++ b/rocolib/output/BatteryStackMount/graph-autofold-graph.dxf
@@ -1353,13 +1353,13 @@ LINE
  10
 84.15427803486146
  20
-104.50000000000001
+101.00000000000001
  30
 0.0
  11
 84.15427803486146
  21
-107.50000000000001
+107.0
  31
 0.0
   0
@@ -1371,13 +1371,13 @@ LINE
  10
 84.15427803486146
  20
-107.50000000000001
+107.0
  30
 0.0
  11
 66.15427803486146
  21
-107.50000000000001
+107.0
  31
 0.0
   0
@@ -1389,13 +1389,13 @@ LINE
  10
 66.15427803486146
  20
-107.50000000000001
+107.0
  30
 0.0
  11
 66.15427803486146
  21
-104.50000000000001
+101.00000000000001
  31
 0.0
   0
@@ -1407,13 +1407,13 @@ LINE
  10
 66.15427803486146
  20
-104.50000000000001
+101.00000000000001
  30
 0.0
  11
 84.15427803486146
  21
-104.50000000000001
+101.00000000000001
  31
 0.0
   0
@@ -1495,78 +1495,6 @@ LINE
   8
 0
  10
-84.15427803486146
- 20
-101.00000000000001
- 30
-0.0
- 11
-84.15427803486146
- 21
-104.00000000000001
- 31
-0.0
-  0
-LINE
- 62
-5
-  8
-0
- 10
-84.15427803486146
- 20
-104.00000000000001
- 30
-0.0
- 11
-66.15427803486146
- 21
-104.00000000000001
- 31
-0.0
-  0
-LINE
- 62
-5
-  8
-0
- 10
-66.15427803486146
- 20
-104.00000000000001
- 30
-0.0
- 11
-66.15427803486146
- 21
-101.00000000000001
- 31
-0.0
-  0
-LINE
- 62
-5
-  8
-0
- 10
-66.15427803486146
- 20
-101.00000000000001
- 30
-0.0
- 11
-84.15427803486146
- 21
-101.00000000000001
- 31
-0.0
-  0
-LINE
- 62
-5
-  8
-0
- 10
 79.65427803486146
  20
 2.5000000000000004
diff --git a/rocolib/output/BatteryStackMount/graph-lasercutter.svg b/rocolib/output/BatteryStackMount/graph-lasercutter.svg
index a31b96e7d4f984305f236990100bb8b3cb05ec1e..92b44d69c5204306605edcef2955dd8bded2ad2b 100644
--- a/rocolib/output/BatteryStackMount/graph-lasercutter.svg
+++ b/rocolib/output/BatteryStackMount/graph-lasercutter.svg
@@ -23,18 +23,14 @@
   <line stroke="#000000" x1="61.65427803486147" x2="61.65427803486147" y1="0.0" y2="10.000000000000002"/>
   <line stroke="#000000" x1="88.65427803486148" x2="61.65427803486147" y1="0.0" y2="0.0"/>
   <line stroke="#000000" x1="88.65427803486148" x2="88.65427803486148" y1="10.000000000000002" y2="0.0"/>
-  <line stroke="#888888" x1="84.15427803486146" x2="84.15427803486146" y1="104.50000000000001" y2="107.50000000000001"/>
-  <line stroke="#888888" x1="84.15427803486146" x2="66.15427803486146" y1="107.50000000000001" y2="107.50000000000001"/>
-  <line stroke="#888888" x1="66.15427803486146" x2="66.15427803486146" y1="107.50000000000001" y2="104.50000000000001"/>
-  <line stroke="#888888" x1="66.15427803486146" x2="84.15427803486146" y1="104.50000000000001" y2="104.50000000000001"/>
+  <line stroke="#888888" x1="84.15427803486146" x2="84.15427803486146" y1="101.00000000000001" y2="107.0"/>
+  <line stroke="#888888" x1="84.15427803486146" x2="66.15427803486146" y1="107.0" y2="107.0"/>
+  <line stroke="#888888" x1="66.15427803486146" x2="66.15427803486146" y1="107.0" y2="101.00000000000001"/>
+  <line stroke="#888888" x1="66.15427803486146" x2="84.15427803486146" y1="101.00000000000001" y2="101.00000000000001"/>
   <line stroke="#888888" x1="70.40427803486146" x2="79.90427803486146" y1="156.25000000000003" y2="156.25000000000003"/>
   <line stroke="#888888" x1="79.90427803486146" x2="79.90427803486146" y1="156.25000000000003" y2="156.75"/>
   <line stroke="#888888" x1="79.90427803486146" x2="70.40427803486146" y1="156.75" y2="156.75"/>
   <line stroke="#888888" x1="70.40427803486146" x2="70.40427803486146" y1="156.75" y2="156.25000000000003"/>
-  <line stroke="#888888" x1="84.15427803486146" x2="84.15427803486146" y1="101.00000000000001" y2="104.00000000000001"/>
-  <line stroke="#888888" x1="84.15427803486146" x2="66.15427803486146" y1="104.00000000000001" y2="104.00000000000001"/>
-  <line stroke="#888888" x1="66.15427803486146" x2="66.15427803486146" y1="104.00000000000001" y2="101.00000000000001"/>
-  <line stroke="#888888" x1="66.15427803486146" x2="84.15427803486146" y1="101.00000000000001" y2="101.00000000000001"/>
   <line stroke="#888888" x1="79.65427803486146" x2="79.65427803486146" y1="2.5000000000000004" y2="7.500000000000001"/>
   <line stroke="#888888" x1="79.65427803486146" x2="70.65427803486146" y1="7.500000000000001" y2="7.500000000000001"/>
   <line stroke="#888888" x1="70.65427803486146" x2="70.65427803486146" y1="7.500000000000001" y2="2.5000000000000004"/>
diff --git a/rocolib/output/BatteryStackMount/graph-model.png b/rocolib/output/BatteryStackMount/graph-model.png
index 17468a3d0cf0059759732c0aa378c99227993aa8..798b2c16e088a505254441a668e501ab6f8f65d6 100644
Binary files a/rocolib/output/BatteryStackMount/graph-model.png and b/rocolib/output/BatteryStackMount/graph-model.png differ
diff --git a/rocolib/output/BatteryStackMount/graph-model.stl b/rocolib/output/BatteryStackMount/graph-model.stl
index f5373cfc0e9e28a7e5290aef4f5a3dc783150310..4dd733b6bdb1c7b7d6a88bda93ba7aec59e826a3 100644
--- a/rocolib/output/BatteryStackMount/graph-model.stl
+++ b/rocolib/output/BatteryStackMount/graph-model.stl
@@ -57,100 +57,72 @@ endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0428 -0.0300 -0.0120
-vertex -0.0361 -0.0300 0.0011
-vertex -0.0489 -0.0300 0.0138
-endloop
-endfacet
-facet normal 0 0 0
-outer loop
-vertex -0.0361 -0.0300 0.0011
+vertex -0.0619 -0.0300 0.0071
 vertex -0.0428 -0.0300 -0.0120
 vertex -0.0308 -0.0300 0.0000
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0619 -0.0300 0.0071
-vertex -0.0489 -0.0300 0.0138
+vertex -0.0308 -0.0300 0.0000
 vertex -0.0499 -0.0300 0.0191
-endloop
-endfacet
-facet normal 0 0 0
-outer loop
-vertex -0.0489 -0.0300 0.0138
 vertex -0.0619 -0.0300 0.0071
-vertex -0.0428 -0.0300 -0.0120
-endloop
-endfacet
-facet normal 0 0 0
-outer loop
-vertex -0.0308 -0.0300 0.0000
-vertex -0.0340 -0.0300 0.0032
-vertex -0.0361 -0.0300 0.0011
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
+vertex -0.0340 -0.0270 0.0032
+vertex -0.0467 -0.0270 0.0159
 vertex -0.0467 -0.0300 0.0159
-vertex -0.0499 -0.0300 0.0191
-vertex -0.0489 -0.0300 0.0138
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
 vertex -0.0308 -0.0300 0.0000
-vertex -0.0340 -0.0295 0.0032
-vertex -0.0467 -0.0295 0.0159
+vertex -0.0340 -0.0270 0.0032
+vertex -0.0340 -0.0300 0.0032
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0340 -0.0295 0.0032
-vertex -0.0308 -0.0300 0.0000
-vertex -0.0340 -0.0265 0.0032
+vertex -0.0340 -0.0270 0.0032
+vertex -0.0308 0.0300 0.0000
+vertex -0.0499 0.0300 0.0191
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0499 -0.0300 0.0191
-vertex -0.0467 -0.0295 0.0159
-vertex -0.0467 -0.0265 0.0159
+vertex -0.0308 0.0300 0.0000
+vertex -0.0340 -0.0270 0.0032
+vertex -0.0308 -0.0300 0.0000
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0467 -0.0295 0.0159
+vertex -0.0467 -0.0270 0.0159
+vertex -0.0499 0.0300 0.0191
 vertex -0.0499 -0.0300 0.0191
-vertex -0.0308 -0.0300 0.0000
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0340 -0.0265 0.0032
-vertex -0.0308 0.0300 0.0000
 vertex -0.0499 0.0300 0.0191
+vertex -0.0467 -0.0270 0.0159
+vertex -0.0340 -0.0270 0.0032
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0308 0.0300 0.0000
-vertex -0.0340 -0.0265 0.0032
-vertex -0.0308 -0.0300 0.0000
+vertex -0.0340 -0.0270 0.0032
+vertex -0.0467 -0.0300 0.0159
+vertex -0.0340 -0.0300 0.0032
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0467 -0.0265 0.0159
-vertex -0.0499 0.0300 0.0191
 vertex -0.0499 -0.0300 0.0191
-endloop
-endfacet
-facet normal 0 0 0
-outer loop
-vertex -0.0499 0.0300 0.0191
-vertex -0.0467 -0.0265 0.0159
-vertex -0.0340 -0.0265 0.0032
+vertex -0.0467 -0.0300 0.0159
+vertex -0.0467 -0.0270 0.0159
 endloop
 endfacet
 facet normal 0 0 0
diff --git a/rocolib/output/BatteryStackMount/graph-silhouette.dxf b/rocolib/output/BatteryStackMount/graph-silhouette.dxf
index 08016191eeab6e9910ebc3117edf9ec8f25b12ed..9f91d3170c681bbc7d715f83ce23cdb6ce2e1977 100644
--- a/rocolib/output/BatteryStackMount/graph-silhouette.dxf
+++ b/rocolib/output/BatteryStackMount/graph-silhouette.dxf
@@ -1353,13 +1353,13 @@ LINE
  10
 84.15427803486146
  20
-104.50000000000001
+101.00000000000001
  30
 0.0
  11
 84.15427803486146
  21
-107.50000000000001
+107.0
  31
 0.0
   0
@@ -1371,13 +1371,13 @@ LINE
  10
 84.15427803486146
  20
-107.50000000000001
+107.0
  30
 0.0
  11
 66.15427803486146
  21
-107.50000000000001
+107.0
  31
 0.0
   0
@@ -1389,13 +1389,13 @@ LINE
  10
 66.15427803486146
  20
-107.50000000000001
+107.0
  30
 0.0
  11
 66.15427803486146
  21
-104.50000000000001
+101.00000000000001
  31
 0.0
   0
@@ -1407,13 +1407,13 @@ LINE
  10
 66.15427803486146
  20
-104.50000000000001
+101.00000000000001
  30
 0.0
  11
 84.15427803486146
  21
-104.50000000000001
+101.00000000000001
  31
 0.0
   0
@@ -1495,78 +1495,6 @@ LINE
   8
 0
  10
-84.15427803486146
- 20
-101.00000000000001
- 30
-0.0
- 11
-84.15427803486146
- 21
-104.00000000000001
- 31
-0.0
-  0
-LINE
- 62
-5
-  8
-0
- 10
-84.15427803486146
- 20
-104.00000000000001
- 30
-0.0
- 11
-66.15427803486146
- 21
-104.00000000000001
- 31
-0.0
-  0
-LINE
- 62
-5
-  8
-0
- 10
-66.15427803486146
- 20
-104.00000000000001
- 30
-0.0
- 11
-66.15427803486146
- 21
-101.00000000000001
- 31
-0.0
-  0
-LINE
- 62
-5
-  8
-0
- 10
-66.15427803486146
- 20
-101.00000000000001
- 30
-0.0
- 11
-84.15427803486146
- 21
-101.00000000000001
- 31
-0.0
-  0
-LINE
- 62
-5
-  8
-0
- 10
 79.65427803486146
  20
 2.5000000000000004
diff --git a/rocolib/output/BatteryStackMount/tree.png b/rocolib/output/BatteryStackMount/tree.png
index 88ef7ac20d1a01cbcad82f631f290f4b8696c29e..c17874fa912ff0856db8ebc0886073ea6e701d1e 100644
Binary files a/rocolib/output/BatteryStackMount/tree.png and b/rocolib/output/BatteryStackMount/tree.png differ
diff --git a/rocolib/output/BoatBase/graph-anim.svg b/rocolib/output/BoatBase/graph-anim.svg
index cf27eef3f1fc46f6372ed4e51681a9c497635246..c01a7332bed54d727115d02f9a2d5023fc2e9038 100644
--- a/rocolib/output/BoatBase/graph-anim.svg
+++ b/rocolib/output/BoatBase/graph-anim.svg
@@ -1,80 +1,82 @@
 <?xml version="1.0" encoding="utf-8" ?>
-<svg xmlns="http://www.w3.org/2000/svg" xmlns:ev="http://www.w3.org/2001/xml-events" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="full" height="140.000000mm" version="1.1" viewBox="0.000000 0.000000 103.333333 140.000000" width="103.333333mm">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:ev="http://www.w3.org/2001/xml-events" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="full" height="200.851648mm" version="1.1" viewBox="0.000000 0.000000 103.333333 200.851648" width="103.333333mm">
   <defs/>
-  <line opacity="0.5" stroke="#0000ff" x1="76.6666666666667" x2="76.6666666666667" y1="20.000000000000004" y2="120.00000000000001"/>
-  <line opacity="0.5" stroke="#0000ff" x1="26.666666666666696" x2="26.666666666666696" y1="20.000000000000004" y2="120.00000000000001"/>
-  <line opacity="0.5" stroke="#0000ff" x1="51.66666666666669" x2="26.666666666666696" y1="20.000000000000004" y2="20.000000000000004"/>
-  <line opacity="0.5" stroke="#0000ff" x1="76.6666666666667" x2="51.66666666666669" y1="20.000000000000004" y2="20.000000000000004"/>
-  <line stroke="#000000" x1="46.6666666666667" x2="26.666666666666696" y1="0.0" y2="0.0"/>
-  <line stroke="#000000" x1="51.66666666666671" x2="46.6666666666667" y1="0.0" y2="0.0"/>
-  <line opacity="1.0" stroke="#0000ff" x1="26.666666666666696" x2="26.666666666666696" y1="20.000000000000004" y2="0.0"/>
-  <line opacity="1.0" stroke="#ff0000" x1="26.666666666666696" x2="6.666666666666694" y1="20.000000000000004" y2="0.0"/>
-  <line stroke="#000000" x1="26.666666666666696" x2="6.666666666666694" y1="0.0" y2="0.0"/>
-  <line opacity="0.9666666666666667" stroke="#ff0000" x1="6.666666666666694" x2="6.666666666666701" y1="19.999999999999996" y2="0.0"/>
-  <line opacity="0.5" stroke="#0000ff" x1="26.666666666666696" x2="6.666666666666694" y1="20.000000000000004" y2="19.999999999999996"/>
-  <line stroke="#000000" x1="2.8421709430404014e-14" x2="6.666666666666694" y1="19.999999999999996" y2="19.999999999999996"/>
-  <line stroke="#000000" x1="2.8421709430404014e-14" x2="2.8421709430404014e-14" y1="0.0" y2="19.999999999999996"/>
-  <line stroke="#000000" x1="6.666666666666694" x2="2.8421709430404014e-14" y1="0.0" y2="0.0"/>
-  <line stroke="#000000" x1="6.666666666666694" x2="6.666666666666665" y1="19.999999999999996" y2="120.0"/>
-  <line opacity="0.5" stroke="#0000ff" x1="6.666666666666671" x2="26.66666666666667" y1="119.99999999999999" y2="120.0"/>
-  <line opacity="1.0" stroke="#ff0000" x1="6.666666666666665" x2="26.66666666666667" y1="140.0" y2="120.0"/>
-  <line opacity="0.9666666666666667" stroke="#ff0000" x1="6.666666666666665" x2="6.666666666666671" y1="140.0" y2="119.99999999999999"/>
-  <line stroke="#000000" x1="6.666666666666671" x2="26.666666666666664" y1="140.0" y2="140.00000000000003"/>
-  <line opacity="1.0" stroke="#0000ff" x1="26.666666666666664" x2="26.66666666666667" y1="140.00000000000003" y2="120.0"/>
-  <line stroke="#000000" x1="46.66666666666665" x2="51.66666666666666" y1="140.00000000000003" y2="140.00000000000003"/>
-  <line stroke="#000000" x1="26.66666666666666" x2="46.66666666666665" y1="140.0" y2="140.00000000000003"/>
-  <line opacity="0.5" stroke="#0000ff" x1="26.66666666666667" x2="51.666666666666664" y1="120.0" y2="120.00000000000001"/>
-  <line opacity="0.5" stroke="#0000ff" x1="51.666666666666664" x2="76.66666666666667" y1="120.00000000000001" y2="120.00000000000003"/>
-  <line stroke="#000000" x1="56.66666666666666" x2="76.66666666666666" y1="140.00000000000003" y2="140.00000000000003"/>
-  <line stroke="#000000" x1="51.66666666666666" x2="56.66666666666666" y1="140.00000000000003" y2="140.00000000000003"/>
-  <line opacity="1.0" stroke="#0000ff" x1="76.66666666666667" x2="76.66666666666666" y1="120.00000000000003" y2="140.00000000000003"/>
-  <line opacity="1.0" stroke="#ff0000" x1="76.66666666666667" x2="96.66666666666664" y1="120.00000000000003" y2="140.00000000000003"/>
-  <line stroke="#000000" x1="76.66666666666666" x2="96.66666666666664" y1="140.00000000000003" y2="140.00000000000003"/>
-  <line opacity="0.9666666666666667" stroke="#ff0000" x1="96.66666666666666" x2="96.66666666666664" y1="120.00000000000004" y2="140.00000000000003"/>
-  <line opacity="0.5" stroke="#0000ff" x1="76.66666666666667" x2="96.66666666666666" y1="120.00000000000003" y2="120.00000000000004"/>
-  <line stroke="#000000" x1="103.33333333333333" x2="96.66666666666666" y1="120.00000000000004" y2="120.00000000000004"/>
-  <line stroke="#000000" x1="103.33333333333331" x2="103.33333333333333" y1="140.00000000000003" y2="120.00000000000004"/>
-  <line stroke="#000000" x1="96.66666666666664" x2="103.33333333333331" y1="140.00000000000003" y2="140.00000000000003"/>
-  <line stroke="#000000" x1="96.66666666666666" x2="96.66666666666674" y1="120.00000000000004" y2="20.00000000000006"/>
-  <line opacity="0.5" stroke="#0000ff" x1="96.66666666666673" x2="76.66666666666674" y1="20.00000000000006" y2="20.000000000000043"/>
-  <line opacity="1.0" stroke="#ff0000" x1="96.66666666666676" x2="76.66666666666674" y1="5.684341886080803e-14" y2="20.000000000000043"/>
-  <line opacity="0.9666666666666667" stroke="#ff0000" x1="96.66666666666676" x2="96.66666666666673" y1="5.684341886080803e-14" y2="20.00000000000006"/>
-  <line stroke="#000000" x1="96.66666666666676" x2="76.66666666666676" y1="7.105427357601003e-14" y2="5.684341886080803e-14"/>
-  <line opacity="1.0" stroke="#0000ff" x1="76.66666666666676" x2="76.66666666666674" y1="5.684341886080803e-14" y2="20.000000000000043"/>
-  <line stroke="#000000" x1="56.66666666666677" x2="51.66666666666677" y1="2.8421709430404014e-14" y2="2.8421709430404014e-14"/>
-  <line stroke="#000000" x1="76.66666666666676" x2="56.66666666666677" y1="5.684341886080803e-14" y2="2.8421709430404014e-14"/>
-  <line stroke="#000000" x1="103.33333333333341" x2="96.66666666666676" y1="5.684341886080803e-14" y2="5.684341886080803e-14"/>
-  <line stroke="#000000" x1="103.33333333333339" x2="103.33333333333341" y1="20.00000000000006" y2="5.684341886080803e-14"/>
-  <line stroke="#000000" x1="96.66666666666673" x2="103.33333333333339" y1="20.00000000000005" y2="20.00000000000006"/>
-  <line stroke="#000000" x1="0.0" x2="6.666666666666665" y1="140.0" y2="140.0"/>
-  <line stroke="#000000" x1="7.105427357601003e-15" x2="0.0" y1="119.99999999999999" y2="140.0"/>
-  <line stroke="#000000" x1="6.666666666666671" x2="7.105427357601003e-15" y1="119.99999999999999" y2="119.99999999999999"/>
-  <line stroke="#888888" x1="40.25000000000003" x2="33.083333333333364" y1="5.25" y2="5.25"/>
-  <line stroke="#888888" x1="33.083333333333364" x2="33.083333333333364" y1="5.25" y2="4.750000000000001"/>
-  <line stroke="#888888" x1="33.083333333333364" x2="40.25000000000003" y1="4.750000000000001" y2="4.750000000000001"/>
-  <line stroke="#888888" x1="40.25000000000003" x2="40.25000000000003" y1="4.750000000000001" y2="5.25"/>
-  <line stroke="#888888" x1="1.666666666666693" x2="5.000000000000028" y1="6.666666666666665" y2="6.666666666666665"/>
-  <line stroke="#888888" x1="5.000000000000028" x2="5.000000000000028" y1="6.666666666666665" y2="13.33333333333333"/>
-  <line stroke="#888888" x1="5.000000000000028" x2="1.666666666666693" y1="13.33333333333333" y2="13.33333333333333"/>
-  <line stroke="#888888" x1="33.08333333333333" x2="40.24999999999999" y1="134.75000000000003" y2="134.75000000000003"/>
-  <line stroke="#888888" x1="40.24999999999999" x2="40.24999999999999" y1="134.75000000000003" y2="135.25000000000003"/>
-  <line stroke="#888888" x1="40.24999999999999" x2="33.08333333333333" y1="135.25000000000003" y2="135.25000000000003"/>
-  <line stroke="#888888" x1="33.08333333333333" x2="33.08333333333333" y1="135.25000000000003" y2="134.75000000000003"/>
-  <line stroke="#888888" x1="63.08333333333332" x2="70.24999999999999" y1="134.75000000000003" y2="134.75000000000003"/>
-  <line stroke="#888888" x1="70.24999999999999" x2="70.25" y1="134.75000000000003" y2="135.25000000000003"/>
-  <line stroke="#888888" x1="70.25" x2="63.08333333333332" y1="135.25000000000003" y2="135.25000000000003"/>
-  <line stroke="#888888" x1="63.08333333333332" x2="63.08333333333332" y1="135.25000000000003" y2="134.75000000000003"/>
-  <line stroke="#888888" x1="101.66666666666666" x2="98.33333333333333" y1="133.33333333333334" y2="133.33333333333334"/>
-  <line stroke="#888888" x1="98.33333333333333" x2="98.33333333333333" y1="133.33333333333334" y2="126.6666666666667"/>
-  <line stroke="#888888" x1="98.33333333333333" x2="101.66666666666666" y1="126.6666666666667" y2="126.6666666666667"/>
-  <line stroke="#888888" x1="70.25000000000009" x2="63.08333333333343" y1="5.2500000000000435" y2="5.250000000000029"/>
-  <line stroke="#888888" x1="63.08333333333343" x2="63.08333333333343" y1="5.250000000000029" y2="4.750000000000029"/>
-  <line stroke="#888888" x1="63.08333333333343" x2="70.25000000000009" y1="4.750000000000029" y2="4.7500000000000435"/>
-  <line stroke="#888888" x1="70.25000000000009" x2="70.25000000000009" y1="4.7500000000000435" y2="5.2500000000000435"/>
-  <line stroke="#888888" x1="101.66666666666674" x2="98.33333333333341" y1="13.333333333333387" y2="13.333333333333387"/>
-  <line stroke="#888888" x1="98.33333333333341" x2="98.33333333333341" y1="13.333333333333387" y2="6.666666666666722"/>
-  <line stroke="#888888" x1="98.33333333333341" x2="101.66666666666674" y1="6.666666666666722" y2="6.666666666666722"/>
-  <line stroke="#888888" x1="1.6666666666666714" x2="5.000000000000008" y1="126.66666666666666" y2="126.66666666666666"/>
-  <line stroke="#888888" x1="5.000000000000008" x2="5.000000000000008" y1="126.66666666666666" y2="133.33333333333331"/>
-  <line stroke="#888888" x1="5.000000000000008" x2="1.6666666666666714" y1="133.33333333333331" y2="133.33333333333331"/>
+  <line opacity="0.5" stroke="#0000ff" x1="76.66666666666664" x2="76.66666666666664" y1="53.851648000000004" y2="180.85164800000004"/>
+  <line opacity="0.5" stroke="#0000ff" x1="26.666666666666632" x2="26.666666666666632" y1="53.851648000000004" y2="180.85164800000004"/>
+  <line opacity="0.12111894159084342" stroke="#0000ff" x1="51.666666666666636" x2="26.666666666666632" y1="53.851648000000004" y2="53.851648000000004"/>
+  <line opacity="0.12111894159084342" stroke="#0000ff" x1="76.66666666666664" x2="51.666666666666636" y1="53.851648000000004" y2="53.851648000000004"/>
+  <line opacity="0.4468854644851019" stroke="#0000ff" x1="51.666666666666636" x2="26.666666666666632" y1="-7.134504187433777e-08" y2="53.851648000000004"/>
+  <line stroke="#000000" x1="18.179873535340967" x2="12.423270101003796" y1="33.97156470018156" y2="39.81150361779138"/>
+  <line stroke="#000000" x1="51.66666666666664" x2="18.179873535340967" y1="-7.13450560851925e-08" y2="33.97156470018156"/>
+  <line opacity="1.0" stroke="#0000ff" x1="26.666666666666632" x2="12.423270101003796" y1="53.851648000000004" y2="39.81150361779138"/>
+  <line opacity="1.0" stroke="#ff0000" x1="26.666666666666636" x2="6.66666666666663" y1="53.851648000000004" y2="45.651442535401195"/>
+  <line stroke="#000000" x1="12.423270101003801" x2="6.66666666666663" y1="39.81150361779138" y2="45.651442535401195"/>
+  <line opacity="0.9666666666666667" stroke="#ff0000" x1="6.666666666666637" x2="6.666666666666637" y1="53.851648000000004" y2="45.651442535401195"/>
+  <line opacity="0.1475836176504332" stroke="#0000ff" x1="26.666666666666632" x2="6.666666666666637" y1="53.851648000000004" y2="53.851648000000004"/>
+  <line stroke="#000000" x1="3.9332648451337" x2="6.666666666666637" y1="53.85164800000002" y2="53.85164800000002"/>
+  <line stroke="#000000" x1="3.9332648451337" x2="3.9332648451337" y1="45.65144253540121" y2="53.85164800000002"/>
+  <line stroke="#000000" x1="6.666666666666637" x2="3.9332648451337" y1="45.65144253540121" y2="45.65144253540121"/>
+  <line stroke="#000000" x1="6.66666666666663" x2="6.666666666666658" y1="53.851648000000004" y2="180.85164800000004"/>
+  <line opacity="0.5" stroke="#0000ff" x1="6.666666666666665" x2="26.666666666666664" y1="180.85164800000004" y2="180.85164800000004"/>
+  <line opacity="1.0" stroke="#ff0000" x1="6.666666666666671" x2="26.666666666666668" y1="200.85164800000004" y2="180.85164800000004"/>
+  <line opacity="0.9666666666666667" stroke="#ff0000" x1="6.666666666666671" x2="6.666666666666671" y1="200.85164800000004" y2="180.85164800000004"/>
+  <line stroke="#000000" x1="6.666666666666671" x2="26.666666666666668" y1="200.85164800000004" y2="200.85164800000004"/>
+  <line opacity="1.0" stroke="#0000ff" x1="26.666666666666668" x2="26.666666666666668" y1="200.85164800000004" y2="180.85164800000004"/>
+  <line stroke="#000000" x1="46.66666666666666" x2="51.666666666666664" y1="200.85164800000004" y2="200.85164800000004"/>
+  <line stroke="#000000" x1="26.666666666666664" x2="46.66666666666666" y1="200.85164800000004" y2="200.85164800000004"/>
+  <line opacity="0.5" stroke="#0000ff" x1="26.666666666666664" x2="51.666666666666664" y1="180.85164800000004" y2="180.85164800000004"/>
+  <line opacity="0.5" stroke="#0000ff" x1="51.666666666666664" x2="76.66666666666667" y1="180.85164800000004" y2="180.85164800000004"/>
+  <line stroke="#000000" x1="56.666666666666664" x2="76.66666666666667" y1="200.85164800000004" y2="200.85164800000004"/>
+  <line stroke="#000000" x1="51.666666666666664" x2="56.666666666666664" y1="200.85164800000004" y2="200.85164800000004"/>
+  <line opacity="1.0" stroke="#0000ff" x1="76.66666666666667" x2="76.66666666666667" y1="180.85164800000004" y2="200.85164800000004"/>
+  <line opacity="1.0" stroke="#ff0000" x1="76.66666666666667" x2="96.66666666666666" y1="180.85164800000004" y2="200.85164800000004"/>
+  <line stroke="#000000" x1="76.66666666666667" x2="96.66666666666666" y1="200.85164800000004" y2="200.85164800000004"/>
+  <line opacity="0.9666666666666667" stroke="#ff0000" x1="96.66666666666666" x2="96.66666666666666" y1="180.851648" y2="200.851648"/>
+  <line opacity="0.5" stroke="#0000ff" x1="76.66666666666667" x2="96.66666666666666" y1="180.851648" y2="180.851648"/>
+  <line stroke="#000000" x1="103.33333333333333" x2="96.66666666666666" y1="180.85164800000004" y2="180.85164800000004"/>
+  <line stroke="#000000" x1="103.33333333333333" x2="103.33333333333333" y1="200.85164800000004" y2="180.85164800000004"/>
+  <line stroke="#000000" x1="96.66666666666666" x2="103.33333333333333" y1="200.85164800000004" y2="200.85164800000004"/>
+  <line stroke="#000000" x1="96.66666666666666" x2="96.66666666666666" y1="180.85164800000004" y2="53.85164800000003"/>
+  <line opacity="0.1475836176504332" stroke="#0000ff" x1="96.66666666666666" x2="76.66666666666667" y1="53.85164800000003" y2="53.85164800000003"/>
+  <line opacity="1.0" stroke="#ff0000" x1="96.66666666666666" x2="76.66666666666667" y1="45.65144253540122" y2="53.85164800000003"/>
+  <line opacity="0.9666666666666667" stroke="#ff0000" x1="96.66666666666666" x2="96.66666666666666" y1="45.65144253540122" y2="53.85164800000003"/>
+  <line stroke="#000000" x1="96.66666666666666" x2="90.9100632323295" y1="45.65144253540122" y2="39.81150361779142"/>
+  <line opacity="1.0" stroke="#0000ff" x1="90.9100632323295" x2="76.66666666666667" y1="39.81150361779142" y2="53.85164800000003"/>
+  <line opacity="0.4468854644851019" stroke="#0000ff" x1="51.66666666666667" x2="76.66666666666667" y1="-7.134499924177363e-08" y2="53.85164800000003"/>
+  <line stroke="#000000" x1="85.15345979799233" x2="51.66666666666667" y1="33.9715647001816" y2="-7.134499924177363e-08"/>
+  <line stroke="#000000" x1="90.9100632323295" x2="85.15345979799233" y1="39.81150361779141" y2="33.9715647001816"/>
+  <line stroke="#000000" x1="99.40006848819961" x2="96.66666666666666" y1="45.65144253540122" y2="45.65144253540122"/>
+  <line stroke="#000000" x1="99.40006848819961" x2="99.40006848819961" y1="53.85164800000003" y2="45.65144253540122"/>
+  <line stroke="#000000" x1="96.66666666666666" x2="99.40006848819961" y1="53.85164800000003" y2="53.85164800000003"/>
+  <line stroke="#000000" x1="7.105427357601003e-15" x2="6.666666666666671" y1="200.85164800000004" y2="200.85164800000004"/>
+  <line stroke="#000000" x1="0.0" x2="7.105427357601003e-15" y1="180.85164800000004" y2="200.85164800000004"/>
+  <line stroke="#000000" x1="6.666666666666665" x2="0.0" y1="180.85164800000004" y2="180.85164800000004"/>
+  <line stroke="#888888" x1="18.074534715146097" x2="15.804663294145152" y1="37.35482121234262" y2="39.65755243235412"/>
+  <line stroke="#888888" x1="15.804663294145152" x2="15.448578380003584" y1="39.65755243235412" y2="39.306548822798916"/>
+  <line stroke="#888888" x1="15.448578380003584" x2="17.71844980100452" y1="39.306548822798916" y2="37.003817602787414"/>
+  <line stroke="#888888" x1="17.71844980100452" x2="18.074534715146097" y1="37.003817602787414" y2="37.35482121234262"/>
+  <line stroke="#888888" x1="4.616615300516934" x2="5.983316211283403" y1="48.384844356934146" y2="48.384844356934146"/>
+  <line stroke="#888888" x1="5.983316211283403" x2="5.983316211283403" y1="48.384844356934146" y2="51.118246178467075"/>
+  <line stroke="#888888" x1="5.983316211283403" x2="4.616615300516934" y1="51.118246178467075" y2="51.118246178467075"/>
+  <line stroke="#888888" x1="33.08333333333333" x2="40.24999999999999" y1="195.60164800000004" y2="195.60164800000004"/>
+  <line stroke="#888888" x1="40.24999999999999" x2="40.24999999999999" y1="195.60164800000004" y2="196.10164800000004"/>
+  <line stroke="#888888" x1="40.24999999999999" x2="33.08333333333333" y1="196.10164800000004" y2="196.10164800000004"/>
+  <line stroke="#888888" x1="33.08333333333333" x2="33.08333333333333" y1="196.10164800000004" y2="195.60164800000004"/>
+  <line stroke="#888888" x1="63.08333333333333" x2="70.25" y1="195.60164800000004" y2="195.60164800000004"/>
+  <line stroke="#888888" x1="70.25" x2="70.25" y1="195.60164800000004" y2="196.10164800000004"/>
+  <line stroke="#888888" x1="70.25" x2="63.08333333333333" y1="196.10164800000004" y2="196.10164800000004"/>
+  <line stroke="#888888" x1="63.08333333333333" x2="63.08333333333333" y1="196.10164800000004" y2="195.60164800000004"/>
+  <line stroke="#888888" x1="101.66666666666666" x2="98.33333333333333" y1="194.18498133333335" y2="194.18498133333335"/>
+  <line stroke="#888888" x1="98.33333333333333" x2="98.33333333333333" y1="194.18498133333335" y2="187.5183146666667"/>
+  <line stroke="#888888" x1="98.33333333333333" x2="101.66666666666666" y1="187.5183146666667" y2="187.5183146666667"/>
+  <line stroke="#888888" x1="87.52867003918816" x2="85.25879861818721" y1="39.65755243235416" y2="37.35482121234264"/>
+  <line stroke="#888888" x1="85.25879861818721" x2="85.61488353232878" y1="37.35482121234264" y2="37.00381760278744"/>
+  <line stroke="#888888" x1="85.61488353232878" x2="87.88475495332972" y1="37.00381760278744" y2="39.306548822798945"/>
+  <line stroke="#888888" x1="87.88475495332972" x2="87.52867003918816" y1="39.306548822798945" y2="39.65755243235416"/>
+  <line stroke="#888888" x1="98.71671803281637" x2="97.3500171220499" y1="51.11824617846709" y2="51.11824617846709"/>
+  <line stroke="#888888" x1="97.3500171220499" x2="97.3500171220499" y1="51.11824617846709" y2="48.38484435693416"/>
+  <line stroke="#888888" x1="97.3500171220499" x2="98.71671803281637" y1="48.38484435693416" y2="48.38484435693416"/>
+  <line stroke="#888888" x1="1.6666666666666645" x2="5.000000000000001" y1="187.5183146666667" y2="187.5183146666667"/>
+  <line stroke="#888888" x1="5.000000000000001" x2="5.000000000000001" y1="187.5183146666667" y2="194.18498133333335"/>
+  <line stroke="#888888" x1="5.000000000000001" x2="1.6666666666666645" y1="194.18498133333335" y2="194.18498133333335"/>
 </svg>
diff --git a/rocolib/output/BoatBase/graph-autofold-default.dxf b/rocolib/output/BoatBase/graph-autofold-default.dxf
index c73c7385e4edda75e853e69db6a2725393bb8d7b..77e349e107786b81d49b551130b9fab805c24c45 100644
--- a/rocolib/output/BoatBase/graph-autofold-default.dxf
+++ b/rocolib/output/BoatBase/graph-autofold-default.dxf
@@ -493,7 +493,7 @@ TABLE
   2
 LAYER
  70
-11
+14
   0
 LAYER
   2
@@ -557,7 +557,17 @@ CONTINUOUS
   0
 LAYER
   2
-90.0
+21.801409486351815
+ 70
+0
+ 62
+1
+  6
+CONTINUOUS
+  0
+LAYER
+  2
+80.43938360731835
  70
 0
  62
@@ -605,6 +615,26 @@ LAYER
   6
 CONTINUOUS
   0
+LAYER
+  2
+26.565051177077976
+ 70
+0
+ 62
+1
+  6
+CONTINUOUS
+  0
+LAYER
+  2
+90.0
+ 70
+0
+ 62
+1
+  6
+CONTINUOUS
+  0
 ENDTAB
   0
 TABLE
@@ -1005,15 +1035,15 @@ DOTTED
   8
 90
  10
-76.6666666666667
+76.66666666666664
  20
-20.000000000000004
+53.851648000000004
  30
 0.0
  11
-76.6666666666667
+76.66666666666664
  21
-120.00000000000001
+180.85164800000004
  31
 0.0
   0
@@ -1025,15 +1055,15 @@ DOTTED
   8
 90
  10
-26.666666666666696
+26.666666666666632
  20
-20.000000000000004
+53.851648000000004
  30
 0.0
  11
-26.666666666666696
+26.666666666666632
  21
-120.00000000000001
+180.85164800000004
  31
 0.0
   0
@@ -1043,17 +1073,17 @@ DOTTED
  62
 1
   8
-90.0
+21.801409486351815
  10
-51.66666666666669
+51.666666666666636
  20
-20.000000000000004
+53.851648000000004
  30
 0.0
  11
-26.666666666666696
+26.666666666666632
  21
-20.000000000000004
+53.851648000000004
  31
 0.0
   0
@@ -1063,17 +1093,37 @@ DOTTED
  62
 1
   8
-90.0
+21.801409486351815
+ 10
+76.66666666666664
+ 20
+53.851648000000004
+ 30
+0.0
+ 11
+51.666666666666636
+ 21
+53.851648000000004
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+80.43938360731835
  10
-76.6666666666667
+51.666666666666636
  20
-20.000000000000004
+-7.134504187433777e-08
  30
 0.0
  11
-51.66666666666669
+26.666666666666632
  21
-20.000000000000004
+53.851648000000004
  31
 0.0
   0
@@ -1083,15 +1133,15 @@ LINE
   8
 cut
  10
-46.6666666666667
+18.179873535340967
  20
-0.0
+33.97156470018156
  30
 0.0
  11
-26.666666666666696
+12.423270101003796
  21
-0.0
+39.81150361779138
  31
 0.0
   0
@@ -1101,15 +1151,15 @@ LINE
   8
 cut
  10
-51.66666666666671
+51.66666666666664
  20
-0.0
+-7.13450560851925e-08
  30
 0.0
  11
-46.6666666666667
+18.179873535340967
  21
-0.0
+33.97156470018156
  31
 0.0
   0
@@ -1121,15 +1171,15 @@ DOTTED
   8
 180
  10
-26.666666666666696
+26.666666666666632
  20
-20.000000000000004
+53.851648000000004
  30
 0.0
  11
-26.666666666666696
+12.423270101003796
  21
-0.0
+39.81150361779138
  31
 0.0
   0
@@ -1141,15 +1191,15 @@ DOTTED
   8
 -180
  10
-26.666666666666696
+26.666666666666636
  20
-20.000000000000004
+53.851648000000004
  30
 0.0
  11
-6.666666666666694
+6.66666666666663
  21
-0.0
+45.651442535401195
  31
 0.0
   0
@@ -1159,15 +1209,15 @@ LINE
   8
 cut
  10
-26.666666666666696
+12.423270101003801
  20
-0.0
+39.81150361779138
  30
 0.0
  11
-6.666666666666694
+6.66666666666663
  21
-0.0
+45.651442535401195
  31
 0.0
   0
@@ -1179,15 +1229,15 @@ DOTTED
   8
 -174
  10
-6.666666666666694
+6.666666666666637
  20
-19.999999999999996
+53.851648000000004
  30
 0.0
  11
-6.666666666666701
+6.666666666666637
  21
-0.0
+45.651442535401195
  31
 0.0
   0
@@ -1197,17 +1247,17 @@ DOTTED
  62
 1
   8
-90.0
+26.565051177077976
  10
-26.666666666666696
+26.666666666666632
  20
-20.000000000000004
+53.851648000000004
  30
 0.0
  11
-6.666666666666694
+6.666666666666637
  21
-19.999999999999996
+53.851648000000004
  31
 0.0
   0
@@ -1217,15 +1267,15 @@ LINE
   8
 cut
  10
-2.8421709430404014e-14
+3.9332648451337
  20
-19.999999999999996
+53.85164800000002
  30
 0.0
  11
-6.666666666666694
+6.666666666666637
  21
-19.999999999999996
+53.85164800000002
  31
 0.0
   0
@@ -1235,15 +1285,15 @@ LINE
   8
 cut
  10
-2.8421709430404014e-14
+3.9332648451337
  20
-0.0
+45.65144253540121
  30
 0.0
  11
-2.8421709430404014e-14
+3.9332648451337
  21
-19.999999999999996
+53.85164800000002
  31
 0.0
   0
@@ -1253,15 +1303,15 @@ LINE
   8
 cut
  10
-6.666666666666694
+6.666666666666637
  20
-0.0
+45.65144253540121
  30
 0.0
  11
-2.8421709430404014e-14
+3.9332648451337
  21
-0.0
+45.65144253540121
  31
 0.0
   0
@@ -1271,15 +1321,15 @@ LINE
   8
 cut
  10
-6.666666666666694
+6.66666666666663
  20
-19.999999999999996
+53.851648000000004
  30
 0.0
  11
-6.666666666666665
+6.666666666666658
  21
-120.0
+180.85164800000004
  31
 0.0
   0
@@ -1291,15 +1341,15 @@ DOTTED
   8
 90.0
  10
-6.666666666666671
+6.666666666666665
  20
-119.99999999999999
+180.85164800000004
  30
 0.0
  11
-26.66666666666667
+26.666666666666664
  21
-120.0
+180.85164800000004
  31
 0.0
   0
@@ -1311,15 +1361,15 @@ DOTTED
   8
 -180
  10
-6.666666666666665
+6.666666666666671
  20
-140.0
+200.85164800000004
  30
 0.0
  11
-26.66666666666667
+26.666666666666668
  21
-120.0
+180.85164800000004
  31
 0.0
   0
@@ -1331,15 +1381,15 @@ DOTTED
   8
 -174
  10
-6.666666666666665
+6.666666666666671
  20
-140.0
+200.85164800000004
  30
 0.0
  11
 6.666666666666671
  21
-119.99999999999999
+180.85164800000004
  31
 0.0
   0
@@ -1351,13 +1401,13 @@ cut
  10
 6.666666666666671
  20
-140.0
+200.85164800000004
  30
 0.0
  11
-26.666666666666664
+26.666666666666668
  21
-140.00000000000003
+200.85164800000004
  31
 0.0
   0
@@ -1369,15 +1419,15 @@ DOTTED
   8
 180
  10
-26.666666666666664
+26.666666666666668
  20
-140.00000000000003
+200.85164800000004
  30
 0.0
  11
-26.66666666666667
+26.666666666666668
  21
-120.0
+180.85164800000004
  31
 0.0
   0
@@ -1387,15 +1437,15 @@ LINE
   8
 cut
  10
-46.66666666666665
+46.66666666666666
  20
-140.00000000000003
+200.85164800000004
  30
 0.0
  11
-51.66666666666666
+51.666666666666664
  21
-140.00000000000003
+200.85164800000004
  31
 0.0
   0
@@ -1405,15 +1455,15 @@ LINE
   8
 cut
  10
-26.66666666666666
+26.666666666666664
  20
-140.0
+200.85164800000004
  30
 0.0
  11
-46.66666666666665
+46.66666666666666
  21
-140.00000000000003
+200.85164800000004
  31
 0.0
   0
@@ -1425,15 +1475,15 @@ DOTTED
   8
 90.0
  10
-26.66666666666667
+26.666666666666664
  20
-120.0
+180.85164800000004
  30
 0.0
  11
 51.666666666666664
  21
-120.00000000000001
+180.85164800000004
  31
 0.0
   0
@@ -1447,13 +1497,13 @@ DOTTED
  10
 51.666666666666664
  20
-120.00000000000001
+180.85164800000004
  30
 0.0
  11
 76.66666666666667
  21
-120.00000000000003
+180.85164800000004
  31
 0.0
   0
@@ -1463,15 +1513,15 @@ LINE
   8
 cut
  10
-56.66666666666666
+56.666666666666664
  20
-140.00000000000003
+200.85164800000004
  30
 0.0
  11
-76.66666666666666
+76.66666666666667
  21
-140.00000000000003
+200.85164800000004
  31
 0.0
   0
@@ -1481,15 +1531,15 @@ LINE
   8
 cut
  10
-51.66666666666666
+51.666666666666664
  20
-140.00000000000003
+200.85164800000004
  30
 0.0
  11
-56.66666666666666
+56.666666666666664
  21
-140.00000000000003
+200.85164800000004
  31
 0.0
   0
@@ -1503,13 +1553,13 @@ DOTTED
  10
 76.66666666666667
  20
-120.00000000000003
+180.85164800000004
  30
 0.0
  11
-76.66666666666666
+76.66666666666667
  21
-140.00000000000003
+200.85164800000004
  31
 0.0
   0
@@ -1523,13 +1573,13 @@ DOTTED
  10
 76.66666666666667
  20
-120.00000000000003
+180.85164800000004
  30
 0.0
  11
-96.66666666666664
+96.66666666666666
  21
-140.00000000000003
+200.85164800000004
  31
 0.0
   0
@@ -1539,15 +1589,15 @@ LINE
   8
 cut
  10
-76.66666666666666
+76.66666666666667
  20
-140.00000000000003
+200.85164800000004
  30
 0.0
  11
-96.66666666666664
+96.66666666666666
  21
-140.00000000000003
+200.85164800000004
  31
 0.0
   0
@@ -1561,13 +1611,13 @@ DOTTED
  10
 96.66666666666666
  20
-120.00000000000004
+180.851648
  30
 0.0
  11
-96.66666666666664
+96.66666666666666
  21
-140.00000000000003
+200.851648
  31
 0.0
   0
@@ -1581,13 +1631,13 @@ DOTTED
  10
 76.66666666666667
  20
-120.00000000000003
+180.851648
  30
 0.0
  11
 96.66666666666666
  21
-120.00000000000004
+180.851648
  31
 0.0
   0
@@ -1599,13 +1649,13 @@ cut
  10
 103.33333333333333
  20
-120.00000000000004
+180.85164800000004
  30
 0.0
  11
 96.66666666666666
  21
-120.00000000000004
+180.85164800000004
  31
 0.0
   0
@@ -1615,15 +1665,15 @@ LINE
   8
 cut
  10
-103.33333333333331
+103.33333333333333
  20
-140.00000000000003
+200.85164800000004
  30
 0.0
  11
 103.33333333333333
  21
-120.00000000000004
+180.85164800000004
  31
 0.0
   0
@@ -1633,15 +1683,15 @@ LINE
   8
 cut
  10
-96.66666666666664
+96.66666666666666
  20
-140.00000000000003
+200.85164800000004
  30
 0.0
  11
-103.33333333333331
+103.33333333333333
  21
-140.00000000000003
+200.85164800000004
  31
 0.0
   0
@@ -1653,13 +1703,13 @@ cut
  10
 96.66666666666666
  20
-120.00000000000004
+180.85164800000004
  30
 0.0
  11
-96.66666666666674
+96.66666666666666
  21
-20.00000000000006
+53.85164800000003
  31
 0.0
   0
@@ -1669,17 +1719,17 @@ DOTTED
  62
 1
   8
-90.0
+26.565051177077976
  10
-96.66666666666673
+96.66666666666666
  20
-20.00000000000006
+53.85164800000003
  30
 0.0
  11
-76.66666666666674
+76.66666666666667
  21
-20.000000000000043
+53.85164800000003
  31
 0.0
   0
@@ -1691,15 +1741,15 @@ DOTTED
   8
 -180
  10
-96.66666666666676
+96.66666666666666
  20
-5.684341886080803e-14
+45.65144253540122
  30
 0.0
  11
-76.66666666666674
+76.66666666666667
  21
-20.000000000000043
+53.85164800000003
  31
 0.0
   0
@@ -1711,15 +1761,15 @@ DOTTED
   8
 -174
  10
-96.66666666666676
+96.66666666666666
  20
-5.684341886080803e-14
+45.65144253540122
  30
 0.0
  11
-96.66666666666673
+96.66666666666666
  21
-20.00000000000006
+53.85164800000003
  31
 0.0
   0
@@ -1729,15 +1779,15 @@ LINE
   8
 cut
  10
-96.66666666666676
+96.66666666666666
  20
-7.105427357601003e-14
+45.65144253540122
  30
 0.0
  11
-76.66666666666676
+90.9100632323295
  21
-5.684341886080803e-14
+39.81150361779142
  31
 0.0
   0
@@ -1749,33 +1799,35 @@ DOTTED
   8
 180
  10
-76.66666666666676
+90.9100632323295
  20
-5.684341886080803e-14
+39.81150361779142
  30
 0.0
  11
-76.66666666666674
+76.66666666666667
  21
-20.000000000000043
+53.85164800000003
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
-cut
+80.43938360731835
  10
-56.66666666666677
+51.66666666666667
  20
-2.8421709430404014e-14
+-7.134499924177363e-08
  30
 0.0
  11
-51.66666666666677
+76.66666666666667
  21
-2.8421709430404014e-14
+53.85164800000003
  31
 0.0
   0
@@ -1785,15 +1837,15 @@ LINE
   8
 cut
  10
-76.66666666666676
+85.15345979799233
  20
-5.684341886080803e-14
+33.9715647001816
  30
 0.0
  11
-56.66666666666677
+51.66666666666667
  21
-2.8421709430404014e-14
+-7.134499924177363e-08
  31
 0.0
   0
@@ -1803,15 +1855,15 @@ LINE
   8
 cut
  10
-103.33333333333341
+90.9100632323295
  20
-5.684341886080803e-14
+39.81150361779141
  30
 0.0
  11
-96.66666666666676
+85.15345979799233
  21
-5.684341886080803e-14
+33.9715647001816
  31
 0.0
   0
@@ -1821,15 +1873,15 @@ LINE
   8
 cut
  10
-103.33333333333339
+99.40006848819961
  20
-20.00000000000006
+45.65144253540122
  30
 0.0
  11
-103.33333333333341
+96.66666666666666
  21
-5.684341886080803e-14
+45.65144253540122
  31
 0.0
   0
@@ -1839,15 +1891,15 @@ LINE
   8
 cut
  10
-96.66666666666673
+99.40006848819961
  20
-20.00000000000005
+53.85164800000003
  30
 0.0
  11
-103.33333333333339
+99.40006848819961
  21
-20.00000000000006
+45.65144253540122
  31
 0.0
   0
@@ -1857,15 +1909,15 @@ LINE
   8
 cut
  10
-0.0
+96.66666666666666
  20
-140.0
+53.85164800000003
  30
 0.0
  11
-6.666666666666665
+99.40006848819961
  21
-140.0
+53.85164800000003
  31
 0.0
   0
@@ -1877,13 +1929,13 @@ cut
  10
 7.105427357601003e-15
  20
-119.99999999999999
+200.85164800000004
  30
 0.0
  11
-0.0
+6.666666666666671
  21
-140.0
+200.85164800000004
  31
 0.0
   0
@@ -1893,15 +1945,15 @@ LINE
   8
 cut
  10
-6.666666666666671
+0.0
  20
-119.99999999999999
+180.85164800000004
  30
 0.0
  11
 7.105427357601003e-15
  21
-119.99999999999999
+200.85164800000004
  31
 0.0
   0
@@ -1911,15 +1963,15 @@ LINE
   8
 cut
  10
-40.25000000000003
+6.666666666666665
  20
-5.25
+180.85164800000004
  30
 0.0
  11
-33.083333333333364
+0.0
  21
-5.25
+180.85164800000004
  31
 0.0
   0
@@ -1929,15 +1981,15 @@ LINE
   8
 cut
  10
-33.083333333333364
+18.074534715146097
  20
-5.25
+37.35482121234262
  30
 0.0
  11
-33.083333333333364
+15.804663294145152
  21
-4.750000000000001
+39.65755243235412
  31
 0.0
   0
@@ -1947,15 +1999,15 @@ LINE
   8
 cut
  10
-33.083333333333364
+15.804663294145152
  20
-4.750000000000001
+39.65755243235412
  30
 0.0
  11
-40.25000000000003
+15.448578380003584
  21
-4.750000000000001
+39.306548822798916
  31
 0.0
   0
@@ -1965,15 +2017,15 @@ LINE
   8
 cut
  10
-40.25000000000003
+15.448578380003584
  20
-4.750000000000001
+39.306548822798916
  30
 0.0
  11
-40.25000000000003
+17.71844980100452
  21
-5.25
+37.003817602787414
  31
 0.0
   0
@@ -1983,15 +2035,15 @@ LINE
   8
 cut
  10
-1.666666666666693
+17.71844980100452
  20
-6.666666666666665
+37.003817602787414
  30
 0.0
  11
-5.000000000000028
+18.074534715146097
  21
-6.666666666666665
+37.35482121234262
  31
 0.0
   0
@@ -2001,15 +2053,15 @@ LINE
   8
 cut
  10
-5.000000000000028
+4.616615300516934
  20
-6.666666666666665
+48.384844356934146
  30
 0.0
  11
-5.000000000000028
+5.983316211283403
  21
-13.33333333333333
+48.384844356934146
  31
 0.0
   0
@@ -2019,15 +2071,33 @@ LINE
   8
 cut
  10
-5.000000000000028
+5.983316211283403
  20
-13.33333333333333
+48.384844356934146
  30
 0.0
  11
-1.666666666666693
+5.983316211283403
  21
-13.33333333333333
+51.118246178467075
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+5.983316211283403
+ 20
+51.118246178467075
+ 30
+0.0
+ 11
+4.616615300516934
+ 21
+51.118246178467075
  31
 0.0
   0
@@ -2039,13 +2109,13 @@ cut
  10
 33.08333333333333
  20
-134.75000000000003
+195.60164800000004
  30
 0.0
  11
 40.24999999999999
  21
-134.75000000000003
+195.60164800000004
  31
 0.0
   0
@@ -2057,13 +2127,13 @@ cut
  10
 40.24999999999999
  20
-134.75000000000003
+195.60164800000004
  30
 0.0
  11
 40.24999999999999
  21
-135.25000000000003
+196.10164800000004
  31
 0.0
   0
@@ -2075,13 +2145,13 @@ cut
  10
 40.24999999999999
  20
-135.25000000000003
+196.10164800000004
  30
 0.0
  11
 33.08333333333333
  21
-135.25000000000003
+196.10164800000004
  31
 0.0
   0
@@ -2093,13 +2163,13 @@ cut
  10
 33.08333333333333
  20
-135.25000000000003
+196.10164800000004
  30
 0.0
  11
 33.08333333333333
  21
-134.75000000000003
+195.60164800000004
  31
 0.0
   0
@@ -2109,15 +2179,15 @@ LINE
   8
 cut
  10
-63.08333333333332
+63.08333333333333
  20
-134.75000000000003
+195.60164800000004
  30
 0.0
  11
-70.24999999999999
+70.25
  21
-134.75000000000003
+195.60164800000004
  31
 0.0
   0
@@ -2127,15 +2197,15 @@ LINE
   8
 cut
  10
-70.24999999999999
+70.25
  20
-134.75000000000003
+195.60164800000004
  30
 0.0
  11
 70.25
  21
-135.25000000000003
+196.10164800000004
  31
 0.0
   0
@@ -2147,13 +2217,13 @@ cut
  10
 70.25
  20
-135.25000000000003
+196.10164800000004
  30
 0.0
  11
-63.08333333333332
+63.08333333333333
  21
-135.25000000000003
+196.10164800000004
  31
 0.0
   0
@@ -2163,15 +2233,15 @@ LINE
   8
 cut
  10
-63.08333333333332
+63.08333333333333
  20
-135.25000000000003
+196.10164800000004
  30
 0.0
  11
-63.08333333333332
+63.08333333333333
  21
-134.75000000000003
+195.60164800000004
  31
 0.0
   0
@@ -2183,13 +2253,13 @@ cut
  10
 101.66666666666666
  20
-133.33333333333334
+194.18498133333335
  30
 0.0
  11
 98.33333333333333
  21
-133.33333333333334
+194.18498133333335
  31
 0.0
   0
@@ -2201,13 +2271,13 @@ cut
  10
 98.33333333333333
  20
-133.33333333333334
+194.18498133333335
  30
 0.0
  11
 98.33333333333333
  21
-126.6666666666667
+187.5183146666667
  31
 0.0
   0
@@ -2219,13 +2289,13 @@ cut
  10
 98.33333333333333
  20
-126.6666666666667
+187.5183146666667
  30
 0.0
  11
 101.66666666666666
  21
-126.6666666666667
+187.5183146666667
  31
 0.0
   0
@@ -2235,15 +2305,15 @@ LINE
   8
 cut
  10
-70.25000000000009
+87.52867003918816
  20
-5.2500000000000435
+39.65755243235416
  30
 0.0
  11
-63.08333333333343
+85.25879861818721
  21
-5.250000000000029
+37.35482121234264
  31
 0.0
   0
@@ -2253,15 +2323,15 @@ LINE
   8
 cut
  10
-63.08333333333343
+85.25879861818721
  20
-5.250000000000029
+37.35482121234264
  30
 0.0
  11
-63.08333333333343
+85.61488353232878
  21
-4.750000000000029
+37.00381760278744
  31
 0.0
   0
@@ -2271,15 +2341,15 @@ LINE
   8
 cut
  10
-63.08333333333343
+85.61488353232878
  20
-4.750000000000029
+37.00381760278744
  30
 0.0
  11
-70.25000000000009
+87.88475495332972
  21
-4.7500000000000435
+39.306548822798945
  31
 0.0
   0
@@ -2289,15 +2359,15 @@ LINE
   8
 cut
  10
-70.25000000000009
+87.88475495332972
  20
-4.7500000000000435
+39.306548822798945
  30
 0.0
  11
-70.25000000000009
+87.52867003918816
  21
-5.2500000000000435
+39.65755243235416
  31
 0.0
   0
@@ -2307,15 +2377,15 @@ LINE
   8
 cut
  10
-101.66666666666674
+98.71671803281637
  20
-13.333333333333387
+51.11824617846709
  30
 0.0
  11
-98.33333333333341
+97.3500171220499
  21
-13.333333333333387
+51.11824617846709
  31
 0.0
   0
@@ -2325,15 +2395,15 @@ LINE
   8
 cut
  10
-98.33333333333341
+97.3500171220499
  20
-13.333333333333387
+51.11824617846709
  30
 0.0
  11
-98.33333333333341
+97.3500171220499
  21
-6.666666666666722
+48.38484435693416
  31
 0.0
   0
@@ -2343,15 +2413,15 @@ LINE
   8
 cut
  10
-98.33333333333341
+97.3500171220499
  20
-6.666666666666722
+48.38484435693416
  30
 0.0
  11
-101.66666666666674
+98.71671803281637
  21
-6.666666666666722
+48.38484435693416
  31
 0.0
   0
@@ -2361,15 +2431,15 @@ LINE
   8
 cut
  10
-1.6666666666666714
+1.6666666666666645
  20
-126.66666666666666
+187.5183146666667
  30
 0.0
  11
-5.000000000000008
+5.000000000000001
  21
-126.66666666666666
+187.5183146666667
  31
 0.0
   0
@@ -2379,15 +2449,15 @@ LINE
   8
 cut
  10
-5.000000000000008
+5.000000000000001
  20
-126.66666666666666
+187.5183146666667
  30
 0.0
  11
-5.000000000000008
+5.000000000000001
  21
-133.33333333333331
+194.18498133333335
  31
 0.0
   0
@@ -2397,15 +2467,15 @@ LINE
   8
 cut
  10
-5.000000000000008
+5.000000000000001
  20
-133.33333333333331
+194.18498133333335
  30
 0.0
  11
-1.6666666666666714
+1.6666666666666645
  21
-133.33333333333331
+194.18498133333335
  31
 0.0
   0
diff --git a/rocolib/output/BoatBase/graph-autofold-graph.dxf b/rocolib/output/BoatBase/graph-autofold-graph.dxf
index bc90a9ea6115527f29d7b5c26903b089120668de..f23533c608cf37d5b06fb22054211ec7e333b9e4 100644
--- a/rocolib/output/BoatBase/graph-autofold-graph.dxf
+++ b/rocolib/output/BoatBase/graph-autofold-graph.dxf
@@ -945,15 +945,15 @@ DOTTED
   8
 0
  10
-76.6666666666667
+76.66666666666664
  20
-20.000000000000004
+53.851648000000004
  30
 0.0
  11
-76.6666666666667
+76.66666666666664
  21
-120.00000000000001
+180.85164800000004
  31
 0.0
   0
@@ -965,15 +965,15 @@ DOTTED
   8
 0
  10
-26.666666666666696
+26.666666666666632
  20
-20.000000000000004
+53.851648000000004
  30
 0.0
  11
-26.666666666666696
+26.666666666666632
  21
-120.00000000000001
+180.85164800000004
  31
 0.0
   0
@@ -985,15 +985,15 @@ DOTTED
   8
 0
  10
-51.66666666666669
+51.666666666666636
  20
-20.000000000000004
+53.851648000000004
  30
 0.0
  11
-26.666666666666696
+26.666666666666632
  21
-20.000000000000004
+53.851648000000004
  31
 0.0
   0
@@ -1005,33 +1005,35 @@ DOTTED
   8
 0
  10
-76.6666666666667
+76.66666666666664
  20
-20.000000000000004
+53.851648000000004
  30
 0.0
  11
-51.66666666666669
+51.666666666666636
  21
-20.000000000000004
+53.851648000000004
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
 0
  10
-46.6666666666667
+51.666666666666636
  20
-0.0
+-7.134504187433777e-08
  30
 0.0
  11
-26.666666666666696
+26.666666666666632
  21
-0.0
+53.851648000000004
  31
 0.0
   0
@@ -1041,15 +1043,33 @@ LINE
   8
 0
  10
-51.66666666666671
+18.179873535340967
  20
-0.0
+33.97156470018156
  30
 0.0
  11
-46.6666666666667
+12.423270101003796
  21
+39.81150361779138
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+51.66666666666664
+ 20
+-7.13450560851925e-08
+ 30
 0.0
+ 11
+18.179873535340967
+ 21
+33.97156470018156
  31
 0.0
   0
@@ -1061,15 +1081,15 @@ DOTTED
   8
 0
  10
-26.666666666666696
+26.666666666666632
  20
-20.000000000000004
+53.851648000000004
  30
 0.0
  11
-26.666666666666696
+12.423270101003796
  21
-0.0
+39.81150361779138
  31
 0.0
   0
@@ -1081,15 +1101,15 @@ DOTTED
   8
 0
  10
-26.666666666666696
+26.666666666666636
  20
-20.000000000000004
+53.851648000000004
  30
 0.0
  11
-6.666666666666694
+6.66666666666663
  21
-0.0
+45.651442535401195
  31
 0.0
   0
@@ -1099,15 +1119,15 @@ LINE
   8
 0
  10
-26.666666666666696
+12.423270101003801
  20
-0.0
+39.81150361779138
  30
 0.0
  11
-6.666666666666694
+6.66666666666663
  21
-0.0
+45.651442535401195
  31
 0.0
   0
@@ -1119,15 +1139,15 @@ DOTTED
   8
 0
  10
-6.666666666666694
+6.666666666666637
  20
-19.999999999999996
+53.851648000000004
  30
 0.0
  11
-6.666666666666701
+6.666666666666637
  21
-0.0
+45.651442535401195
  31
 0.0
   0
@@ -1139,15 +1159,15 @@ DOTTED
   8
 0
  10
-26.666666666666696
+26.666666666666632
  20
-20.000000000000004
+53.851648000000004
  30
 0.0
  11
-6.666666666666694
+6.666666666666637
  21
-19.999999999999996
+53.851648000000004
  31
 0.0
   0
@@ -1157,15 +1177,15 @@ LINE
   8
 0
  10
-2.8421709430404014e-14
+3.9332648451337
  20
-19.999999999999996
+53.85164800000002
  30
 0.0
  11
-6.666666666666694
+6.666666666666637
  21
-19.999999999999996
+53.85164800000002
  31
 0.0
   0
@@ -1175,15 +1195,15 @@ LINE
   8
 0
  10
-2.8421709430404014e-14
+3.9332648451337
  20
-0.0
+45.65144253540121
  30
 0.0
  11
-2.8421709430404014e-14
+3.9332648451337
  21
-19.999999999999996
+53.85164800000002
  31
 0.0
   0
@@ -1193,15 +1213,15 @@ LINE
   8
 0
  10
-6.666666666666694
+6.666666666666637
  20
-0.0
+45.65144253540121
  30
 0.0
  11
-2.8421709430404014e-14
+3.9332648451337
  21
-0.0
+45.65144253540121
  31
 0.0
   0
@@ -1211,15 +1231,15 @@ LINE
   8
 0
  10
-6.666666666666694
+6.66666666666663
  20
-19.999999999999996
+53.851648000000004
  30
 0.0
  11
-6.666666666666665
+6.666666666666658
  21
-120.0
+180.85164800000004
  31
 0.0
   0
@@ -1231,15 +1251,15 @@ DOTTED
   8
 0
  10
-6.666666666666671
+6.666666666666665
  20
-119.99999999999999
+180.85164800000004
  30
 0.0
  11
-26.66666666666667
+26.666666666666664
  21
-120.0
+180.85164800000004
  31
 0.0
   0
@@ -1251,15 +1271,15 @@ DOTTED
   8
 0
  10
-6.666666666666665
+6.666666666666671
  20
-140.0
+200.85164800000004
  30
 0.0
  11
-26.66666666666667
+26.666666666666668
  21
-120.0
+180.85164800000004
  31
 0.0
   0
@@ -1271,15 +1291,15 @@ DOTTED
   8
 0
  10
-6.666666666666665
+6.666666666666671
  20
-140.0
+200.85164800000004
  30
 0.0
  11
 6.666666666666671
  21
-119.99999999999999
+180.85164800000004
  31
 0.0
   0
@@ -1291,13 +1311,13 @@ LINE
  10
 6.666666666666671
  20
-140.0
+200.85164800000004
  30
 0.0
  11
-26.666666666666664
+26.666666666666668
  21
-140.00000000000003
+200.85164800000004
  31
 0.0
   0
@@ -1309,15 +1329,15 @@ DOTTED
   8
 0
  10
-26.666666666666664
+26.666666666666668
  20
-140.00000000000003
+200.85164800000004
  30
 0.0
  11
-26.66666666666667
+26.666666666666668
  21
-120.0
+180.85164800000004
  31
 0.0
   0
@@ -1327,15 +1347,15 @@ LINE
   8
 0
  10
-46.66666666666665
+46.66666666666666
  20
-140.00000000000003
+200.85164800000004
  30
 0.0
  11
-51.66666666666666
+51.666666666666664
  21
-140.00000000000003
+200.85164800000004
  31
 0.0
   0
@@ -1345,15 +1365,15 @@ LINE
   8
 0
  10
-26.66666666666666
+26.666666666666664
  20
-140.0
+200.85164800000004
  30
 0.0
  11
-46.66666666666665
+46.66666666666666
  21
-140.00000000000003
+200.85164800000004
  31
 0.0
   0
@@ -1365,15 +1385,15 @@ DOTTED
   8
 0
  10
-26.66666666666667
+26.666666666666664
  20
-120.0
+180.85164800000004
  30
 0.0
  11
 51.666666666666664
  21
-120.00000000000001
+180.85164800000004
  31
 0.0
   0
@@ -1387,13 +1407,13 @@ DOTTED
  10
 51.666666666666664
  20
-120.00000000000001
+180.85164800000004
  30
 0.0
  11
 76.66666666666667
  21
-120.00000000000003
+180.85164800000004
  31
 0.0
   0
@@ -1403,15 +1423,15 @@ LINE
   8
 0
  10
-56.66666666666666
+56.666666666666664
  20
-140.00000000000003
+200.85164800000004
  30
 0.0
  11
-76.66666666666666
+76.66666666666667
  21
-140.00000000000003
+200.85164800000004
  31
 0.0
   0
@@ -1421,15 +1441,15 @@ LINE
   8
 0
  10
-51.66666666666666
+51.666666666666664
  20
-140.00000000000003
+200.85164800000004
  30
 0.0
  11
-56.66666666666666
+56.666666666666664
  21
-140.00000000000003
+200.85164800000004
  31
 0.0
   0
@@ -1443,13 +1463,13 @@ DOTTED
  10
 76.66666666666667
  20
-120.00000000000003
+180.85164800000004
  30
 0.0
  11
-76.66666666666666
+76.66666666666667
  21
-140.00000000000003
+200.85164800000004
  31
 0.0
   0
@@ -1463,13 +1483,13 @@ DOTTED
  10
 76.66666666666667
  20
-120.00000000000003
+180.85164800000004
  30
 0.0
  11
-96.66666666666664
+96.66666666666666
  21
-140.00000000000003
+200.85164800000004
  31
 0.0
   0
@@ -1479,15 +1499,15 @@ LINE
   8
 0
  10
-76.66666666666666
+76.66666666666667
  20
-140.00000000000003
+200.85164800000004
  30
 0.0
  11
-96.66666666666664
+96.66666666666666
  21
-140.00000000000003
+200.85164800000004
  31
 0.0
   0
@@ -1501,13 +1521,13 @@ DOTTED
  10
 96.66666666666666
  20
-120.00000000000004
+180.851648
  30
 0.0
  11
-96.66666666666664
+96.66666666666666
  21
-140.00000000000003
+200.851648
  31
 0.0
   0
@@ -1521,13 +1541,13 @@ DOTTED
  10
 76.66666666666667
  20
-120.00000000000003
+180.851648
  30
 0.0
  11
 96.66666666666666
  21
-120.00000000000004
+180.851648
  31
 0.0
   0
@@ -1539,13 +1559,13 @@ LINE
  10
 103.33333333333333
  20
-120.00000000000004
+180.85164800000004
  30
 0.0
  11
 96.66666666666666
  21
-120.00000000000004
+180.85164800000004
  31
 0.0
   0
@@ -1555,15 +1575,15 @@ LINE
   8
 0
  10
-103.33333333333331
+103.33333333333333
  20
-140.00000000000003
+200.85164800000004
  30
 0.0
  11
 103.33333333333333
  21
-120.00000000000004
+180.85164800000004
  31
 0.0
   0
@@ -1573,15 +1593,15 @@ LINE
   8
 0
  10
-96.66666666666664
+96.66666666666666
  20
-140.00000000000003
+200.85164800000004
  30
 0.0
  11
-103.33333333333331
+103.33333333333333
  21
-140.00000000000003
+200.85164800000004
  31
 0.0
   0
@@ -1593,13 +1613,13 @@ LINE
  10
 96.66666666666666
  20
-120.00000000000004
+180.85164800000004
  30
 0.0
  11
-96.66666666666674
+96.66666666666666
  21
-20.00000000000006
+53.85164800000003
  31
 0.0
   0
@@ -1611,15 +1631,15 @@ DOTTED
   8
 0
  10
-96.66666666666673
+96.66666666666666
  20
-20.00000000000006
+53.85164800000003
  30
 0.0
  11
-76.66666666666674
+76.66666666666667
  21
-20.000000000000043
+53.85164800000003
  31
 0.0
   0
@@ -1631,15 +1651,15 @@ DOTTED
   8
 0
  10
-96.66666666666676
+96.66666666666666
  20
-5.684341886080803e-14
+45.65144253540122
  30
 0.0
  11
-76.66666666666674
+76.66666666666667
  21
-20.000000000000043
+53.85164800000003
  31
 0.0
   0
@@ -1651,15 +1671,15 @@ DOTTED
   8
 0
  10
-96.66666666666676
+96.66666666666666
  20
-5.684341886080803e-14
+45.65144253540122
  30
 0.0
  11
-96.66666666666673
+96.66666666666666
  21
-20.00000000000006
+53.85164800000003
  31
 0.0
   0
@@ -1669,15 +1689,15 @@ LINE
   8
 0
  10
-96.66666666666676
+96.66666666666666
  20
-7.105427357601003e-14
+45.65144253540122
  30
 0.0
  11
-76.66666666666676
+90.9100632323295
  21
-5.684341886080803e-14
+39.81150361779142
  31
 0.0
   0
@@ -1689,33 +1709,35 @@ DOTTED
   8
 0
  10
-76.66666666666676
+90.9100632323295
  20
-5.684341886080803e-14
+39.81150361779142
  30
 0.0
  11
-76.66666666666674
+76.66666666666667
  21
-20.000000000000043
+53.85164800000003
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
 0
  10
-56.66666666666677
+51.66666666666667
  20
-2.8421709430404014e-14
+-7.134499924177363e-08
  30
 0.0
  11
-51.66666666666677
+76.66666666666667
  21
-2.8421709430404014e-14
+53.85164800000003
  31
 0.0
   0
@@ -1725,15 +1747,15 @@ LINE
   8
 0
  10
-76.66666666666676
+85.15345979799233
  20
-5.684341886080803e-14
+33.9715647001816
  30
 0.0
  11
-56.66666666666677
+51.66666666666667
  21
-2.8421709430404014e-14
+-7.134499924177363e-08
  31
 0.0
   0
@@ -1743,15 +1765,15 @@ LINE
   8
 0
  10
-103.33333333333341
+90.9100632323295
  20
-5.684341886080803e-14
+39.81150361779141
  30
 0.0
  11
-96.66666666666676
+85.15345979799233
  21
-5.684341886080803e-14
+33.9715647001816
  31
 0.0
   0
@@ -1761,15 +1783,15 @@ LINE
   8
 0
  10
-103.33333333333339
+99.40006848819961
  20
-20.00000000000006
+45.65144253540122
  30
 0.0
  11
-103.33333333333341
+96.66666666666666
  21
-5.684341886080803e-14
+45.65144253540122
  31
 0.0
   0
@@ -1779,15 +1801,15 @@ LINE
   8
 0
  10
-96.66666666666673
+99.40006848819961
  20
-20.00000000000005
+53.85164800000003
  30
 0.0
  11
-103.33333333333339
+99.40006848819961
  21
-20.00000000000006
+45.65144253540122
  31
 0.0
   0
@@ -1797,15 +1819,15 @@ LINE
   8
 0
  10
-0.0
+96.66666666666666
  20
-140.0
+53.85164800000003
  30
 0.0
  11
-6.666666666666665
+99.40006848819961
  21
-140.0
+53.85164800000003
  31
 0.0
   0
@@ -1817,13 +1839,13 @@ LINE
  10
 7.105427357601003e-15
  20
-119.99999999999999
+200.85164800000004
  30
 0.0
  11
-0.0
+6.666666666666671
  21
-140.0
+200.85164800000004
  31
 0.0
   0
@@ -1833,15 +1855,15 @@ LINE
   8
 0
  10
-6.666666666666671
+0.0
  20
-119.99999999999999
+180.85164800000004
  30
 0.0
  11
 7.105427357601003e-15
  21
-119.99999999999999
+200.85164800000004
  31
 0.0
   0
@@ -1851,15 +1873,15 @@ LINE
   8
 0
  10
-40.25000000000003
+6.666666666666665
  20
-5.25
+180.85164800000004
  30
 0.0
  11
-33.083333333333364
+0.0
  21
-5.25
+180.85164800000004
  31
 0.0
   0
@@ -1869,15 +1891,15 @@ LINE
   8
 0
  10
-33.083333333333364
+18.074534715146097
  20
-5.25
+37.35482121234262
  30
 0.0
  11
-33.083333333333364
+15.804663294145152
  21
-4.750000000000001
+39.65755243235412
  31
 0.0
   0
@@ -1887,15 +1909,15 @@ LINE
   8
 0
  10
-33.083333333333364
+15.804663294145152
  20
-4.750000000000001
+39.65755243235412
  30
 0.0
  11
-40.25000000000003
+15.448578380003584
  21
-4.750000000000001
+39.306548822798916
  31
 0.0
   0
@@ -1905,15 +1927,15 @@ LINE
   8
 0
  10
-40.25000000000003
+15.448578380003584
  20
-4.750000000000001
+39.306548822798916
  30
 0.0
  11
-40.25000000000003
+17.71844980100452
  21
-5.25
+37.003817602787414
  31
 0.0
   0
@@ -1923,15 +1945,15 @@ LINE
   8
 0
  10
-1.666666666666693
+17.71844980100452
  20
-6.666666666666665
+37.003817602787414
  30
 0.0
  11
-5.000000000000028
+18.074534715146097
  21
-6.666666666666665
+37.35482121234262
  31
 0.0
   0
@@ -1941,15 +1963,15 @@ LINE
   8
 0
  10
-5.000000000000028
+4.616615300516934
  20
-6.666666666666665
+48.384844356934146
  30
 0.0
  11
-5.000000000000028
+5.983316211283403
  21
-13.33333333333333
+48.384844356934146
  31
 0.0
   0
@@ -1959,15 +1981,33 @@ LINE
   8
 0
  10
-5.000000000000028
+5.983316211283403
  20
-13.33333333333333
+48.384844356934146
  30
 0.0
  11
-1.666666666666693
+5.983316211283403
  21
-13.33333333333333
+51.118246178467075
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+5.983316211283403
+ 20
+51.118246178467075
+ 30
+0.0
+ 11
+4.616615300516934
+ 21
+51.118246178467075
  31
 0.0
   0
@@ -1979,13 +2019,13 @@ LINE
  10
 33.08333333333333
  20
-134.75000000000003
+195.60164800000004
  30
 0.0
  11
 40.24999999999999
  21
-134.75000000000003
+195.60164800000004
  31
 0.0
   0
@@ -1997,13 +2037,13 @@ LINE
  10
 40.24999999999999
  20
-134.75000000000003
+195.60164800000004
  30
 0.0
  11
 40.24999999999999
  21
-135.25000000000003
+196.10164800000004
  31
 0.0
   0
@@ -2015,13 +2055,13 @@ LINE
  10
 40.24999999999999
  20
-135.25000000000003
+196.10164800000004
  30
 0.0
  11
 33.08333333333333
  21
-135.25000000000003
+196.10164800000004
  31
 0.0
   0
@@ -2033,13 +2073,13 @@ LINE
  10
 33.08333333333333
  20
-135.25000000000003
+196.10164800000004
  30
 0.0
  11
 33.08333333333333
  21
-134.75000000000003
+195.60164800000004
  31
 0.0
   0
@@ -2049,15 +2089,15 @@ LINE
   8
 0
  10
-63.08333333333332
+63.08333333333333
  20
-134.75000000000003
+195.60164800000004
  30
 0.0
  11
-70.24999999999999
+70.25
  21
-134.75000000000003
+195.60164800000004
  31
 0.0
   0
@@ -2067,15 +2107,15 @@ LINE
   8
 0
  10
-70.24999999999999
+70.25
  20
-134.75000000000003
+195.60164800000004
  30
 0.0
  11
 70.25
  21
-135.25000000000003
+196.10164800000004
  31
 0.0
   0
@@ -2087,13 +2127,13 @@ LINE
  10
 70.25
  20
-135.25000000000003
+196.10164800000004
  30
 0.0
  11
-63.08333333333332
+63.08333333333333
  21
-135.25000000000003
+196.10164800000004
  31
 0.0
   0
@@ -2103,15 +2143,15 @@ LINE
   8
 0
  10
-63.08333333333332
+63.08333333333333
  20
-135.25000000000003
+196.10164800000004
  30
 0.0
  11
-63.08333333333332
+63.08333333333333
  21
-134.75000000000003
+195.60164800000004
  31
 0.0
   0
@@ -2123,13 +2163,13 @@ LINE
  10
 101.66666666666666
  20
-133.33333333333334
+194.18498133333335
  30
 0.0
  11
 98.33333333333333
  21
-133.33333333333334
+194.18498133333335
  31
 0.0
   0
@@ -2141,13 +2181,13 @@ LINE
  10
 98.33333333333333
  20
-133.33333333333334
+194.18498133333335
  30
 0.0
  11
 98.33333333333333
  21
-126.6666666666667
+187.5183146666667
  31
 0.0
   0
@@ -2159,13 +2199,13 @@ LINE
  10
 98.33333333333333
  20
-126.6666666666667
+187.5183146666667
  30
 0.0
  11
 101.66666666666666
  21
-126.6666666666667
+187.5183146666667
  31
 0.0
   0
@@ -2175,15 +2215,15 @@ LINE
   8
 0
  10
-70.25000000000009
+87.52867003918816
  20
-5.2500000000000435
+39.65755243235416
  30
 0.0
  11
-63.08333333333343
+85.25879861818721
  21
-5.250000000000029
+37.35482121234264
  31
 0.0
   0
@@ -2193,15 +2233,15 @@ LINE
   8
 0
  10
-63.08333333333343
+85.25879861818721
  20
-5.250000000000029
+37.35482121234264
  30
 0.0
  11
-63.08333333333343
+85.61488353232878
  21
-4.750000000000029
+37.00381760278744
  31
 0.0
   0
@@ -2211,15 +2251,15 @@ LINE
   8
 0
  10
-63.08333333333343
+85.61488353232878
  20
-4.750000000000029
+37.00381760278744
  30
 0.0
  11
-70.25000000000009
+87.88475495332972
  21
-4.7500000000000435
+39.306548822798945
  31
 0.0
   0
@@ -2229,15 +2269,15 @@ LINE
   8
 0
  10
-70.25000000000009
+87.88475495332972
  20
-4.7500000000000435
+39.306548822798945
  30
 0.0
  11
-70.25000000000009
+87.52867003918816
  21
-5.2500000000000435
+39.65755243235416
  31
 0.0
   0
@@ -2247,15 +2287,15 @@ LINE
   8
 0
  10
-101.66666666666674
+98.71671803281637
  20
-13.333333333333387
+51.11824617846709
  30
 0.0
  11
-98.33333333333341
+97.3500171220499
  21
-13.333333333333387
+51.11824617846709
  31
 0.0
   0
@@ -2265,15 +2305,15 @@ LINE
   8
 0
  10
-98.33333333333341
+97.3500171220499
  20
-13.333333333333387
+51.11824617846709
  30
 0.0
  11
-98.33333333333341
+97.3500171220499
  21
-6.666666666666722
+48.38484435693416
  31
 0.0
   0
@@ -2283,15 +2323,15 @@ LINE
   8
 0
  10
-98.33333333333341
+97.3500171220499
  20
-6.666666666666722
+48.38484435693416
  30
 0.0
  11
-101.66666666666674
+98.71671803281637
  21
-6.666666666666722
+48.38484435693416
  31
 0.0
   0
@@ -2301,15 +2341,15 @@ LINE
   8
 0
  10
-1.6666666666666714
+1.6666666666666645
  20
-126.66666666666666
+187.5183146666667
  30
 0.0
  11
-5.000000000000008
+5.000000000000001
  21
-126.66666666666666
+187.5183146666667
  31
 0.0
   0
@@ -2319,15 +2359,15 @@ LINE
   8
 0
  10
-5.000000000000008
+5.000000000000001
  20
-126.66666666666666
+187.5183146666667
  30
 0.0
  11
-5.000000000000008
+5.000000000000001
  21
-133.33333333333331
+194.18498133333335
  31
 0.0
   0
@@ -2337,15 +2377,15 @@ LINE
   8
 0
  10
-5.000000000000008
+5.000000000000001
  20
-133.33333333333331
+194.18498133333335
  30
 0.0
  11
-1.6666666666666714
+1.6666666666666645
  21
-133.33333333333331
+194.18498133333335
  31
 0.0
   0
diff --git a/rocolib/output/BoatBase/graph-lasercutter.svg b/rocolib/output/BoatBase/graph-lasercutter.svg
index 148f9806a255720e5a84875a2dfb59732907307a..07adcda01c732309f527dacb9d2793ca8e88e951 100644
--- a/rocolib/output/BoatBase/graph-lasercutter.svg
+++ b/rocolib/output/BoatBase/graph-lasercutter.svg
@@ -1,80 +1,82 @@
 <?xml version="1.0" encoding="utf-8" ?>
-<svg xmlns="http://www.w3.org/2000/svg" xmlns:ev="http://www.w3.org/2001/xml-events" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="full" height="140.000000mm" version="1.1" viewBox="0.000000 0.000000 103.333333 140.000000" width="103.333333mm">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:ev="http://www.w3.org/2001/xml-events" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="full" height="200.851648mm" version="1.1" viewBox="0.000000 0.000000 103.333333 200.851648" width="103.333333mm">
   <defs/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="76.6666666666667" x2="76.6666666666667" y1="20.000000000000004" y2="120.00000000000001"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="26.666666666666696" x2="26.666666666666696" y1="20.000000000000004" y2="120.00000000000001"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="51.66666666666669" x2="26.666666666666696" y1="20.000000000000004" y2="20.000000000000004"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="76.6666666666667" x2="51.66666666666669" y1="20.000000000000004" y2="20.000000000000004"/>
-  <line stroke="#000000" x1="46.6666666666667" x2="26.666666666666696" y1="0.0" y2="0.0"/>
-  <line stroke="#000000" x1="51.66666666666671" x2="46.6666666666667" y1="0.0" y2="0.0"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="26.666666666666696" x2="26.666666666666696" y1="20.000000000000004" y2="0.0"/>
-  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="26.666666666666696" x2="6.666666666666694" y1="20.000000000000004" y2="0.0"/>
-  <line stroke="#000000" x1="26.666666666666696" x2="6.666666666666694" y1="0.0" y2="0.0"/>
-  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="6.666666666666694" x2="6.666666666666701" y1="19.999999999999996" y2="0.0"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="26.666666666666696" x2="6.666666666666694" y1="20.000000000000004" y2="19.999999999999996"/>
-  <line stroke="#000000" x1="2.8421709430404014e-14" x2="6.666666666666694" y1="19.999999999999996" y2="19.999999999999996"/>
-  <line stroke="#000000" x1="2.8421709430404014e-14" x2="2.8421709430404014e-14" y1="0.0" y2="19.999999999999996"/>
-  <line stroke="#000000" x1="6.666666666666694" x2="2.8421709430404014e-14" y1="0.0" y2="0.0"/>
-  <line stroke="#000000" x1="6.666666666666694" x2="6.666666666666665" y1="19.999999999999996" y2="120.0"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="6.666666666666671" x2="26.66666666666667" y1="119.99999999999999" y2="120.0"/>
-  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="6.666666666666665" x2="26.66666666666667" y1="140.0" y2="120.0"/>
-  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="6.666666666666665" x2="6.666666666666671" y1="140.0" y2="119.99999999999999"/>
-  <line stroke="#000000" x1="6.666666666666671" x2="26.666666666666664" y1="140.0" y2="140.00000000000003"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="26.666666666666664" x2="26.66666666666667" y1="140.00000000000003" y2="120.0"/>
-  <line stroke="#000000" x1="46.66666666666665" x2="51.66666666666666" y1="140.00000000000003" y2="140.00000000000003"/>
-  <line stroke="#000000" x1="26.66666666666666" x2="46.66666666666665" y1="140.0" y2="140.00000000000003"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="26.66666666666667" x2="51.666666666666664" y1="120.0" y2="120.00000000000001"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="51.666666666666664" x2="76.66666666666667" y1="120.00000000000001" y2="120.00000000000003"/>
-  <line stroke="#000000" x1="56.66666666666666" x2="76.66666666666666" y1="140.00000000000003" y2="140.00000000000003"/>
-  <line stroke="#000000" x1="51.66666666666666" x2="56.66666666666666" y1="140.00000000000003" y2="140.00000000000003"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="76.66666666666667" x2="76.66666666666666" y1="120.00000000000003" y2="140.00000000000003"/>
-  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="76.66666666666667" x2="96.66666666666664" y1="120.00000000000003" y2="140.00000000000003"/>
-  <line stroke="#000000" x1="76.66666666666666" x2="96.66666666666664" y1="140.00000000000003" y2="140.00000000000003"/>
-  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="96.66666666666666" x2="96.66666666666664" y1="120.00000000000004" y2="140.00000000000003"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="76.66666666666667" x2="96.66666666666666" y1="120.00000000000003" y2="120.00000000000004"/>
-  <line stroke="#000000" x1="103.33333333333333" x2="96.66666666666666" y1="120.00000000000004" y2="120.00000000000004"/>
-  <line stroke="#000000" x1="103.33333333333331" x2="103.33333333333333" y1="140.00000000000003" y2="120.00000000000004"/>
-  <line stroke="#000000" x1="96.66666666666664" x2="103.33333333333331" y1="140.00000000000003" y2="140.00000000000003"/>
-  <line stroke="#000000" x1="96.66666666666666" x2="96.66666666666674" y1="120.00000000000004" y2="20.00000000000006"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="96.66666666666673" x2="76.66666666666674" y1="20.00000000000006" y2="20.000000000000043"/>
-  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="96.66666666666676" x2="76.66666666666674" y1="5.684341886080803e-14" y2="20.000000000000043"/>
-  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="96.66666666666676" x2="96.66666666666673" y1="5.684341886080803e-14" y2="20.00000000000006"/>
-  <line stroke="#000000" x1="96.66666666666676" x2="76.66666666666676" y1="7.105427357601003e-14" y2="5.684341886080803e-14"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="76.66666666666676" x2="76.66666666666674" y1="5.684341886080803e-14" y2="20.000000000000043"/>
-  <line stroke="#000000" x1="56.66666666666677" x2="51.66666666666677" y1="2.8421709430404014e-14" y2="2.8421709430404014e-14"/>
-  <line stroke="#000000" x1="76.66666666666676" x2="56.66666666666677" y1="5.684341886080803e-14" y2="2.8421709430404014e-14"/>
-  <line stroke="#000000" x1="103.33333333333341" x2="96.66666666666676" y1="5.684341886080803e-14" y2="5.684341886080803e-14"/>
-  <line stroke="#000000" x1="103.33333333333339" x2="103.33333333333341" y1="20.00000000000006" y2="5.684341886080803e-14"/>
-  <line stroke="#000000" x1="96.66666666666673" x2="103.33333333333339" y1="20.00000000000005" y2="20.00000000000006"/>
-  <line stroke="#000000" x1="0.0" x2="6.666666666666665" y1="140.0" y2="140.0"/>
-  <line stroke="#000000" x1="7.105427357601003e-15" x2="0.0" y1="119.99999999999999" y2="140.0"/>
-  <line stroke="#000000" x1="6.666666666666671" x2="7.105427357601003e-15" y1="119.99999999999999" y2="119.99999999999999"/>
-  <line stroke="#888888" x1="40.25000000000003" x2="33.083333333333364" y1="5.25" y2="5.25"/>
-  <line stroke="#888888" x1="33.083333333333364" x2="33.083333333333364" y1="5.25" y2="4.750000000000001"/>
-  <line stroke="#888888" x1="33.083333333333364" x2="40.25000000000003" y1="4.750000000000001" y2="4.750000000000001"/>
-  <line stroke="#888888" x1="40.25000000000003" x2="40.25000000000003" y1="4.750000000000001" y2="5.25"/>
-  <line stroke="#888888" x1="1.666666666666693" x2="5.000000000000028" y1="6.666666666666665" y2="6.666666666666665"/>
-  <line stroke="#888888" x1="5.000000000000028" x2="5.000000000000028" y1="6.666666666666665" y2="13.33333333333333"/>
-  <line stroke="#888888" x1="5.000000000000028" x2="1.666666666666693" y1="13.33333333333333" y2="13.33333333333333"/>
-  <line stroke="#888888" x1="33.08333333333333" x2="40.24999999999999" y1="134.75000000000003" y2="134.75000000000003"/>
-  <line stroke="#888888" x1="40.24999999999999" x2="40.24999999999999" y1="134.75000000000003" y2="135.25000000000003"/>
-  <line stroke="#888888" x1="40.24999999999999" x2="33.08333333333333" y1="135.25000000000003" y2="135.25000000000003"/>
-  <line stroke="#888888" x1="33.08333333333333" x2="33.08333333333333" y1="135.25000000000003" y2="134.75000000000003"/>
-  <line stroke="#888888" x1="63.08333333333332" x2="70.24999999999999" y1="134.75000000000003" y2="134.75000000000003"/>
-  <line stroke="#888888" x1="70.24999999999999" x2="70.25" y1="134.75000000000003" y2="135.25000000000003"/>
-  <line stroke="#888888" x1="70.25" x2="63.08333333333332" y1="135.25000000000003" y2="135.25000000000003"/>
-  <line stroke="#888888" x1="63.08333333333332" x2="63.08333333333332" y1="135.25000000000003" y2="134.75000000000003"/>
-  <line stroke="#888888" x1="101.66666666666666" x2="98.33333333333333" y1="133.33333333333334" y2="133.33333333333334"/>
-  <line stroke="#888888" x1="98.33333333333333" x2="98.33333333333333" y1="133.33333333333334" y2="126.6666666666667"/>
-  <line stroke="#888888" x1="98.33333333333333" x2="101.66666666666666" y1="126.6666666666667" y2="126.6666666666667"/>
-  <line stroke="#888888" x1="70.25000000000009" x2="63.08333333333343" y1="5.2500000000000435" y2="5.250000000000029"/>
-  <line stroke="#888888" x1="63.08333333333343" x2="63.08333333333343" y1="5.250000000000029" y2="4.750000000000029"/>
-  <line stroke="#888888" x1="63.08333333333343" x2="70.25000000000009" y1="4.750000000000029" y2="4.7500000000000435"/>
-  <line stroke="#888888" x1="70.25000000000009" x2="70.25000000000009" y1="4.7500000000000435" y2="5.2500000000000435"/>
-  <line stroke="#888888" x1="101.66666666666674" x2="98.33333333333341" y1="13.333333333333387" y2="13.333333333333387"/>
-  <line stroke="#888888" x1="98.33333333333341" x2="98.33333333333341" y1="13.333333333333387" y2="6.666666666666722"/>
-  <line stroke="#888888" x1="98.33333333333341" x2="101.66666666666674" y1="6.666666666666722" y2="6.666666666666722"/>
-  <line stroke="#888888" x1="1.6666666666666714" x2="5.000000000000008" y1="126.66666666666666" y2="126.66666666666666"/>
-  <line stroke="#888888" x1="5.000000000000008" x2="5.000000000000008" y1="126.66666666666666" y2="133.33333333333331"/>
-  <line stroke="#888888" x1="5.000000000000008" x2="1.6666666666666714" y1="133.33333333333331" y2="133.33333333333331"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="76.66666666666664" x2="76.66666666666664" y1="53.851648000000004" y2="180.85164800000004"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="26.666666666666632" x2="26.666666666666632" y1="53.851648000000004" y2="180.85164800000004"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="51.666666666666636" x2="26.666666666666632" y1="53.851648000000004" y2="53.851648000000004"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="76.66666666666664" x2="51.666666666666636" y1="53.851648000000004" y2="53.851648000000004"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="51.666666666666636" x2="26.666666666666632" y1="-7.134504187433777e-08" y2="53.851648000000004"/>
+  <line stroke="#000000" x1="18.179873535340967" x2="12.423270101003796" y1="33.97156470018156" y2="39.81150361779138"/>
+  <line stroke="#000000" x1="51.66666666666664" x2="18.179873535340967" y1="-7.13450560851925e-08" y2="33.97156470018156"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="26.666666666666632" x2="12.423270101003796" y1="53.851648000000004" y2="39.81150361779138"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="26.666666666666636" x2="6.66666666666663" y1="53.851648000000004" y2="45.651442535401195"/>
+  <line stroke="#000000" x1="12.423270101003801" x2="6.66666666666663" y1="39.81150361779138" y2="45.651442535401195"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="6.666666666666637" x2="6.666666666666637" y1="53.851648000000004" y2="45.651442535401195"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="26.666666666666632" x2="6.666666666666637" y1="53.851648000000004" y2="53.851648000000004"/>
+  <line stroke="#000000" x1="3.9332648451337" x2="6.666666666666637" y1="53.85164800000002" y2="53.85164800000002"/>
+  <line stroke="#000000" x1="3.9332648451337" x2="3.9332648451337" y1="45.65144253540121" y2="53.85164800000002"/>
+  <line stroke="#000000" x1="6.666666666666637" x2="3.9332648451337" y1="45.65144253540121" y2="45.65144253540121"/>
+  <line stroke="#000000" x1="6.66666666666663" x2="6.666666666666658" y1="53.851648000000004" y2="180.85164800000004"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="6.666666666666665" x2="26.666666666666664" y1="180.85164800000004" y2="180.85164800000004"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="6.666666666666671" x2="26.666666666666668" y1="200.85164800000004" y2="180.85164800000004"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="6.666666666666671" x2="6.666666666666671" y1="200.85164800000004" y2="180.85164800000004"/>
+  <line stroke="#000000" x1="6.666666666666671" x2="26.666666666666668" y1="200.85164800000004" y2="200.85164800000004"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="26.666666666666668" x2="26.666666666666668" y1="200.85164800000004" y2="180.85164800000004"/>
+  <line stroke="#000000" x1="46.66666666666666" x2="51.666666666666664" y1="200.85164800000004" y2="200.85164800000004"/>
+  <line stroke="#000000" x1="26.666666666666664" x2="46.66666666666666" y1="200.85164800000004" y2="200.85164800000004"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="26.666666666666664" x2="51.666666666666664" y1="180.85164800000004" y2="180.85164800000004"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="51.666666666666664" x2="76.66666666666667" y1="180.85164800000004" y2="180.85164800000004"/>
+  <line stroke="#000000" x1="56.666666666666664" x2="76.66666666666667" y1="200.85164800000004" y2="200.85164800000004"/>
+  <line stroke="#000000" x1="51.666666666666664" x2="56.666666666666664" y1="200.85164800000004" y2="200.85164800000004"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="76.66666666666667" x2="76.66666666666667" y1="180.85164800000004" y2="200.85164800000004"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="76.66666666666667" x2="96.66666666666666" y1="180.85164800000004" y2="200.85164800000004"/>
+  <line stroke="#000000" x1="76.66666666666667" x2="96.66666666666666" y1="200.85164800000004" y2="200.85164800000004"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="96.66666666666666" x2="96.66666666666666" y1="180.851648" y2="200.851648"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="76.66666666666667" x2="96.66666666666666" y1="180.851648" y2="180.851648"/>
+  <line stroke="#000000" x1="103.33333333333333" x2="96.66666666666666" y1="180.85164800000004" y2="180.85164800000004"/>
+  <line stroke="#000000" x1="103.33333333333333" x2="103.33333333333333" y1="200.85164800000004" y2="180.85164800000004"/>
+  <line stroke="#000000" x1="96.66666666666666" x2="103.33333333333333" y1="200.85164800000004" y2="200.85164800000004"/>
+  <line stroke="#000000" x1="96.66666666666666" x2="96.66666666666666" y1="180.85164800000004" y2="53.85164800000003"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="96.66666666666666" x2="76.66666666666667" y1="53.85164800000003" y2="53.85164800000003"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="96.66666666666666" x2="76.66666666666667" y1="45.65144253540122" y2="53.85164800000003"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="96.66666666666666" x2="96.66666666666666" y1="45.65144253540122" y2="53.85164800000003"/>
+  <line stroke="#000000" x1="96.66666666666666" x2="90.9100632323295" y1="45.65144253540122" y2="39.81150361779142"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="90.9100632323295" x2="76.66666666666667" y1="39.81150361779142" y2="53.85164800000003"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="51.66666666666667" x2="76.66666666666667" y1="-7.134499924177363e-08" y2="53.85164800000003"/>
+  <line stroke="#000000" x1="85.15345979799233" x2="51.66666666666667" y1="33.9715647001816" y2="-7.134499924177363e-08"/>
+  <line stroke="#000000" x1="90.9100632323295" x2="85.15345979799233" y1="39.81150361779141" y2="33.9715647001816"/>
+  <line stroke="#000000" x1="99.40006848819961" x2="96.66666666666666" y1="45.65144253540122" y2="45.65144253540122"/>
+  <line stroke="#000000" x1="99.40006848819961" x2="99.40006848819961" y1="53.85164800000003" y2="45.65144253540122"/>
+  <line stroke="#000000" x1="96.66666666666666" x2="99.40006848819961" y1="53.85164800000003" y2="53.85164800000003"/>
+  <line stroke="#000000" x1="7.105427357601003e-15" x2="6.666666666666671" y1="200.85164800000004" y2="200.85164800000004"/>
+  <line stroke="#000000" x1="0.0" x2="7.105427357601003e-15" y1="180.85164800000004" y2="200.85164800000004"/>
+  <line stroke="#000000" x1="6.666666666666665" x2="0.0" y1="180.85164800000004" y2="180.85164800000004"/>
+  <line stroke="#888888" x1="18.074534715146097" x2="15.804663294145152" y1="37.35482121234262" y2="39.65755243235412"/>
+  <line stroke="#888888" x1="15.804663294145152" x2="15.448578380003584" y1="39.65755243235412" y2="39.306548822798916"/>
+  <line stroke="#888888" x1="15.448578380003584" x2="17.71844980100452" y1="39.306548822798916" y2="37.003817602787414"/>
+  <line stroke="#888888" x1="17.71844980100452" x2="18.074534715146097" y1="37.003817602787414" y2="37.35482121234262"/>
+  <line stroke="#888888" x1="4.616615300516934" x2="5.983316211283403" y1="48.384844356934146" y2="48.384844356934146"/>
+  <line stroke="#888888" x1="5.983316211283403" x2="5.983316211283403" y1="48.384844356934146" y2="51.118246178467075"/>
+  <line stroke="#888888" x1="5.983316211283403" x2="4.616615300516934" y1="51.118246178467075" y2="51.118246178467075"/>
+  <line stroke="#888888" x1="33.08333333333333" x2="40.24999999999999" y1="195.60164800000004" y2="195.60164800000004"/>
+  <line stroke="#888888" x1="40.24999999999999" x2="40.24999999999999" y1="195.60164800000004" y2="196.10164800000004"/>
+  <line stroke="#888888" x1="40.24999999999999" x2="33.08333333333333" y1="196.10164800000004" y2="196.10164800000004"/>
+  <line stroke="#888888" x1="33.08333333333333" x2="33.08333333333333" y1="196.10164800000004" y2="195.60164800000004"/>
+  <line stroke="#888888" x1="63.08333333333333" x2="70.25" y1="195.60164800000004" y2="195.60164800000004"/>
+  <line stroke="#888888" x1="70.25" x2="70.25" y1="195.60164800000004" y2="196.10164800000004"/>
+  <line stroke="#888888" x1="70.25" x2="63.08333333333333" y1="196.10164800000004" y2="196.10164800000004"/>
+  <line stroke="#888888" x1="63.08333333333333" x2="63.08333333333333" y1="196.10164800000004" y2="195.60164800000004"/>
+  <line stroke="#888888" x1="101.66666666666666" x2="98.33333333333333" y1="194.18498133333335" y2="194.18498133333335"/>
+  <line stroke="#888888" x1="98.33333333333333" x2="98.33333333333333" y1="194.18498133333335" y2="187.5183146666667"/>
+  <line stroke="#888888" x1="98.33333333333333" x2="101.66666666666666" y1="187.5183146666667" y2="187.5183146666667"/>
+  <line stroke="#888888" x1="87.52867003918816" x2="85.25879861818721" y1="39.65755243235416" y2="37.35482121234264"/>
+  <line stroke="#888888" x1="85.25879861818721" x2="85.61488353232878" y1="37.35482121234264" y2="37.00381760278744"/>
+  <line stroke="#888888" x1="85.61488353232878" x2="87.88475495332972" y1="37.00381760278744" y2="39.306548822798945"/>
+  <line stroke="#888888" x1="87.88475495332972" x2="87.52867003918816" y1="39.306548822798945" y2="39.65755243235416"/>
+  <line stroke="#888888" x1="98.71671803281637" x2="97.3500171220499" y1="51.11824617846709" y2="51.11824617846709"/>
+  <line stroke="#888888" x1="97.3500171220499" x2="97.3500171220499" y1="51.11824617846709" y2="48.38484435693416"/>
+  <line stroke="#888888" x1="97.3500171220499" x2="98.71671803281637" y1="48.38484435693416" y2="48.38484435693416"/>
+  <line stroke="#888888" x1="1.6666666666666645" x2="5.000000000000001" y1="187.5183146666667" y2="187.5183146666667"/>
+  <line stroke="#888888" x1="5.000000000000001" x2="5.000000000000001" y1="187.5183146666667" y2="194.18498133333335"/>
+  <line stroke="#888888" x1="5.000000000000001" x2="1.6666666666666645" y1="194.18498133333335" y2="194.18498133333335"/>
 </svg>
diff --git a/rocolib/output/BoatBase/graph-model.png b/rocolib/output/BoatBase/graph-model.png
index 240d235b23b17724e44682f50dc3c286aca86b91..e9d568289a52cee7927ae692cc30a8262a3baa29 100644
Binary files a/rocolib/output/BoatBase/graph-model.png and b/rocolib/output/BoatBase/graph-model.png differ
diff --git a/rocolib/output/BoatBase/graph-model.stl b/rocolib/output/BoatBase/graph-model.stl
index ef38fff9ca8cc55e9c30b3ace5f4d2747d7a80b7..95cac1096c2baf3f191193c8ddd69f720efc0a2e 100644
--- a/rocolib/output/BoatBase/graph-model.stl
+++ b/rocolib/output/BoatBase/graph-model.stl
@@ -1,240 +1,240 @@
 solid python
 facet normal 0 0 0
 outer loop
-vertex -0.0250 0.0500 0.0000
-vertex -0.0250 -0.0500 0.0000
-vertex 0.0250 -0.0500 0.0000
+vertex -0.0250 0.0635 0.0000
+vertex -0.0250 -0.0635 0.0000
+vertex 0.0250 -0.0635 0.0000
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0250 -0.0500 0.0000
-vertex 0.0250 0.0500 0.0000
-vertex -0.0250 0.0500 0.0000
+vertex 0.0250 -0.0635 0.0000
+vertex 0.0250 0.0635 0.0000
+vertex -0.0250 0.0635 0.0000
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0250 0.0500 -0.0200
-vertex -0.0250 -0.0500 -0.0200
-vertex -0.0250 -0.0500 0.0000
+vertex -0.0250 0.0635 -0.0200
+vertex -0.0250 -0.0635 -0.0200
+vertex -0.0250 -0.0635 0.0000
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0250 -0.0500 0.0000
-vertex -0.0250 0.0500 0.0000
-vertex -0.0250 0.0500 -0.0200
+vertex -0.0250 -0.0635 0.0000
+vertex -0.0250 0.0635 0.0000
+vertex -0.0250 0.0635 -0.0200
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0250 0.0500 0.0000
-vertex 0.0250 -0.0500 0.0000
-vertex 0.0250 -0.0500 -0.0200
+vertex 0.0250 0.0635 0.0000
+vertex 0.0250 -0.0635 0.0000
+vertex 0.0250 -0.0635 -0.0200
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0250 -0.0500 -0.0200
-vertex 0.0250 0.0500 -0.0200
-vertex 0.0250 0.0500 0.0000
+vertex 0.0250 -0.0635 -0.0200
+vertex 0.0250 0.0635 -0.0200
+vertex 0.0250 0.0635 0.0000
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0250 -0.0500 0.0000
-vertex -0.0250 -0.0500 -0.0200
-vertex -0.0050 -0.0500 -0.0200
+vertex -0.0250 -0.0635 0.0000
+vertex -0.0250 -0.0635 -0.0200
+vertex -0.0213 -0.0708 -0.0200
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0050 -0.0500 -0.0200
-vertex 0.0000 -0.0500 -0.0200
-vertex -0.0250 -0.0500 0.0000
+vertex -0.0213 -0.0708 -0.0200
+vertex 0.0000 -0.1135 -0.0200
+vertex -0.0250 -0.0635 0.0000
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0000 -0.0500 0.0000
-vertex -0.0250 -0.0500 0.0000
-vertex -0.0000 -0.0500 -0.0200
+vertex -0.0000 -0.0635 0.0000
+vertex -0.0250 -0.0635 0.0000
+vertex -0.0000 -0.1135 -0.0200
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0000 -0.0500 0.0000
-vertex 0.0000 -0.0500 -0.0200
-vertex 0.0250 -0.0500 0.0000
+vertex 0.0000 -0.0635 -0.0000
+vertex 0.0000 -0.1135 -0.0200
+vertex 0.0250 -0.0635 0.0000
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0050 -0.0500 -0.0200
-vertex 0.0250 -0.0500 -0.0200
-vertex 0.0250 -0.0500 0.0000
+vertex 0.0213 -0.0708 -0.0200
+vertex 0.0250 -0.0635 -0.0200
+vertex 0.0250 -0.0635 0.0000
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0250 -0.0500 0.0000
-vertex 0.0000 -0.0500 -0.0200
-vertex 0.0050 -0.0500 -0.0200
+vertex 0.0250 -0.0635 0.0000
+vertex 0.0000 -0.1135 -0.0200
+vertex 0.0213 -0.0708 -0.0200
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0250 -0.0500 -0.0200
-vertex -0.0250 -0.0500 0.0000
-vertex -0.0050 -0.0500 -0.0200
+vertex -0.0250 -0.0635 -0.0200
+vertex -0.0250 -0.0635 0.0000
+vertex -0.0213 -0.0708 -0.0200
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0250 -0.0500 -0.0200
-vertex -0.0050 -0.0500 -0.0200
-vertex -0.0250 -0.0500 0.0000
+vertex -0.0250 -0.0635 -0.0200
+vertex -0.0213 -0.0708 -0.0200
+vertex -0.0250 -0.0635 0.0000
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0250 -0.0500 -0.0200
-vertex 0.0050 -0.0500 -0.0200
-vertex 0.0250 -0.0500 0.0000
+vertex 0.0250 -0.0635 -0.0200
+vertex 0.0213 -0.0708 -0.0200
+vertex 0.0250 -0.0635 0.0000
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0250 -0.0500 -0.0200
-vertex 0.0250 -0.0500 0.0000
-vertex 0.0050 -0.0500 -0.0200
+vertex 0.0250 -0.0635 -0.0200
+vertex 0.0250 -0.0635 0.0000
+vertex 0.0213 -0.0708 -0.0200
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0250 0.0500 0.0000
-vertex 0.0250 0.0500 -0.0200
-vertex 0.0050 0.0500 -0.0200
+vertex 0.0250 0.0635 0.0000
+vertex 0.0250 0.0635 -0.0200
+vertex 0.0050 0.0635 -0.0200
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0050 0.0500 -0.0200
-vertex -0.0000 0.0500 -0.0200
-vertex 0.0250 0.0500 0.0000
+vertex 0.0050 0.0635 -0.0200
+vertex -0.0000 0.0635 -0.0200
+vertex 0.0250 0.0635 0.0000
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0000 0.0500 0.0000
-vertex 0.0250 0.0500 0.0000
-vertex -0.0000 0.0500 -0.0200
+vertex -0.0000 0.0635 0.0000
+vertex 0.0250 0.0635 0.0000
+vertex -0.0000 0.0635 -0.0200
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0000 0.0500 0.0000
-vertex -0.0000 0.0500 -0.0200
-vertex -0.0250 0.0500 0.0000
+vertex -0.0000 0.0635 0.0000
+vertex -0.0000 0.0635 -0.0200
+vertex -0.0250 0.0635 0.0000
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0050 0.0500 -0.0200
-vertex -0.0250 0.0500 -0.0200
-vertex -0.0250 0.0500 0.0000
+vertex -0.0050 0.0635 -0.0200
+vertex -0.0250 0.0635 -0.0200
+vertex -0.0250 0.0635 0.0000
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0250 0.0500 0.0000
-vertex -0.0000 0.0500 -0.0200
-vertex -0.0050 0.0500 -0.0200
+vertex -0.0250 0.0635 0.0000
+vertex -0.0000 0.0635 -0.0200
+vertex -0.0050 0.0635 -0.0200
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0250 0.0500 -0.0200
-vertex 0.0250 0.0500 0.0000
-vertex 0.0050 0.0500 -0.0200
+vertex 0.0250 0.0635 -0.0200
+vertex 0.0250 0.0635 0.0000
+vertex 0.0050 0.0635 -0.0200
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0250 0.0500 -0.0200
-vertex 0.0050 0.0500 -0.0200
-vertex 0.0250 0.0500 0.0000
+vertex 0.0250 0.0635 -0.0200
+vertex 0.0050 0.0635 -0.0200
+vertex 0.0250 0.0635 0.0000
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0250 0.0500 -0.0200
-vertex -0.0050 0.0500 -0.0200
-vertex -0.0250 0.0500 0.0000
+vertex -0.0250 0.0635 -0.0200
+vertex -0.0050 0.0635 -0.0200
+vertex -0.0250 0.0635 0.0000
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0250 0.0500 -0.0200
-vertex -0.0250 0.0500 0.0000
-vertex -0.0050 0.0500 -0.0200
+vertex -0.0250 0.0635 -0.0200
+vertex -0.0250 0.0635 0.0000
+vertex -0.0050 0.0635 -0.0200
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0050 -0.0507 -0.0134
-vertex -0.0050 -0.0500 -0.0200
-vertex -0.0250 -0.0500 -0.0200
+vertex -0.0216 -0.0710 -0.0173
+vertex -0.0213 -0.0708 -0.0200
+vertex -0.0250 -0.0635 -0.0200
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0250 -0.0500 -0.0200
-vertex -0.0250 -0.0507 -0.0134
-vertex -0.0050 -0.0507 -0.0134
+vertex -0.0250 -0.0635 -0.0200
+vertex -0.0253 -0.0636 -0.0173
+vertex -0.0216 -0.0710 -0.0173
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0250 -0.0507 -0.0134
-vertex 0.0250 -0.0500 -0.0200
-vertex 0.0050 -0.0500 -0.0200
+vertex 0.0253 -0.0636 -0.0173
+vertex 0.0250 -0.0635 -0.0200
+vertex 0.0213 -0.0708 -0.0200
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0050 -0.0500 -0.0200
-vertex 0.0050 -0.0507 -0.0134
-vertex 0.0250 -0.0507 -0.0134
+vertex 0.0213 -0.0708 -0.0200
+vertex 0.0216 -0.0710 -0.0173
+vertex 0.0253 -0.0636 -0.0173
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0050 0.0507 -0.0134
-vertex 0.0050 0.0500 -0.0200
-vertex 0.0250 0.0500 -0.0200
+vertex 0.0050 0.0642 -0.0134
+vertex 0.0050 0.0635 -0.0200
+vertex 0.0250 0.0635 -0.0200
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0250 0.0500 -0.0200
-vertex 0.0250 0.0507 -0.0134
-vertex 0.0050 0.0507 -0.0134
+vertex 0.0250 0.0635 -0.0200
+vertex 0.0250 0.0642 -0.0134
+vertex 0.0050 0.0642 -0.0134
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0250 0.0507 -0.0134
-vertex -0.0250 0.0500 -0.0200
-vertex -0.0050 0.0500 -0.0200
+vertex -0.0250 0.0642 -0.0134
+vertex -0.0250 0.0635 -0.0200
+vertex -0.0050 0.0635 -0.0200
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0050 0.0500 -0.0200
-vertex -0.0050 0.0507 -0.0134
-vertex -0.0250 0.0507 -0.0134
+vertex -0.0050 0.0635 -0.0200
+vertex -0.0050 0.0642 -0.0134
+vertex -0.0250 0.0642 -0.0134
 endloop
 endfacet
 endsolid python
diff --git a/rocolib/output/BoatBase/graph-silhouette.dxf b/rocolib/output/BoatBase/graph-silhouette.dxf
index 46c66f5effdc11ac4ed2ef90ac09884e0b267650..ef332d2bcf72fa5e39c8dcaf8d8d659250f46b67 100644
--- a/rocolib/output/BoatBase/graph-silhouette.dxf
+++ b/rocolib/output/BoatBase/graph-silhouette.dxf
@@ -945,15 +945,15 @@ DOTTED
   8
 0
  10
-76.6666666666667
+76.66666666666664
  20
-20.000000000000004
+53.851648000000004
  30
 0.0
  11
-76.6666666666667
+76.66666666666664
  21
-120.00000000000001
+180.85164800000004
  31
 0.0
   0
@@ -965,15 +965,15 @@ DOTTED
   8
 0
  10
-26.666666666666696
+26.666666666666632
  20
-20.000000000000004
+53.851648000000004
  30
 0.0
  11
-26.666666666666696
+26.666666666666632
  21
-120.00000000000001
+180.85164800000004
  31
 0.0
   0
@@ -985,15 +985,15 @@ DOTTED
   8
 0
  10
-51.66666666666669
+51.666666666666636
  20
-20.000000000000004
+53.851648000000004
  30
 0.0
  11
-26.666666666666696
+26.666666666666632
  21
-20.000000000000004
+53.851648000000004
  31
 0.0
   0
@@ -1005,33 +1005,35 @@ DOTTED
   8
 0
  10
-76.6666666666667
+76.66666666666664
  20
-20.000000000000004
+53.851648000000004
  30
 0.0
  11
-51.66666666666669
+51.666666666666636
  21
-20.000000000000004
+53.851648000000004
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
 0
  10
-46.6666666666667
+51.666666666666636
  20
-0.0
+-7.134504187433777e-08
  30
 0.0
  11
-26.666666666666696
+26.666666666666632
  21
-0.0
+53.851648000000004
  31
 0.0
   0
@@ -1041,15 +1043,33 @@ LINE
   8
 0
  10
-51.66666666666671
+18.179873535340967
  20
-0.0
+33.97156470018156
  30
 0.0
  11
-46.6666666666667
+12.423270101003796
  21
+39.81150361779138
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+51.66666666666664
+ 20
+-7.13450560851925e-08
+ 30
 0.0
+ 11
+18.179873535340967
+ 21
+33.97156470018156
  31
 0.0
   0
@@ -1061,15 +1081,15 @@ DOTTED
   8
 0
  10
-26.666666666666696
+26.666666666666632
  20
-20.000000000000004
+53.851648000000004
  30
 0.0
  11
-26.666666666666696
+12.423270101003796
  21
-0.0
+39.81150361779138
  31
 0.0
   0
@@ -1081,15 +1101,15 @@ DOTTED
   8
 0
  10
-26.666666666666696
+26.666666666666636
  20
-20.000000000000004
+53.851648000000004
  30
 0.0
  11
-6.666666666666694
+6.66666666666663
  21
-0.0
+45.651442535401195
  31
 0.0
   0
@@ -1099,15 +1119,15 @@ LINE
   8
 0
  10
-26.666666666666696
+12.423270101003801
  20
-0.0
+39.81150361779138
  30
 0.0
  11
-6.666666666666694
+6.66666666666663
  21
-0.0
+45.651442535401195
  31
 0.0
   0
@@ -1119,15 +1139,15 @@ DOTTED
   8
 0
  10
-6.666666666666694
+6.666666666666637
  20
-19.999999999999996
+53.851648000000004
  30
 0.0
  11
-6.666666666666701
+6.666666666666637
  21
-0.0
+45.651442535401195
  31
 0.0
   0
@@ -1139,15 +1159,15 @@ DOTTED
   8
 0
  10
-26.666666666666696
+26.666666666666632
  20
-20.000000000000004
+53.851648000000004
  30
 0.0
  11
-6.666666666666694
+6.666666666666637
  21
-19.999999999999996
+53.851648000000004
  31
 0.0
   0
@@ -1157,15 +1177,15 @@ LINE
   8
 0
  10
-2.8421709430404014e-14
+3.9332648451337
  20
-19.999999999999996
+53.85164800000002
  30
 0.0
  11
-6.666666666666694
+6.666666666666637
  21
-19.999999999999996
+53.85164800000002
  31
 0.0
   0
@@ -1175,15 +1195,15 @@ LINE
   8
 0
  10
-2.8421709430404014e-14
+3.9332648451337
  20
-0.0
+45.65144253540121
  30
 0.0
  11
-2.8421709430404014e-14
+3.9332648451337
  21
-19.999999999999996
+53.85164800000002
  31
 0.0
   0
@@ -1193,15 +1213,15 @@ LINE
   8
 0
  10
-6.666666666666694
+6.666666666666637
  20
-0.0
+45.65144253540121
  30
 0.0
  11
-2.8421709430404014e-14
+3.9332648451337
  21
-0.0
+45.65144253540121
  31
 0.0
   0
@@ -1211,15 +1231,15 @@ LINE
   8
 0
  10
-6.666666666666694
+6.66666666666663
  20
-19.999999999999996
+53.851648000000004
  30
 0.0
  11
-6.666666666666665
+6.666666666666658
  21
-120.0
+180.85164800000004
  31
 0.0
   0
@@ -1231,15 +1251,15 @@ DOTTED
   8
 0
  10
-6.666666666666671
+6.666666666666665
  20
-119.99999999999999
+180.85164800000004
  30
 0.0
  11
-26.66666666666667
+26.666666666666664
  21
-120.0
+180.85164800000004
  31
 0.0
   0
@@ -1251,15 +1271,15 @@ DOTTED
   8
 0
  10
-6.666666666666665
+6.666666666666671
  20
-140.0
+200.85164800000004
  30
 0.0
  11
-26.66666666666667
+26.666666666666668
  21
-120.0
+180.85164800000004
  31
 0.0
   0
@@ -1271,15 +1291,15 @@ DOTTED
   8
 0
  10
-6.666666666666665
+6.666666666666671
  20
-140.0
+200.85164800000004
  30
 0.0
  11
 6.666666666666671
  21
-119.99999999999999
+180.85164800000004
  31
 0.0
   0
@@ -1291,13 +1311,13 @@ LINE
  10
 6.666666666666671
  20
-140.0
+200.85164800000004
  30
 0.0
  11
-26.666666666666664
+26.666666666666668
  21
-140.00000000000003
+200.85164800000004
  31
 0.0
   0
@@ -1309,15 +1329,15 @@ DOTTED
   8
 0
  10
-26.666666666666664
+26.666666666666668
  20
-140.00000000000003
+200.85164800000004
  30
 0.0
  11
-26.66666666666667
+26.666666666666668
  21
-120.0
+180.85164800000004
  31
 0.0
   0
@@ -1327,15 +1347,15 @@ LINE
   8
 0
  10
-46.66666666666665
+46.66666666666666
  20
-140.00000000000003
+200.85164800000004
  30
 0.0
  11
-51.66666666666666
+51.666666666666664
  21
-140.00000000000003
+200.85164800000004
  31
 0.0
   0
@@ -1345,15 +1365,15 @@ LINE
   8
 0
  10
-26.66666666666666
+26.666666666666664
  20
-140.0
+200.85164800000004
  30
 0.0
  11
-46.66666666666665
+46.66666666666666
  21
-140.00000000000003
+200.85164800000004
  31
 0.0
   0
@@ -1365,15 +1385,15 @@ DOTTED
   8
 0
  10
-26.66666666666667
+26.666666666666664
  20
-120.0
+180.85164800000004
  30
 0.0
  11
 51.666666666666664
  21
-120.00000000000001
+180.85164800000004
  31
 0.0
   0
@@ -1387,13 +1407,13 @@ DOTTED
  10
 51.666666666666664
  20
-120.00000000000001
+180.85164800000004
  30
 0.0
  11
 76.66666666666667
  21
-120.00000000000003
+180.85164800000004
  31
 0.0
   0
@@ -1403,15 +1423,15 @@ LINE
   8
 0
  10
-56.66666666666666
+56.666666666666664
  20
-140.00000000000003
+200.85164800000004
  30
 0.0
  11
-76.66666666666666
+76.66666666666667
  21
-140.00000000000003
+200.85164800000004
  31
 0.0
   0
@@ -1421,15 +1441,15 @@ LINE
   8
 0
  10
-51.66666666666666
+51.666666666666664
  20
-140.00000000000003
+200.85164800000004
  30
 0.0
  11
-56.66666666666666
+56.666666666666664
  21
-140.00000000000003
+200.85164800000004
  31
 0.0
   0
@@ -1443,13 +1463,13 @@ DOTTED
  10
 76.66666666666667
  20
-120.00000000000003
+180.85164800000004
  30
 0.0
  11
-76.66666666666666
+76.66666666666667
  21
-140.00000000000003
+200.85164800000004
  31
 0.0
   0
@@ -1463,13 +1483,13 @@ DOTTED
  10
 76.66666666666667
  20
-120.00000000000003
+180.85164800000004
  30
 0.0
  11
-96.66666666666664
+96.66666666666666
  21
-140.00000000000003
+200.85164800000004
  31
 0.0
   0
@@ -1479,15 +1499,15 @@ LINE
   8
 0
  10
-76.66666666666666
+76.66666666666667
  20
-140.00000000000003
+200.85164800000004
  30
 0.0
  11
-96.66666666666664
+96.66666666666666
  21
-140.00000000000003
+200.85164800000004
  31
 0.0
   0
@@ -1501,13 +1521,13 @@ DOTTED
  10
 96.66666666666666
  20
-120.00000000000004
+180.851648
  30
 0.0
  11
-96.66666666666664
+96.66666666666666
  21
-140.00000000000003
+200.851648
  31
 0.0
   0
@@ -1521,13 +1541,13 @@ DOTTED
  10
 76.66666666666667
  20
-120.00000000000003
+180.851648
  30
 0.0
  11
 96.66666666666666
  21
-120.00000000000004
+180.851648
  31
 0.0
   0
@@ -1539,13 +1559,13 @@ LINE
  10
 103.33333333333333
  20
-120.00000000000004
+180.85164800000004
  30
 0.0
  11
 96.66666666666666
  21
-120.00000000000004
+180.85164800000004
  31
 0.0
   0
@@ -1555,15 +1575,15 @@ LINE
   8
 0
  10
-103.33333333333331
+103.33333333333333
  20
-140.00000000000003
+200.85164800000004
  30
 0.0
  11
 103.33333333333333
  21
-120.00000000000004
+180.85164800000004
  31
 0.0
   0
@@ -1573,15 +1593,15 @@ LINE
   8
 0
  10
-96.66666666666664
+96.66666666666666
  20
-140.00000000000003
+200.85164800000004
  30
 0.0
  11
-103.33333333333331
+103.33333333333333
  21
-140.00000000000003
+200.85164800000004
  31
 0.0
   0
@@ -1593,13 +1613,13 @@ LINE
  10
 96.66666666666666
  20
-120.00000000000004
+180.85164800000004
  30
 0.0
  11
-96.66666666666674
+96.66666666666666
  21
-20.00000000000006
+53.85164800000003
  31
 0.0
   0
@@ -1611,15 +1631,15 @@ DOTTED
   8
 0
  10
-96.66666666666673
+96.66666666666666
  20
-20.00000000000006
+53.85164800000003
  30
 0.0
  11
-76.66666666666674
+76.66666666666667
  21
-20.000000000000043
+53.85164800000003
  31
 0.0
   0
@@ -1631,15 +1651,15 @@ DOTTED
   8
 0
  10
-96.66666666666676
+96.66666666666666
  20
-5.684341886080803e-14
+45.65144253540122
  30
 0.0
  11
-76.66666666666674
+76.66666666666667
  21
-20.000000000000043
+53.85164800000003
  31
 0.0
   0
@@ -1651,15 +1671,15 @@ DOTTED
   8
 0
  10
-96.66666666666676
+96.66666666666666
  20
-5.684341886080803e-14
+45.65144253540122
  30
 0.0
  11
-96.66666666666673
+96.66666666666666
  21
-20.00000000000006
+53.85164800000003
  31
 0.0
   0
@@ -1669,15 +1689,15 @@ LINE
   8
 0
  10
-96.66666666666676
+96.66666666666666
  20
-7.105427357601003e-14
+45.65144253540122
  30
 0.0
  11
-76.66666666666676
+90.9100632323295
  21
-5.684341886080803e-14
+39.81150361779142
  31
 0.0
   0
@@ -1689,33 +1709,35 @@ DOTTED
   8
 0
  10
-76.66666666666676
+90.9100632323295
  20
-5.684341886080803e-14
+39.81150361779142
  30
 0.0
  11
-76.66666666666674
+76.66666666666667
  21
-20.000000000000043
+53.85164800000003
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
 0
  10
-56.66666666666677
+51.66666666666667
  20
-2.8421709430404014e-14
+-7.134499924177363e-08
  30
 0.0
  11
-51.66666666666677
+76.66666666666667
  21
-2.8421709430404014e-14
+53.85164800000003
  31
 0.0
   0
@@ -1725,15 +1747,15 @@ LINE
   8
 0
  10
-76.66666666666676
+85.15345979799233
  20
-5.684341886080803e-14
+33.9715647001816
  30
 0.0
  11
-56.66666666666677
+51.66666666666667
  21
-2.8421709430404014e-14
+-7.134499924177363e-08
  31
 0.0
   0
@@ -1743,15 +1765,15 @@ LINE
   8
 0
  10
-103.33333333333341
+90.9100632323295
  20
-5.684341886080803e-14
+39.81150361779141
  30
 0.0
  11
-96.66666666666676
+85.15345979799233
  21
-5.684341886080803e-14
+33.9715647001816
  31
 0.0
   0
@@ -1761,15 +1783,15 @@ LINE
   8
 0
  10
-103.33333333333339
+99.40006848819961
  20
-20.00000000000006
+45.65144253540122
  30
 0.0
  11
-103.33333333333341
+96.66666666666666
  21
-5.684341886080803e-14
+45.65144253540122
  31
 0.0
   0
@@ -1779,15 +1801,15 @@ LINE
   8
 0
  10
-96.66666666666673
+99.40006848819961
  20
-20.00000000000005
+53.85164800000003
  30
 0.0
  11
-103.33333333333339
+99.40006848819961
  21
-20.00000000000006
+45.65144253540122
  31
 0.0
   0
@@ -1797,15 +1819,15 @@ LINE
   8
 0
  10
-0.0
+96.66666666666666
  20
-140.0
+53.85164800000003
  30
 0.0
  11
-6.666666666666665
+99.40006848819961
  21
-140.0
+53.85164800000003
  31
 0.0
   0
@@ -1817,13 +1839,13 @@ LINE
  10
 7.105427357601003e-15
  20
-119.99999999999999
+200.85164800000004
  30
 0.0
  11
-0.0
+6.666666666666671
  21
-140.0
+200.85164800000004
  31
 0.0
   0
@@ -1833,15 +1855,15 @@ LINE
   8
 0
  10
-6.666666666666671
+0.0
  20
-119.99999999999999
+180.85164800000004
  30
 0.0
  11
 7.105427357601003e-15
  21
-119.99999999999999
+200.85164800000004
  31
 0.0
   0
@@ -1851,15 +1873,15 @@ LINE
   8
 0
  10
-40.25000000000003
+6.666666666666665
  20
-5.25
+180.85164800000004
  30
 0.0
  11
-33.083333333333364
+0.0
  21
-5.25
+180.85164800000004
  31
 0.0
   0
@@ -1869,15 +1891,15 @@ LINE
   8
 0
  10
-33.083333333333364
+18.074534715146097
  20
-5.25
+37.35482121234262
  30
 0.0
  11
-33.083333333333364
+15.804663294145152
  21
-4.750000000000001
+39.65755243235412
  31
 0.0
   0
@@ -1887,15 +1909,15 @@ LINE
   8
 0
  10
-33.083333333333364
+15.804663294145152
  20
-4.750000000000001
+39.65755243235412
  30
 0.0
  11
-40.25000000000003
+15.448578380003584
  21
-4.750000000000001
+39.306548822798916
  31
 0.0
   0
@@ -1905,15 +1927,15 @@ LINE
   8
 0
  10
-40.25000000000003
+15.448578380003584
  20
-4.750000000000001
+39.306548822798916
  30
 0.0
  11
-40.25000000000003
+17.71844980100452
  21
-5.25
+37.003817602787414
  31
 0.0
   0
@@ -1923,15 +1945,15 @@ LINE
   8
 0
  10
-1.666666666666693
+17.71844980100452
  20
-6.666666666666665
+37.003817602787414
  30
 0.0
  11
-5.000000000000028
+18.074534715146097
  21
-6.666666666666665
+37.35482121234262
  31
 0.0
   0
@@ -1941,15 +1963,15 @@ LINE
   8
 0
  10
-5.000000000000028
+4.616615300516934
  20
-6.666666666666665
+48.384844356934146
  30
 0.0
  11
-5.000000000000028
+5.983316211283403
  21
-13.33333333333333
+48.384844356934146
  31
 0.0
   0
@@ -1959,15 +1981,33 @@ LINE
   8
 0
  10
-5.000000000000028
+5.983316211283403
  20
-13.33333333333333
+48.384844356934146
  30
 0.0
  11
-1.666666666666693
+5.983316211283403
  21
-13.33333333333333
+51.118246178467075
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+5.983316211283403
+ 20
+51.118246178467075
+ 30
+0.0
+ 11
+4.616615300516934
+ 21
+51.118246178467075
  31
 0.0
   0
@@ -1979,13 +2019,13 @@ LINE
  10
 33.08333333333333
  20
-134.75000000000003
+195.60164800000004
  30
 0.0
  11
 40.24999999999999
  21
-134.75000000000003
+195.60164800000004
  31
 0.0
   0
@@ -1997,13 +2037,13 @@ LINE
  10
 40.24999999999999
  20
-134.75000000000003
+195.60164800000004
  30
 0.0
  11
 40.24999999999999
  21
-135.25000000000003
+196.10164800000004
  31
 0.0
   0
@@ -2015,13 +2055,13 @@ LINE
  10
 40.24999999999999
  20
-135.25000000000003
+196.10164800000004
  30
 0.0
  11
 33.08333333333333
  21
-135.25000000000003
+196.10164800000004
  31
 0.0
   0
@@ -2033,13 +2073,13 @@ LINE
  10
 33.08333333333333
  20
-135.25000000000003
+196.10164800000004
  30
 0.0
  11
 33.08333333333333
  21
-134.75000000000003
+195.60164800000004
  31
 0.0
   0
@@ -2049,15 +2089,15 @@ LINE
   8
 0
  10
-63.08333333333332
+63.08333333333333
  20
-134.75000000000003
+195.60164800000004
  30
 0.0
  11
-70.24999999999999
+70.25
  21
-134.75000000000003
+195.60164800000004
  31
 0.0
   0
@@ -2067,15 +2107,15 @@ LINE
   8
 0
  10
-70.24999999999999
+70.25
  20
-134.75000000000003
+195.60164800000004
  30
 0.0
  11
 70.25
  21
-135.25000000000003
+196.10164800000004
  31
 0.0
   0
@@ -2087,13 +2127,13 @@ LINE
  10
 70.25
  20
-135.25000000000003
+196.10164800000004
  30
 0.0
  11
-63.08333333333332
+63.08333333333333
  21
-135.25000000000003
+196.10164800000004
  31
 0.0
   0
@@ -2103,15 +2143,15 @@ LINE
   8
 0
  10
-63.08333333333332
+63.08333333333333
  20
-135.25000000000003
+196.10164800000004
  30
 0.0
  11
-63.08333333333332
+63.08333333333333
  21
-134.75000000000003
+195.60164800000004
  31
 0.0
   0
@@ -2123,13 +2163,13 @@ LINE
  10
 101.66666666666666
  20
-133.33333333333334
+194.18498133333335
  30
 0.0
  11
 98.33333333333333
  21
-133.33333333333334
+194.18498133333335
  31
 0.0
   0
@@ -2141,13 +2181,13 @@ LINE
  10
 98.33333333333333
  20
-133.33333333333334
+194.18498133333335
  30
 0.0
  11
 98.33333333333333
  21
-126.6666666666667
+187.5183146666667
  31
 0.0
   0
@@ -2159,13 +2199,13 @@ LINE
  10
 98.33333333333333
  20
-126.6666666666667
+187.5183146666667
  30
 0.0
  11
 101.66666666666666
  21
-126.6666666666667
+187.5183146666667
  31
 0.0
   0
@@ -2175,15 +2215,15 @@ LINE
   8
 0
  10
-70.25000000000009
+87.52867003918816
  20
-5.2500000000000435
+39.65755243235416
  30
 0.0
  11
-63.08333333333343
+85.25879861818721
  21
-5.250000000000029
+37.35482121234264
  31
 0.0
   0
@@ -2193,15 +2233,15 @@ LINE
   8
 0
  10
-63.08333333333343
+85.25879861818721
  20
-5.250000000000029
+37.35482121234264
  30
 0.0
  11
-63.08333333333343
+85.61488353232878
  21
-4.750000000000029
+37.00381760278744
  31
 0.0
   0
@@ -2211,15 +2251,15 @@ LINE
   8
 0
  10
-63.08333333333343
+85.61488353232878
  20
-4.750000000000029
+37.00381760278744
  30
 0.0
  11
-70.25000000000009
+87.88475495332972
  21
-4.7500000000000435
+39.306548822798945
  31
 0.0
   0
@@ -2229,15 +2269,15 @@ LINE
   8
 0
  10
-70.25000000000009
+87.88475495332972
  20
-4.7500000000000435
+39.306548822798945
  30
 0.0
  11
-70.25000000000009
+87.52867003918816
  21
-5.2500000000000435
+39.65755243235416
  31
 0.0
   0
@@ -2247,15 +2287,15 @@ LINE
   8
 0
  10
-101.66666666666674
+98.71671803281637
  20
-13.333333333333387
+51.11824617846709
  30
 0.0
  11
-98.33333333333341
+97.3500171220499
  21
-13.333333333333387
+51.11824617846709
  31
 0.0
   0
@@ -2265,15 +2305,15 @@ LINE
   8
 0
  10
-98.33333333333341
+97.3500171220499
  20
-13.333333333333387
+51.11824617846709
  30
 0.0
  11
-98.33333333333341
+97.3500171220499
  21
-6.666666666666722
+48.38484435693416
  31
 0.0
   0
@@ -2283,15 +2323,15 @@ LINE
   8
 0
  10
-98.33333333333341
+97.3500171220499
  20
-6.666666666666722
+48.38484435693416
  30
 0.0
  11
-101.66666666666674
+98.71671803281637
  21
-6.666666666666722
+48.38484435693416
  31
 0.0
   0
@@ -2301,15 +2341,15 @@ LINE
   8
 0
  10
-1.6666666666666714
+1.6666666666666645
  20
-126.66666666666666
+187.5183146666667
  30
 0.0
  11
-5.000000000000008
+5.000000000000001
  21
-126.66666666666666
+187.5183146666667
  31
 0.0
   0
@@ -2319,15 +2359,15 @@ LINE
   8
 0
  10
-5.000000000000008
+5.000000000000001
  20
-126.66666666666666
+187.5183146666667
  30
 0.0
  11
-5.000000000000008
+5.000000000000001
  21
-133.33333333333331
+194.18498133333335
  31
 0.0
   0
@@ -2337,15 +2377,15 @@ LINE
   8
 0
  10
-5.000000000000008
+5.000000000000001
  20
-133.33333333333331
+194.18498133333335
  30
 0.0
  11
-1.6666666666666714
+1.6666666666666645
  21
-133.33333333333331
+194.18498133333335
  31
 0.0
   0
diff --git a/rocolib/output/BoatWithServoStackBattery/graph-anim.svg b/rocolib/output/BoatWithServoStackBattery/graph-anim.svg
index 641cf119a706dd51b7adf10f01d5273f24384a17..d83a0ceb5cfe7c0a173bfc1cac1388195d3425f5 100644
--- a/rocolib/output/BoatWithServoStackBattery/graph-anim.svg
+++ b/rocolib/output/BoatWithServoStackBattery/graph-anim.svg
@@ -1,634 +1,626 @@
 <?xml version="1.0" encoding="utf-8" ?>
-<svg xmlns="http://www.w3.org/2000/svg" xmlns:ev="http://www.w3.org/2001/xml-events" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="full" height="254.160204mm" version="1.1" viewBox="0.000000 0.000000 873.466804 254.160204" width="873.466804mm">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:ev="http://www.w3.org/2001/xml-events" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="full" height="402.000000mm" version="1.1" viewBox="0.000000 0.000000 688.308556 402.000000" width="688.308556mm">
   <defs/>
-  <line stroke="#000000" x1="228.00000000000003" x2="228.00000000000003" y1="150.30855600000004" y2="150.30855600000004"/>
-  <line stroke="#000000" x1="0.0" x2="228.00000000000003" y1="150.30855600000004" y2="150.30855600000004"/>
-  <line stroke="#000000" x1="0.0" x2="0.0" y1="150.30855600000004" y2="150.30855600000004"/>
-  <line stroke="#000000" x1="0.0" x2="0.0" y1="140.30855600000004" y2="150.30855600000004"/>
-  <line stroke="#000000" x1="60.00000000000001" x2="0.0" y1="140.30855600000004" y2="140.30855600000004"/>
-  <line stroke="#000000" x1="60.00000000000001" x2="60.00000000000001" y1="150.30855600000004" y2="140.30855600000004"/>
-  <line stroke="#000000" x1="133.00000000000003" x2="60.00000000000001" y1="150.30855600000004" y2="150.30855600000004"/>
-  <line stroke="#000000" x1="167.00000000000003" x2="157.0" y1="150.30855600000004" y2="150.30855600000004"/>
-  <line stroke="#000000" x1="228.00000000000003" x2="228.00000000000003" y1="150.30855600000004" y2="150.30855600000004"/>
-  <line stroke="#000000" x1="60.00000000000001" x2="60.00000000000001" y1="150.30855600000004" y2="150.30855600000004"/>
-  <line stroke="#000000" x1="157.0" x2="157.0" y1="150.30855600000004" y2="116.30855600000002"/>
-  <line opacity="0.5" stroke="#0000ff" x1="133.00000000000003" x2="133.00000000000003" y1="116.30855600000002" y2="150.30855600000004"/>
-  <line stroke="#000000" x1="133.00000000000003" x2="133.00000000000003" y1="80.30855600000002" y2="116.30855600000002"/>
-  <line opacity="0.5" stroke="#ff0000" x1="133.00000000000003" x2="157.0" y1="80.30855600000002" y2="80.30855600000002"/>
-  <line stroke="#000000" x1="157.0" x2="157.0" y1="116.30855600000002" y2="80.30855600000002"/>
-  <line stroke="#000000" x1="157.0" x2="157.0" y1="80.30855600000002" y2="35.30855600000002"/>
-  <line stroke="#000000" x1="133.00000000000003" x2="133.00000000000003" y1="35.30855600000002" y2="80.30855600000002"/>
-  <line stroke="#000000" x1="133.00000000000003" x2="133.00000000000003" y1="30.308556000000017" y2="35.30855600000002"/>
-  <line stroke="#000000" x1="157.0" x2="133.00000000000003" y1="30.308556000000017" y2="30.308556000000017"/>
-  <line stroke="#000000" x1="157.0" x2="157.0" y1="35.30855600000002" y2="30.308556000000017"/>
-  <line stroke="#000000" x1="133.00000000000003" x2="113.00000000000001" y1="116.30855600000002" y2="116.30855600000002"/>
-  <line stroke="#000000" x1="113.00000000000001" x2="133.00000000000003" y1="150.30855600000004" y2="150.30855600000004"/>
-  <line opacity="0.5" stroke="#0000ff" x1="113.00000000000001" x2="113.00000000000001" y1="116.30855600000002" y2="150.30855600000004"/>
-  <line stroke="#000000" x1="113.00000000000001" x2="89.00000000000001" y1="116.30855600000002" y2="116.30855600000002"/>
-  <line stroke="#000000" x1="89.00000000000001" x2="113.00000000000001" y1="150.30855600000004" y2="150.30855600000004"/>
-  <line opacity="0.5" stroke="#0000ff" x1="89.00000000000001" x2="89.00000000000001" y1="116.30855600000002" y2="150.30855600000004"/>
-  <line stroke="#000000" x1="89.00000000000001" x2="69.00000000000001" y1="116.30855600000002" y2="116.30855600000002"/>
-  <line stroke="#000000" x1="69.00000000000001" x2="89.00000000000001" y1="150.30855600000004" y2="150.30855600000004"/>
-  <line opacity="0.5" stroke="#0000ff" x1="69.00000000000001" x2="69.00000000000001" y1="150.30855600000004" y2="116.30855600000002"/>
-  <line stroke="#000000" x1="59.00000000000001" x2="69.00000000000001" y1="150.30855600000004" y2="150.30855600000004"/>
-  <line stroke="#000000" x1="59.00000000000001" x2="59.00000000000001" y1="116.30855600000002" y2="150.30855600000004"/>
-  <line stroke="#000000" x1="69.00000000000001" x2="59.00000000000001" y1="116.30855600000002" y2="116.30855600000002"/>
-  <line opacity="0.25" stroke="#0000ff" x1="167.00000000000003" x2="228.00000000000003" y1="114.16993400081472" y2="114.16993400081472"/>
-  <line stroke="#000000" x1="228.00000000000003" x2="228.00000000000003" y1="150.30855600000004" y2="114.16993400081472"/>
-  <line stroke="#000000" x1="167.00000000000003" x2="167.00000000000003" y1="114.16993400081472" y2="150.30855600000004"/>
-  <line opacity="0.25" stroke="#0000ff" x1="228.00000000000003" x2="167.00000000000003" y1="90.16993400081472" y2="90.16993400081472"/>
-  <line opacity="0.5" stroke="#0000ff" x1="228.00000000000003" x2="228.00000000000003" y1="90.16993400081472" y2="114.16993400081472"/>
-  <line stroke="#000000" x1="167.00000000000003" x2="167.00000000000003" y1="54.03131200162941" y2="90.16993400081473"/>
-  <line stroke="#000000" x1="228.00000000000003" x2="228.00000000000003" y1="90.16993400081473" y2="54.03131200162941"/>
-  <line stroke="#000000" x1="167.00000000000003" x2="167.00000000000003" y1="44.03131200162941" y2="54.03131200162941"/>
-  <line stroke="#000000" x1="228.00000000000003" x2="167.00000000000003" y1="44.03131200162941" y2="44.03131200162941"/>
-  <line stroke="#000000" x1="228.00000000000003" x2="228.00000000000003" y1="54.03131200162941" y2="44.03131200162941"/>
-  <line stroke="#000000" x1="238.00000000000003" x2="228.00000000000003" y1="90.16993400081472" y2="90.16993400081472"/>
-  <line stroke="#000000" x1="238.00000000000003" x2="238.00000000000003" y1="114.16993400081472" y2="90.16993400081472"/>
-  <line stroke="#000000" x1="228.00000000000003" x2="238.00000000000003" y1="114.16993400081472" y2="114.16993400081472"/>
-  <line stroke="#000000" x1="157.0" x2="167.00000000000003" y1="114.16993400081472" y2="114.16993400081472"/>
-  <line stroke="#000000" x1="157.0" x2="157.0" y1="90.16993400081472" y2="114.16993400081472"/>
-  <line stroke="#000000" x1="167.00000000000003" x2="157.0" y1="90.16993400081472" y2="90.16993400081472"/>
-  <line stroke="#888888" x1="40.00000000000001" x2="45.0" y1="142.80855600000004" y2="142.80855600000004"/>
-  <line stroke="#888888" x1="45.0" x2="40.00000000000001" y1="142.80855600000004" y2="147.80855600000004"/>
-  <line stroke="#888888" x1="40.00000000000001" x2="20.000000000000004" y1="147.80855600000004" y2="147.80855600000004"/>
-  <line stroke="#888888" x1="20.000000000000004" x2="15.000000000000002" y1="147.80855600000004" y2="142.80855600000004"/>
-  <line stroke="#888888" x1="15.000000000000002" x2="20.000000000000004" y1="142.80855600000004" y2="142.80855600000004"/>
-  <line stroke="#888888" x1="149.25000000000003" x2="149.25000000000003" y1="139.2252226666667" y2="127.39188933333337"/>
-  <line stroke="#888888" x1="149.25000000000003" x2="149.75" y1="127.39188933333337" y2="127.39188933333337"/>
-  <line stroke="#888888" x1="149.75" x2="149.75" y1="127.39188933333337" y2="139.2252226666667"/>
-  <line stroke="#888888" x1="149.75" x2="149.25000000000003" y1="139.2252226666667" y2="139.2252226666667"/>
-  <line stroke="#888888" x1="149.00000000000003" x2="151.50000000000003" y1="31.558556000000014" y2="31.558556000000014"/>
-  <line stroke="#888888" x1="151.50000000000003" x2="149.00000000000003" y1="31.558556000000014" y2="34.05855600000001"/>
-  <line stroke="#888888" x1="149.00000000000003" x2="141.0" y1="34.05855600000001" y2="34.05855600000001"/>
-  <line stroke="#888888" x1="141.0" x2="138.5" y1="34.05855600000001" y2="31.558556000000014"/>
-  <line stroke="#888888" x1="138.5" x2="141.0" y1="31.558556000000014" y2="31.558556000000014"/>
-  <line stroke="#888888" x1="114.00000000000001" x2="118.00000000000001" y1="127.30855600000004" y2="127.30855600000004"/>
-  <line stroke="#888888" x1="118.00000000000001" x2="118.00000000000001" y1="127.30855600000004" y2="139.30855600000004"/>
-  <line stroke="#888888" x1="118.00000000000001" x2="114.00000000000001" y1="139.30855600000004" y2="139.30855600000004"/>
-  <line stroke="#888888" x1="114.00000000000001" x2="114.00000000000001" y1="139.30855600000004" y2="127.30855600000004"/>
-  <line stroke="#888888" x1="126.00000000000001" x2="130.0" y1="128.808556" y2="128.808556"/>
-  <line stroke="#888888" x1="130.0" x2="130.0" y1="128.808556" y2="137.808556"/>
-  <line stroke="#888888" x1="130.0" x2="126.00000000000001" y1="137.808556" y2="137.808556"/>
-  <line stroke="#888888" x1="126.00000000000001" x2="126.00000000000001" y1="137.808556" y2="128.808556"/>
-  <line stroke="#888888" x1="89.50000000000001" x2="112.50000000000001" y1="127.30855600000004" y2="127.30855600000004"/>
-  <line stroke="#888888" x1="112.50000000000001" x2="112.50000000000001" y1="127.30855600000004" y2="139.30855600000004"/>
-  <line stroke="#888888" x1="112.50000000000001" x2="89.50000000000001" y1="139.30855600000004" y2="139.30855600000004"/>
-  <line stroke="#888888" x1="89.50000000000001" x2="89.50000000000001" y1="139.30855600000004" y2="127.30855600000004"/>
-  <line stroke="#888888" x1="84.0" x2="88.00000000000001" y1="127.30855600000004" y2="127.30855600000004"/>
-  <line stroke="#888888" x1="88.00000000000001" x2="88.00000000000001" y1="127.30855600000004" y2="139.30855600000004"/>
-  <line stroke="#888888" x1="88.00000000000001" x2="84.0" y1="139.30855600000004" y2="139.30855600000004"/>
-  <line stroke="#888888" x1="84.0" x2="84.0" y1="139.30855600000004" y2="127.30855600000004"/>
-  <line stroke="#888888" x1="61.50000000000001" x2="66.50000000000001" y1="127.64188933333337" y2="127.64188933333337"/>
-  <line stroke="#888888" x1="66.50000000000001" x2="66.50000000000001" y1="127.64188933333337" y2="138.9752226666667"/>
-  <line stroke="#888888" x1="66.50000000000001" x2="61.50000000000001" y1="138.9752226666667" y2="138.9752226666667"/>
-  <line stroke="#888888" x1="185.00000000000003" x2="196.00000000000003" y1="95.66993400081472" y2="95.66993400081472"/>
-  <line stroke="#888888" x1="196.00000000000003" x2="196.00000000000003" y1="95.66993400081472" y2="108.66993400081472"/>
-  <line stroke="#888888" x1="196.00000000000003" x2="185.00000000000003" y1="108.66993400081472" y2="108.66993400081472"/>
-  <line stroke="#888888" x1="185.00000000000003" x2="185.00000000000003" y1="108.66993400081472" y2="95.66993400081472"/>
-  <line stroke="#888888" x1="216.50000000000003" x2="222.50000000000003" y1="97.16993400081472" y2="97.16993400081472"/>
-  <line stroke="#888888" x1="222.50000000000003" x2="222.50000000000003" y1="97.16993400081472" y2="107.16993400081472"/>
-  <line stroke="#888888" x1="222.50000000000003" x2="216.50000000000003" y1="107.16993400081472" y2="107.16993400081472"/>
-  <line stroke="#888888" x1="216.50000000000003" x2="216.50000000000003" y1="107.16993400081472" y2="97.16993400081472"/>
-  <line stroke="#888888" x1="216.90909090909093" x2="216.90909090909093" y1="46.5313120016294" y2="51.53131200162941"/>
-  <line stroke="#888888" x1="216.90909090909093" x2="205.81818181818184" y1="51.53131200162941" y2="51.53131200162941"/>
-  <line stroke="#888888" x1="205.81818181818184" x2="205.81818181818184" y1="51.53131200162941" y2="46.5313120016294"/>
-  <line stroke="#888888" x1="189.18181818181822" x2="189.18181818181822" y1="46.5313120016294" y2="51.53131200162941"/>
-  <line stroke="#888888" x1="189.18181818181822" x2="178.09090909090912" y1="51.53131200162941" y2="51.53131200162941"/>
-  <line stroke="#888888" x1="178.09090909090912" x2="178.09090909090912" y1="51.53131200162941" y2="46.5313120016294"/>
-  <line stroke="#888888" x1="235.50000000000003" x2="230.50000000000003" y1="106.16993400081472" y2="106.16993400081472"/>
-  <line stroke="#888888" x1="230.50000000000003" x2="230.50000000000003" y1="106.16993400081472" y2="98.16993400081472"/>
-  <line stroke="#888888" x1="230.50000000000003" x2="235.50000000000003" y1="98.16993400081472" y2="98.16993400081472"/>
-  <line stroke="#888888" x1="159.5" x2="164.50000000000003" y1="98.16993400081472" y2="98.16993400081472"/>
-  <line stroke="#888888" x1="164.50000000000003" x2="164.50000000000003" y1="98.16993400081472" y2="106.16993400081472"/>
-  <line stroke="#888888" x1="164.50000000000003" x2="159.5" y1="106.16993400081472" y2="106.16993400081472"/>
-  <line stroke="#000000" x1="476.00000000000006" x2="476.00000000000006" y1="150.30855600000004" y2="150.30855600000004"/>
-  <line stroke="#000000" x1="248.00000000000006" x2="476.00000000000006" y1="150.30855600000004" y2="150.30855600000004"/>
-  <line stroke="#000000" x1="248.00000000000006" x2="248.00000000000006" y1="150.30855600000004" y2="150.30855600000004"/>
-  <line stroke="#000000" x1="309.0" x2="248.00000000000006" y1="150.30855600000004" y2="150.30855600000004"/>
-  <line stroke="#000000" x1="319.0" x2="309.0" y1="150.30855600000004" y2="150.30855600000004"/>
-  <line stroke="#000000" x1="416.00000000000006" x2="343.00000000000006" y1="150.30855600000004" y2="150.30855600000004"/>
-  <line stroke="#000000" x1="416.00000000000006" x2="416.00000000000006" y1="150.30855600000004" y2="150.30855600000004"/>
-  <line stroke="#000000" x1="248.00000000000006" x2="248.00000000000006" y1="150.30855600000004" y2="150.30855600000004"/>
-  <line stroke="#000000" x1="319.0" x2="319.0" y1="116.30855600000002" y2="150.30855600000004"/>
-  <line opacity="0.5" stroke="#0000ff" x1="343.00000000000006" x2="343.00000000000006" y1="150.30855600000004" y2="116.30855600000002"/>
-  <line stroke="#000000" x1="319.0" x2="319.0" y1="80.30855600000002" y2="116.30855600000002"/>
-  <line opacity="0.5" stroke="#ff0000" x1="319.0" x2="343.00000000000006" y1="80.30855600000002" y2="80.30855600000002"/>
-  <line stroke="#000000" x1="343.00000000000006" x2="343.00000000000006" y1="116.30855600000002" y2="80.30855600000002"/>
-  <line stroke="#000000" x1="343.00000000000006" x2="343.00000000000006" y1="80.30855600000002" y2="35.30855600000002"/>
-  <line stroke="#000000" x1="319.0" x2="319.0" y1="35.30855600000002" y2="80.30855600000002"/>
-  <line stroke="#000000" x1="343.00000000000006" x2="319.0" y1="35.30855600000002" y2="35.30855600000002"/>
-  <line stroke="#000000" x1="343.00000000000006" x2="363.00000000000006" y1="150.30855600000004" y2="150.30855600000004"/>
-  <line stroke="#000000" x1="363.00000000000006" x2="343.00000000000006" y1="116.30855600000002" y2="116.30855600000002"/>
-  <line opacity="0.5" stroke="#0000ff" x1="363.00000000000006" x2="363.00000000000006" y1="150.30855600000004" y2="116.30855600000002"/>
-  <line stroke="#000000" x1="363.00000000000006" x2="387.0" y1="150.30855600000004" y2="150.30855600000004"/>
-  <line stroke="#000000" x1="387.0" x2="363.00000000000006" y1="116.30855600000002" y2="116.30855600000002"/>
-  <line opacity="0.5" stroke="#0000ff" x1="387.0" x2="387.0" y1="150.30855600000004" y2="116.30855600000002"/>
-  <line stroke="#000000" x1="387.0" x2="407.00000000000006" y1="150.30855600000004" y2="150.30855600000004"/>
-  <line stroke="#000000" x1="407.00000000000006" x2="387.0" y1="116.30855600000002" y2="116.30855600000002"/>
-  <line opacity="0.5" stroke="#0000ff" x1="407.00000000000006" x2="407.00000000000006" y1="116.30855600000002" y2="150.30855600000004"/>
-  <line stroke="#000000" x1="417.00000000000006" x2="407.00000000000006" y1="116.30855600000002" y2="116.30855600000002"/>
-  <line stroke="#000000" x1="417.00000000000006" x2="417.00000000000006" y1="150.30855600000004" y2="116.30855600000002"/>
-  <line stroke="#000000" x1="407.00000000000006" x2="417.00000000000006" y1="150.30855600000004" y2="150.30855600000004"/>
-  <line stroke="#000000" x1="476.00000000000006" x2="476.00000000000006" y1="150.30855600000004" y2="88.65427796513858"/>
-  <line stroke="#000000" x1="416.00000000000006" x2="416.00000000000006" y1="88.65427796513858" y2="150.30855600000004"/>
-  <line opacity="0.25" stroke="#ff0000" x1="416.00000000000006" x2="476.00000000000006" y1="88.65427796513858" y2="88.65427796513858"/>
-  <line stroke="#000000" x1="416.00000000000006" x2="416.00000000000006" y1="61.65427796513857" y2="88.65427796513858"/>
-  <line opacity="0.25" stroke="#ff0000" x1="476.00000000000006" x2="416.00000000000006" y1="61.65427796513857" y2="61.65427796513857"/>
-  <line opacity="0.5" stroke="#0000ff" x1="476.00000000000006" x2="476.00000000000006" y1="88.65427796513858" y2="61.65427796513857"/>
-  <line stroke="#000000" x1="416.00000000000006" x2="416.00000000000006" y1="-6.972288701945219e-08" y2="61.65427796513857"/>
-  <line stroke="#000000" x1="476.00000000000006" x2="416.00000000000006" y1="-6.972288701945219e-08" y2="-6.972288701945219e-08"/>
-  <line stroke="#000000" x1="476.00000000000006" x2="476.00000000000006" y1="61.65427796513857" y2="-6.972288701945219e-08"/>
-  <line stroke="#000000" x1="476.00000000000006" x2="493.00000000000006" y1="88.65427796513858" y2="88.65427796513858"/>
-  <line stroke="#000000" x1="493.00000000000006" x2="476.00000000000006" y1="61.65427796513857" y2="61.65427796513857"/>
-  <line opacity="0.5" stroke="#0000ff" x1="493.00000000000006" x2="493.00000000000006" y1="88.65427796513858" y2="61.65427796513857"/>
-  <line stroke="#000000" x1="493.00000000000006" x2="553.0000000000001" y1="88.65427796513858" y2="88.65427796513858"/>
-  <line stroke="#000000" x1="553.0000000000001" x2="493.00000000000006" y1="61.65427796513857" y2="61.65427796513857"/>
-  <line opacity="0.5" stroke="#0000ff" x1="553.0000000000001" x2="553.0000000000001" y1="88.65427796513858" y2="61.65427796513857"/>
-  <line stroke="#000000" x1="553.0000000000001" x2="570.0000000000001" y1="88.65427796513858" y2="88.65427796513858"/>
-  <line stroke="#000000" x1="570.0000000000001" x2="553.0000000000001" y1="61.65427796513857" y2="61.65427796513857"/>
-  <line opacity="0.5" stroke="#0000ff" x1="570.0000000000001" x2="570.0000000000001" y1="61.65427796513857" y2="88.65427796513858"/>
-  <line stroke="#000000" x1="580.0000000000001" x2="570.0000000000001" y1="61.65427796513857" y2="61.65427796513857"/>
-  <line stroke="#000000" x1="580.0000000000001" x2="580.0000000000001" y1="88.65427796513858" y2="61.65427796513857"/>
-  <line stroke="#000000" x1="570.0000000000001" x2="580.0000000000001" y1="88.65427796513858" y2="88.65427796513858"/>
-  <line stroke="#888888" x1="270.43181818181824" x2="258.8409090909091" y1="158.058556" y2="158.058556"/>
-  <line stroke="#888888" x1="258.8409090909091" x2="258.8409090909091" y1="158.058556" y2="157.55855600000004"/>
-  <line stroke="#888888" x1="258.8409090909091" x2="270.43181818181824" y1="157.55855600000004" y2="157.55855600000004"/>
-  <line stroke="#888888" x1="270.43181818181824" x2="270.43181818181824" y1="157.55855600000004" y2="158.058556"/>
-  <line stroke="#888888" x1="298.159090909091" x2="286.56818181818187" y1="158.058556" y2="158.058556"/>
-  <line stroke="#888888" x1="286.56818181818187" x2="286.56818181818187" y1="158.058556" y2="157.55855600000004"/>
-  <line stroke="#888888" x1="286.56818181818187" x2="298.159090909091" y1="157.55855600000004" y2="157.55855600000004"/>
-  <line stroke="#888888" x1="298.159090909091" x2="298.159090909091" y1="157.55855600000004" y2="158.058556"/>
-  <line stroke="#888888" x1="326.75000000000006" x2="326.75000000000006" y1="127.39188933333335" y2="139.2252226666667"/>
-  <line stroke="#888888" x1="326.75000000000006" x2="326.25000000000006" y1="139.2252226666667" y2="139.2252226666667"/>
-  <line stroke="#888888" x1="326.25000000000006" x2="326.25000000000006" y1="139.2252226666667" y2="127.39188933333335"/>
-  <line stroke="#888888" x1="326.25000000000006" x2="326.75000000000006" y1="127.39188933333335" y2="127.39188933333335"/>
-  <line stroke="#888888" x1="335.25000000000006" x2="326.75000000000006" y1="39.30855600000002" y2="39.30855600000002"/>
-  <line stroke="#888888" x1="326.75000000000006" x2="326.75000000000006" y1="39.30855600000002" y2="38.80855600000002"/>
-  <line stroke="#888888" x1="326.75000000000006" x2="335.25000000000006" y1="38.80855600000002" y2="38.80855600000002"/>
-  <line stroke="#888888" x1="335.25000000000006" x2="335.25000000000006" y1="38.80855600000002" y2="39.30855600000002"/>
-  <line stroke="#888888" x1="362.00000000000006" x2="358.00000000000006" y1="139.30855600000004" y2="139.30855600000004"/>
-  <line stroke="#888888" x1="358.00000000000006" x2="358.00000000000006" y1="139.30855600000004" y2="127.30855600000004"/>
-  <line stroke="#888888" x1="358.00000000000006" x2="362.00000000000006" y1="127.30855600000004" y2="127.30855600000004"/>
-  <line stroke="#888888" x1="362.00000000000006" x2="362.00000000000006" y1="127.30855600000004" y2="139.30855600000004"/>
-  <line stroke="#888888" x1="350.0" x2="346.0" y1="137.808556" y2="137.808556"/>
-  <line stroke="#888888" x1="346.0" x2="346.0" y1="137.808556" y2="128.808556"/>
-  <line stroke="#888888" x1="346.0" x2="350.0" y1="128.808556" y2="128.808556"/>
-  <line stroke="#888888" x1="350.0" x2="350.0" y1="128.808556" y2="137.808556"/>
-  <line stroke="#888888" x1="386.5" x2="363.5" y1="139.30855600000004" y2="139.30855600000004"/>
-  <line stroke="#888888" x1="363.5" x2="363.5" y1="139.30855600000004" y2="127.30855600000004"/>
-  <line stroke="#888888" x1="363.5" x2="386.5" y1="127.30855600000004" y2="127.30855600000004"/>
-  <line stroke="#888888" x1="386.5" x2="386.5" y1="127.30855600000004" y2="139.30855600000004"/>
-  <line stroke="#888888" x1="392.00000000000006" x2="388.00000000000006" y1="139.30855600000004" y2="139.30855600000004"/>
-  <line stroke="#888888" x1="388.00000000000006" x2="388.00000000000006" y1="139.30855600000004" y2="127.30855600000004"/>
-  <line stroke="#888888" x1="388.00000000000006" x2="392.00000000000006" y1="127.30855600000004" y2="127.30855600000004"/>
-  <line stroke="#888888" x1="392.00000000000006" x2="392.00000000000006" y1="127.30855600000004" y2="139.30855600000004"/>
-  <line stroke="#888888" x1="414.50000000000006" x2="409.5" y1="138.9752226666667" y2="138.9752226666667"/>
-  <line stroke="#888888" x1="409.5" x2="409.5" y1="138.9752226666667" y2="127.64188933333335"/>
-  <line stroke="#888888" x1="409.5" x2="414.50000000000006" y1="127.64188933333335" y2="127.64188933333335"/>
-  <line stroke="#888888" x1="475.50000000000006" x2="472.50000000000006" y1="84.15427796513858" y2="84.15427796513858"/>
-  <line stroke="#888888" x1="472.50000000000006" x2="472.50000000000006" y1="84.15427796513858" y2="66.15427796513858"/>
-  <line stroke="#888888" x1="472.50000000000006" x2="475.50000000000006" y1="66.15427796513858" y2="66.15427796513858"/>
-  <line stroke="#888888" x1="475.50000000000006" x2="475.50000000000006" y1="66.15427796513858" y2="84.15427796513858"/>
-  <line stroke="#888888" x1="423.75000000000006" x2="423.75000000000006" y1="70.40427796513856" y2="79.90427796513858"/>
-  <line stroke="#888888" x1="423.75000000000006" x2="423.25" y1="79.90427796513858" y2="79.90427796513858"/>
-  <line stroke="#888888" x1="423.25" x2="423.25" y1="79.90427796513858" y2="70.40427796513856"/>
-  <line stroke="#888888" x1="423.25" x2="423.75000000000006" y1="70.40427796513856" y2="70.40427796513856"/>
-  <line stroke="#888888" x1="456.25000000000006" x2="435.75000000000006" y1="7.749999930277114" y2="7.749999930277114"/>
-  <line stroke="#888888" x1="435.75000000000006" x2="435.75000000000006" y1="7.749999930277114" y2="7.249999930277114"/>
-  <line stroke="#888888" x1="435.75000000000006" x2="456.25000000000006" y1="7.249999930277114" y2="7.249999930277114"/>
-  <line stroke="#888888" x1="456.25000000000006" x2="456.25000000000006" y1="7.249999930277114" y2="7.749999930277114"/>
-  <line stroke="#888888" x1="479.00000000000006" x2="476.00000000000006" y1="84.15427796513858" y2="84.15427796513858"/>
-  <line stroke="#888888" x1="476.00000000000006" x2="476.00000000000006" y1="84.15427796513858" y2="66.15427796513858"/>
-  <line stroke="#888888" x1="476.00000000000006" x2="479.00000000000006" y1="66.15427796513858" y2="66.15427796513858"/>
-  <line stroke="#888888" x1="479.00000000000006" x2="479.00000000000006" y1="66.15427796513858" y2="84.15427796513858"/>
-  <line stroke="#888888" x1="577.5000000000001" x2="572.5" y1="79.65427796513858" y2="79.65427796513858"/>
-  <line stroke="#888888" x1="572.5" x2="572.5" y1="79.65427796513858" y2="70.65427796513858"/>
-  <line stroke="#888888" x1="572.5" x2="577.5000000000001" y1="70.65427796513858" y2="70.65427796513858"/>
-  <line opacity="0.5" stroke="#0000ff" x1="623.0000000000001" x2="684.0000000000001" y1="138.30855600000004" y2="138.30855600000004"/>
-  <line opacity="0.5" stroke="#0000ff" x1="684.0000000000001" x2="684.0000000000001" y1="138.30855600000004" y2="162.308556"/>
-  <line opacity="0.5" stroke="#0000ff" x1="684.0000000000001" x2="623.0000000000001" y1="162.308556" y2="162.308556"/>
-  <line opacity="0.5" stroke="#0000ff" x1="623.0000000000001" x2="623.0000000000001" y1="162.308556" y2="138.30855600000004"/>
-  <line stroke="#000000" x1="623.0000000000001" x2="623.0000000000001" y1="131.30855600000004" y2="138.30855600000004"/>
-  <line stroke="#000000" x1="683.0" x2="623.0000000000001" y1="131.30855600000004" y2="131.30855600000004"/>
-  <line stroke="#000000" x1="683.0" x2="683.0" y1="138.30855600000004" y2="131.30855600000004"/>
-  <line stroke="#000000" x1="691.0" x2="684.0000000000001" y1="138.30855600000004" y2="138.30855600000004"/>
-  <line stroke="#000000" x1="691.0" x2="691.0" y1="162.308556" y2="138.30855600000004"/>
-  <line stroke="#000000" x1="684.0000000000001" x2="691.0" y1="162.308556" y2="162.308556"/>
-  <line opacity="0.5" stroke="#0000ff" x1="684.0000000000001" x2="684.0000000000001" y1="162.308556" y2="223.30855600000004"/>
-  <line stroke="#000000" x1="624.0000000000001" x2="684.0000000000001" y1="223.30855600000004" y2="223.30855600000004"/>
-  <line opacity="0.5" stroke="#0000ff" x1="624.0000000000001" x2="624.0000000000001" y1="162.308556" y2="223.30855600000004"/>
-  <line stroke="#000000" x1="708.0000000000001" x2="684.0000000000001" y1="162.308556" y2="162.308556"/>
-  <line opacity="0.5" stroke="#0000ff" x1="708.0000000000001" x2="708.0000000000001" y1="162.308556" y2="223.30855600000004"/>
-  <line stroke="#000000" x1="684.0000000000001" x2="708.0000000000001" y1="223.30855600000004" y2="223.30855600000004"/>
-  <line stroke="#000000" x1="768.0000000000001" x2="708.0000000000001" y1="162.308556" y2="162.308556"/>
-  <line stroke="#000000" x1="768.0000000000001" x2="768.0000000000001" y1="223.30855600000004" y2="162.308556"/>
-  <line stroke="#000000" x1="708.0000000000001" x2="768.0000000000001" y1="223.30855600000004" y2="223.30855600000004"/>
-  <line stroke="#000000" x1="624.0000000000001" x2="600.0" y1="162.308556" y2="162.308556"/>
-  <line stroke="#000000" x1="600.0" x2="624.0000000000001" y1="223.30855600000004" y2="223.30855600000004"/>
-  <line opacity="0.5" stroke="#0000ff" x1="600.0" x2="600.0" y1="223.30855600000004" y2="162.308556"/>
-  <line stroke="#000000" x1="590.0" x2="600.0" y1="223.30855600000004" y2="223.30855600000004"/>
-  <line stroke="#000000" x1="590.0" x2="590.0" y1="162.308556" y2="223.30855600000004"/>
-  <line stroke="#000000" x1="600.0" x2="590.0" y1="162.308556" y2="162.308556"/>
-  <line stroke="#000000" x1="616.0000000000001" x2="623.0000000000001" y1="162.308556" y2="162.308556"/>
-  <line stroke="#000000" x1="616.0000000000001" x2="616.0000000000001" y1="138.30855600000004" y2="162.308556"/>
-  <line stroke="#000000" x1="623.0000000000001" x2="616.0000000000001" y1="138.30855600000004" y2="138.30855600000004"/>
-  <line stroke="#888888" x1="672.0909090909092" x2="675.5909090909091" y1="133.058556" y2="133.058556"/>
-  <line stroke="#888888" x1="675.5909090909091" x2="672.0909090909092" y1="133.058556" y2="136.55855600000004"/>
-  <line stroke="#888888" x1="672.0909090909092" x2="661.1818181818181" y1="136.55855600000004" y2="136.55855600000004"/>
-  <line stroke="#888888" x1="661.1818181818181" x2="657.6818181818184" y1="136.55855600000004" y2="133.058556"/>
-  <line stroke="#888888" x1="657.6818181818184" x2="661.1818181818181" y1="133.058556" y2="133.058556"/>
-  <line stroke="#888888" x1="644.818181818182" x2="648.3181818181819" y1="133.058556" y2="133.058556"/>
-  <line stroke="#888888" x1="648.3181818181819" x2="644.818181818182" y1="133.058556" y2="136.55855600000004"/>
-  <line stroke="#888888" x1="644.818181818182" x2="633.9090909090909" y1="136.55855600000004" y2="136.55855600000004"/>
-  <line stroke="#888888" x1="633.9090909090909" x2="630.409090909091" y1="136.55855600000004" y2="133.058556"/>
-  <line stroke="#888888" x1="630.409090909091" x2="633.9090909090909" y1="133.058556" y2="133.058556"/>
-  <line stroke="#888888" x1="689.2500000000001" x2="685.75" y1="154.30855600000004" y2="154.30855600000004"/>
-  <line stroke="#888888" x1="685.75" x2="685.75" y1="154.30855600000004" y2="146.308556"/>
-  <line stroke="#888888" x1="685.75" x2="689.2500000000001" y1="146.308556" y2="146.308556"/>
-  <line stroke="#888888" x1="631.5000000000001" x2="631.5000000000001" y1="213.80855600000004" y2="195.80855600000004"/>
-  <line stroke="#888888" x1="631.5000000000001" x2="666.5000000000001" y1="195.80855600000004" y2="195.80855600000004"/>
-  <line stroke="#888888" x1="666.5000000000001" x2="666.5000000000001" y1="195.80855600000004" y2="213.80855600000004"/>
-  <line stroke="#888888" x1="666.5000000000001" x2="631.5000000000001" y1="213.80855600000004" y2="213.80855600000004"/>
-  <line stroke="#888888" x1="684.5000000000001" x2="684.5000000000001" y1="175.55855600000004" y2="172.55855600000004"/>
-  <line stroke="#888888" x1="684.5000000000001" x2="687.5000000000001" y1="172.55855600000004" y2="172.55855600000004"/>
-  <line stroke="#888888" x1="687.5000000000001" x2="687.5000000000001" y1="172.55855600000004" y2="175.55855600000004"/>
-  <line stroke="#888888" x1="687.5000000000001" x2="684.5000000000001" y1="175.55855600000004" y2="175.55855600000004"/>
-  <line stroke="#888888" x1="705.5000000000001" x2="705.5000000000001" y1="174.55855600000004" y2="173.55855600000004"/>
-  <line stroke="#888888" x1="705.5000000000001" x2="706.5000000000001" y1="173.55855600000004" y2="173.55855600000004"/>
-  <line stroke="#888888" x1="706.5000000000001" x2="706.5000000000001" y1="173.55855600000004" y2="174.55855600000004"/>
-  <line stroke="#888888" x1="706.5000000000001" x2="705.5000000000001" y1="174.55855600000004" y2="174.55855600000004"/>
-  <line stroke="#888888" x1="685.5000000000001" x2="685.5000000000001" y1="177.05855600000004" y2="176.058556"/>
-  <line stroke="#888888" x1="685.5000000000001" x2="686.5000000000001" y1="176.058556" y2="176.058556"/>
-  <line stroke="#888888" x1="686.5000000000001" x2="686.5000000000001" y1="176.058556" y2="177.05855600000004"/>
-  <line stroke="#888888" x1="686.5000000000001" x2="685.5000000000001" y1="177.05855600000004" y2="177.05855600000004"/>
-  <line stroke="#888888" x1="705.5000000000001" x2="705.5000000000001" y1="177.05855600000004" y2="176.058556"/>
-  <line stroke="#888888" x1="705.5000000000001" x2="706.5000000000001" y1="176.058556" y2="176.058556"/>
-  <line stroke="#888888" x1="706.5000000000001" x2="706.5000000000001" y1="176.058556" y2="177.05855600000004"/>
-  <line stroke="#888888" x1="706.5000000000001" x2="705.5000000000001" y1="177.05855600000004" y2="177.05855600000004"/>
-  <line stroke="#888888" x1="685.5000000000001" x2="685.5000000000001" y1="179.55855600000004" y2="178.558556"/>
-  <line stroke="#888888" x1="685.5000000000001" x2="686.5000000000001" y1="178.558556" y2="178.558556"/>
-  <line stroke="#888888" x1="686.5000000000001" x2="686.5000000000001" y1="178.558556" y2="179.55855600000004"/>
-  <line stroke="#888888" x1="686.5000000000001" x2="685.5000000000001" y1="179.55855600000004" y2="179.55855600000004"/>
-  <line stroke="#888888" x1="705.5000000000001" x2="705.5000000000001" y1="179.55855600000004" y2="178.558556"/>
-  <line stroke="#888888" x1="705.5000000000001" x2="706.5000000000001" y1="178.558556" y2="178.558556"/>
-  <line stroke="#888888" x1="706.5000000000001" x2="706.5000000000001" y1="178.558556" y2="179.55855600000004"/>
-  <line stroke="#888888" x1="706.5000000000001" x2="705.5000000000001" y1="179.55855600000004" y2="179.55855600000004"/>
-  <line stroke="#888888" x1="685.5000000000001" x2="685.5000000000001" y1="182.05855600000004" y2="181.058556"/>
-  <line stroke="#888888" x1="685.5000000000001" x2="686.5000000000001" y1="181.058556" y2="181.058556"/>
-  <line stroke="#888888" x1="686.5000000000001" x2="686.5000000000001" y1="181.058556" y2="182.05855600000004"/>
-  <line stroke="#888888" x1="686.5000000000001" x2="685.5000000000001" y1="182.05855600000004" y2="182.05855600000004"/>
-  <line stroke="#888888" x1="705.5000000000001" x2="705.5000000000001" y1="182.05855600000004" y2="181.058556"/>
-  <line stroke="#888888" x1="705.5000000000001" x2="706.5000000000001" y1="181.058556" y2="181.058556"/>
-  <line stroke="#888888" x1="706.5000000000001" x2="706.5000000000001" y1="181.058556" y2="182.05855600000004"/>
-  <line stroke="#888888" x1="706.5000000000001" x2="705.5000000000001" y1="182.05855600000004" y2="182.05855600000004"/>
-  <line stroke="#888888" x1="685.5000000000001" x2="685.5000000000001" y1="184.55855600000004" y2="183.55855600000004"/>
-  <line stroke="#888888" x1="685.5000000000001" x2="686.5000000000001" y1="183.55855600000004" y2="183.55855600000004"/>
-  <line stroke="#888888" x1="686.5000000000001" x2="686.5000000000001" y1="183.55855600000004" y2="184.55855600000004"/>
-  <line stroke="#888888" x1="686.5000000000001" x2="685.5000000000001" y1="184.55855600000004" y2="184.55855600000004"/>
-  <line stroke="#888888" x1="705.5000000000001" x2="705.5000000000001" y1="184.55855600000004" y2="183.55855600000004"/>
-  <line stroke="#888888" x1="705.5000000000001" x2="706.5000000000001" y1="183.55855600000004" y2="183.55855600000004"/>
-  <line stroke="#888888" x1="706.5000000000001" x2="706.5000000000001" y1="183.55855600000004" y2="184.55855600000004"/>
-  <line stroke="#888888" x1="706.5000000000001" x2="705.5000000000001" y1="184.55855600000004" y2="184.55855600000004"/>
-  <line stroke="#888888" x1="685.5000000000001" x2="685.5000000000001" y1="187.05855600000004" y2="186.05855600000004"/>
-  <line stroke="#888888" x1="685.5000000000001" x2="686.5000000000001" y1="186.05855600000004" y2="186.05855600000004"/>
-  <line stroke="#888888" x1="686.5000000000001" x2="686.5000000000001" y1="186.05855600000004" y2="187.05855600000004"/>
-  <line stroke="#888888" x1="686.5000000000001" x2="685.5000000000001" y1="187.05855600000004" y2="187.05855600000004"/>
-  <line stroke="#888888" x1="705.5000000000001" x2="705.5000000000001" y1="187.05855600000004" y2="186.05855600000004"/>
-  <line stroke="#888888" x1="705.5000000000001" x2="706.5000000000001" y1="186.05855600000004" y2="186.05855600000004"/>
-  <line stroke="#888888" x1="706.5000000000001" x2="706.5000000000001" y1="186.05855600000004" y2="187.05855600000004"/>
-  <line stroke="#888888" x1="706.5000000000001" x2="705.5000000000001" y1="187.05855600000004" y2="187.05855600000004"/>
-  <line stroke="#888888" x1="685.5000000000001" x2="685.5000000000001" y1="189.55855600000004" y2="188.55855600000004"/>
-  <line stroke="#888888" x1="685.5000000000001" x2="686.5000000000001" y1="188.55855600000004" y2="188.55855600000004"/>
-  <line stroke="#888888" x1="686.5000000000001" x2="686.5000000000001" y1="188.55855600000004" y2="189.55855600000004"/>
-  <line stroke="#888888" x1="686.5000000000001" x2="685.5000000000001" y1="189.55855600000004" y2="189.55855600000004"/>
-  <line stroke="#888888" x1="705.5000000000001" x2="705.5000000000001" y1="189.55855600000004" y2="188.55855600000004"/>
-  <line stroke="#888888" x1="705.5000000000001" x2="706.5000000000001" y1="188.55855600000004" y2="188.55855600000004"/>
-  <line stroke="#888888" x1="706.5000000000001" x2="706.5000000000001" y1="188.55855600000004" y2="189.55855600000004"/>
-  <line stroke="#888888" x1="706.5000000000001" x2="705.5000000000001" y1="189.55855600000004" y2="189.55855600000004"/>
-  <line stroke="#888888" x1="685.5000000000001" x2="685.5000000000001" y1="192.058556" y2="191.05855600000004"/>
-  <line stroke="#888888" x1="685.5000000000001" x2="686.5000000000001" y1="191.05855600000004" y2="191.05855600000004"/>
-  <line stroke="#888888" x1="686.5000000000001" x2="686.5000000000001" y1="191.05855600000004" y2="192.058556"/>
-  <line stroke="#888888" x1="686.5000000000001" x2="685.5000000000001" y1="192.058556" y2="192.058556"/>
-  <line stroke="#888888" x1="705.5000000000001" x2="705.5000000000001" y1="192.058556" y2="191.05855600000004"/>
-  <line stroke="#888888" x1="705.5000000000001" x2="706.5000000000001" y1="191.05855600000004" y2="191.05855600000004"/>
-  <line stroke="#888888" x1="706.5000000000001" x2="706.5000000000001" y1="191.05855600000004" y2="192.058556"/>
-  <line stroke="#888888" x1="706.5000000000001" x2="705.5000000000001" y1="192.058556" y2="192.058556"/>
-  <line stroke="#888888" x1="685.5000000000001" x2="685.5000000000001" y1="194.558556" y2="193.55855600000004"/>
-  <line stroke="#888888" x1="685.5000000000001" x2="686.5000000000001" y1="193.55855600000004" y2="193.55855600000004"/>
-  <line stroke="#888888" x1="686.5000000000001" x2="686.5000000000001" y1="193.55855600000004" y2="194.558556"/>
-  <line stroke="#888888" x1="686.5000000000001" x2="685.5000000000001" y1="194.558556" y2="194.558556"/>
-  <line stroke="#888888" x1="705.5000000000001" x2="705.5000000000001" y1="194.558556" y2="193.55855600000004"/>
-  <line stroke="#888888" x1="705.5000000000001" x2="706.5000000000001" y1="193.55855600000004" y2="193.55855600000004"/>
-  <line stroke="#888888" x1="706.5000000000001" x2="706.5000000000001" y1="193.55855600000004" y2="194.558556"/>
-  <line stroke="#888888" x1="706.5000000000001" x2="705.5000000000001" y1="194.558556" y2="194.558556"/>
-  <line stroke="#888888" x1="685.5000000000001" x2="685.5000000000001" y1="197.05855600000004" y2="196.05855600000004"/>
-  <line stroke="#888888" x1="685.5000000000001" x2="686.5000000000001" y1="196.05855600000004" y2="196.05855600000004"/>
-  <line stroke="#888888" x1="686.5000000000001" x2="686.5000000000001" y1="196.05855600000004" y2="197.05855600000004"/>
-  <line stroke="#888888" x1="686.5000000000001" x2="685.5000000000001" y1="197.05855600000004" y2="197.05855600000004"/>
-  <line stroke="#888888" x1="705.5000000000001" x2="705.5000000000001" y1="197.05855600000004" y2="196.05855600000004"/>
-  <line stroke="#888888" x1="705.5000000000001" x2="706.5000000000001" y1="196.05855600000004" y2="196.05855600000004"/>
-  <line stroke="#888888" x1="706.5000000000001" x2="706.5000000000001" y1="196.05855600000004" y2="197.05855600000004"/>
-  <line stroke="#888888" x1="706.5000000000001" x2="705.5000000000001" y1="197.05855600000004" y2="197.05855600000004"/>
-  <line stroke="#888888" x1="685.5000000000001" x2="685.5000000000001" y1="199.55855600000004" y2="198.55855600000004"/>
-  <line stroke="#888888" x1="685.5000000000001" x2="686.5000000000001" y1="198.55855600000004" y2="198.55855600000004"/>
-  <line stroke="#888888" x1="686.5000000000001" x2="686.5000000000001" y1="198.55855600000004" y2="199.55855600000004"/>
-  <line stroke="#888888" x1="686.5000000000001" x2="685.5000000000001" y1="199.55855600000004" y2="199.55855600000004"/>
-  <line stroke="#888888" x1="705.5000000000001" x2="705.5000000000001" y1="199.55855600000004" y2="198.55855600000004"/>
-  <line stroke="#888888" x1="705.5000000000001" x2="706.5000000000001" y1="198.55855600000004" y2="198.55855600000004"/>
-  <line stroke="#888888" x1="706.5000000000001" x2="706.5000000000001" y1="198.55855600000004" y2="199.55855600000004"/>
-  <line stroke="#888888" x1="706.5000000000001" x2="705.5000000000001" y1="199.55855600000004" y2="199.55855600000004"/>
-  <line stroke="#888888" x1="685.5000000000001" x2="685.5000000000001" y1="202.05855600000004" y2="201.058556"/>
-  <line stroke="#888888" x1="685.5000000000001" x2="686.5000000000001" y1="201.058556" y2="201.058556"/>
-  <line stroke="#888888" x1="686.5000000000001" x2="686.5000000000001" y1="201.058556" y2="202.05855600000004"/>
-  <line stroke="#888888" x1="686.5000000000001" x2="685.5000000000001" y1="202.05855600000004" y2="202.05855600000004"/>
-  <line stroke="#888888" x1="705.5000000000001" x2="705.5000000000001" y1="202.05855600000004" y2="201.058556"/>
-  <line stroke="#888888" x1="705.5000000000001" x2="706.5000000000001" y1="201.058556" y2="201.058556"/>
-  <line stroke="#888888" x1="706.5000000000001" x2="706.5000000000001" y1="201.058556" y2="202.05855600000004"/>
-  <line stroke="#888888" x1="706.5000000000001" x2="705.5000000000001" y1="202.05855600000004" y2="202.05855600000004"/>
-  <line stroke="#888888" x1="685.5000000000001" x2="685.5000000000001" y1="204.55855600000004" y2="203.558556"/>
-  <line stroke="#888888" x1="685.5000000000001" x2="686.5000000000001" y1="203.558556" y2="203.558556"/>
-  <line stroke="#888888" x1="686.5000000000001" x2="686.5000000000001" y1="203.558556" y2="204.55855600000004"/>
-  <line stroke="#888888" x1="686.5000000000001" x2="685.5000000000001" y1="204.55855600000004" y2="204.55855600000004"/>
-  <line stroke="#888888" x1="705.5000000000001" x2="705.5000000000001" y1="204.55855600000004" y2="203.558556"/>
-  <line stroke="#888888" x1="705.5000000000001" x2="706.5000000000001" y1="203.558556" y2="203.558556"/>
-  <line stroke="#888888" x1="706.5000000000001" x2="706.5000000000001" y1="203.558556" y2="204.55855600000004"/>
-  <line stroke="#888888" x1="706.5000000000001" x2="705.5000000000001" y1="204.55855600000004" y2="204.55855600000004"/>
-  <line stroke="#888888" x1="685.5000000000001" x2="685.5000000000001" y1="207.05855600000004" y2="206.05855600000004"/>
-  <line stroke="#888888" x1="685.5000000000001" x2="686.5000000000001" y1="206.05855600000004" y2="206.05855600000004"/>
-  <line stroke="#888888" x1="686.5000000000001" x2="686.5000000000001" y1="206.05855600000004" y2="207.05855600000004"/>
-  <line stroke="#888888" x1="686.5000000000001" x2="685.5000000000001" y1="207.05855600000004" y2="207.05855600000004"/>
-  <line stroke="#888888" x1="705.5000000000001" x2="705.5000000000001" y1="207.05855600000004" y2="206.05855600000004"/>
-  <line stroke="#888888" x1="705.5000000000001" x2="706.5000000000001" y1="206.05855600000004" y2="206.05855600000004"/>
-  <line stroke="#888888" x1="706.5000000000001" x2="706.5000000000001" y1="206.05855600000004" y2="207.05855600000004"/>
-  <line stroke="#888888" x1="706.5000000000001" x2="705.5000000000001" y1="207.05855600000004" y2="207.05855600000004"/>
-  <line stroke="#888888" x1="685.5000000000001" x2="685.5000000000001" y1="209.55855600000004" y2="208.55855600000004"/>
-  <line stroke="#888888" x1="685.5000000000001" x2="686.5000000000001" y1="208.55855600000004" y2="208.55855600000004"/>
-  <line stroke="#888888" x1="686.5000000000001" x2="686.5000000000001" y1="208.55855600000004" y2="209.55855600000004"/>
-  <line stroke="#888888" x1="686.5000000000001" x2="685.5000000000001" y1="209.55855600000004" y2="209.55855600000004"/>
-  <line stroke="#888888" x1="705.5000000000001" x2="705.5000000000001" y1="209.55855600000004" y2="208.55855600000004"/>
-  <line stroke="#888888" x1="705.5000000000001" x2="706.5000000000001" y1="208.55855600000004" y2="208.55855600000004"/>
-  <line stroke="#888888" x1="706.5000000000001" x2="706.5000000000001" y1="208.55855600000004" y2="209.55855600000004"/>
-  <line stroke="#888888" x1="706.5000000000001" x2="705.5000000000001" y1="209.55855600000004" y2="209.55855600000004"/>
-  <line stroke="#888888" x1="685.5000000000001" x2="685.5000000000001" y1="212.05855600000004" y2="211.05855600000004"/>
-  <line stroke="#888888" x1="685.5000000000001" x2="686.5000000000001" y1="211.05855600000004" y2="211.05855600000004"/>
-  <line stroke="#888888" x1="686.5000000000001" x2="686.5000000000001" y1="211.05855600000004" y2="212.05855600000004"/>
-  <line stroke="#888888" x1="686.5000000000001" x2="685.5000000000001" y1="212.05855600000004" y2="212.05855600000004"/>
-  <line stroke="#888888" x1="704.5000000000001" x2="704.5000000000001" y1="213.05855600000004" y2="210.05855600000004"/>
-  <line stroke="#888888" x1="704.5000000000001" x2="707.5000000000001" y1="210.05855600000004" y2="210.05855600000004"/>
-  <line stroke="#888888" x1="707.5000000000001" x2="707.5000000000001" y1="210.05855600000004" y2="213.05855600000004"/>
-  <line stroke="#888888" x1="707.5000000000001" x2="704.5000000000001" y1="213.05855600000004" y2="213.05855600000004"/>
-  <line stroke="#888888" x1="700.2500000000001" x2="691.7500000000001" y1="170.05855600000004" y2="170.05855600000004"/>
-  <line stroke="#888888" x1="691.7500000000001" x2="691.7500000000001" y1="170.05855600000004" y2="169.558556"/>
-  <line stroke="#888888" x1="691.7500000000001" x2="700.2500000000001" y1="169.558556" y2="169.558556"/>
-  <line stroke="#888888" x1="700.2500000000001" x2="700.2500000000001" y1="169.558556" y2="170.05855600000004"/>
-  <line stroke="#888888" x1="691.7500000000001" x2="700.2500000000001" y1="217.80855600000004" y2="217.80855600000004"/>
-  <line stroke="#888888" x1="700.2500000000001" x2="700.2500000000001" y1="217.80855600000004" y2="218.30855600000004"/>
-  <line stroke="#888888" x1="700.2500000000001" x2="691.7500000000001" y1="218.30855600000004" y2="218.30855600000004"/>
-  <line stroke="#888888" x1="691.7500000000001" x2="691.7500000000001" y1="218.30855600000004" y2="217.80855600000004"/>
-  <line stroke="#888888" x1="723.0000000000001" x2="723.0000000000001" y1="213.30855600000004" y2="200.30855600000004"/>
-  <line stroke="#888888" x1="723.0000000000001" x2="753.0000000000001" y1="200.30855600000004" y2="200.30855600000004"/>
-  <line stroke="#888888" x1="753.0000000000001" x2="753.0000000000001" y1="200.30855600000004" y2="213.30855600000004"/>
-  <line stroke="#888888" x1="753.0000000000001" x2="723.0000000000001" y1="213.30855600000004" y2="213.30855600000004"/>
-  <line stroke="#888888" x1="730.0681818181819" x2="718.659090909091" y1="167.80855600000004" y2="167.80855600000004"/>
-  <line stroke="#888888" x1="718.659090909091" x2="718.659090909091" y1="167.80855600000004" y2="167.308556"/>
-  <line stroke="#888888" x1="718.659090909091" x2="730.0681818181819" y1="167.308556" y2="167.308556"/>
-  <line stroke="#888888" x1="730.0681818181819" x2="730.0681818181819" y1="167.308556" y2="167.80855600000004"/>
-  <line stroke="#888888" x1="757.3409090909092" x2="745.9318181818182" y1="167.80855600000004" y2="167.80855600000004"/>
-  <line stroke="#888888" x1="745.9318181818182" x2="745.9318181818182" y1="167.80855600000004" y2="167.308556"/>
-  <line stroke="#888888" x1="745.9318181818182" x2="757.3409090909092" y1="167.308556" y2="167.308556"/>
-  <line stroke="#888888" x1="757.3409090909092" x2="757.3409090909092" y1="167.308556" y2="167.80855600000004"/>
-  <line stroke="#888888" x1="760.25" x2="760.25" y1="184.74037418181823" y2="173.14946509090913"/>
-  <line stroke="#888888" x1="760.25" x2="760.75" y1="173.14946509090913" y2="173.14946509090913"/>
-  <line stroke="#888888" x1="760.75" x2="760.75" y1="173.14946509090913" y2="184.74037418181823"/>
-  <line stroke="#888888" x1="760.75" x2="760.25" y1="184.74037418181823" y2="184.74037418181823"/>
-  <line stroke="#888888" x1="760.25" x2="760.25" y1="212.46764690909094" y2="200.87673781818185"/>
-  <line stroke="#888888" x1="760.25" x2="760.75" y1="200.87673781818185" y2="200.87673781818185"/>
-  <line stroke="#888888" x1="760.75" x2="760.75" y1="200.87673781818185" y2="212.46764690909094"/>
-  <line stroke="#888888" x1="760.75" x2="760.25" y1="212.46764690909094" y2="212.46764690909094"/>
-  <line stroke="#888888" x1="600.5" x2="600.5" y1="175.55855600000004" y2="172.55855600000004"/>
-  <line stroke="#888888" x1="600.5" x2="603.5000000000001" y1="172.55855600000004" y2="172.55855600000004"/>
-  <line stroke="#888888" x1="603.5000000000001" x2="603.5000000000001" y1="172.55855600000004" y2="175.55855600000004"/>
-  <line stroke="#888888" x1="603.5000000000001" x2="600.5" y1="175.55855600000004" y2="175.55855600000004"/>
-  <line stroke="#888888" x1="621.5000000000001" x2="621.5000000000001" y1="174.55855600000004" y2="173.55855600000004"/>
-  <line stroke="#888888" x1="621.5000000000001" x2="622.5000000000001" y1="173.55855600000004" y2="173.55855600000004"/>
-  <line stroke="#888888" x1="622.5000000000001" x2="622.5000000000001" y1="173.55855600000004" y2="174.55855600000004"/>
-  <line stroke="#888888" x1="622.5000000000001" x2="621.5000000000001" y1="174.55855600000004" y2="174.55855600000004"/>
-  <line stroke="#888888" x1="601.5" x2="601.5" y1="177.05855600000004" y2="176.058556"/>
-  <line stroke="#888888" x1="601.5" x2="602.5000000000001" y1="176.058556" y2="176.058556"/>
-  <line stroke="#888888" x1="602.5000000000001" x2="602.5000000000001" y1="176.058556" y2="177.05855600000004"/>
-  <line stroke="#888888" x1="602.5000000000001" x2="601.5" y1="177.05855600000004" y2="177.05855600000004"/>
-  <line stroke="#888888" x1="621.5000000000001" x2="621.5000000000001" y1="177.05855600000004" y2="176.058556"/>
-  <line stroke="#888888" x1="621.5000000000001" x2="622.5000000000001" y1="176.058556" y2="176.058556"/>
-  <line stroke="#888888" x1="622.5000000000001" x2="622.5000000000001" y1="176.058556" y2="177.05855600000004"/>
-  <line stroke="#888888" x1="622.5000000000001" x2="621.5000000000001" y1="177.05855600000004" y2="177.05855600000004"/>
-  <line stroke="#888888" x1="601.5" x2="601.5" y1="179.55855600000004" y2="178.558556"/>
-  <line stroke="#888888" x1="601.5" x2="602.5000000000001" y1="178.558556" y2="178.558556"/>
-  <line stroke="#888888" x1="602.5000000000001" x2="602.5000000000001" y1="178.558556" y2="179.55855600000004"/>
-  <line stroke="#888888" x1="602.5000000000001" x2="601.5" y1="179.55855600000004" y2="179.55855600000004"/>
-  <line stroke="#888888" x1="621.5000000000001" x2="621.5000000000001" y1="179.55855600000004" y2="178.558556"/>
-  <line stroke="#888888" x1="621.5000000000001" x2="622.5000000000001" y1="178.558556" y2="178.558556"/>
-  <line stroke="#888888" x1="622.5000000000001" x2="622.5000000000001" y1="178.558556" y2="179.55855600000004"/>
-  <line stroke="#888888" x1="622.5000000000001" x2="621.5000000000001" y1="179.55855600000004" y2="179.55855600000004"/>
-  <line stroke="#888888" x1="601.5" x2="601.5" y1="182.05855600000004" y2="181.058556"/>
-  <line stroke="#888888" x1="601.5" x2="602.5000000000001" y1="181.058556" y2="181.058556"/>
-  <line stroke="#888888" x1="602.5000000000001" x2="602.5000000000001" y1="181.058556" y2="182.05855600000004"/>
-  <line stroke="#888888" x1="602.5000000000001" x2="601.5" y1="182.05855600000004" y2="182.05855600000004"/>
-  <line stroke="#888888" x1="621.5000000000001" x2="621.5000000000001" y1="182.05855600000004" y2="181.058556"/>
-  <line stroke="#888888" x1="621.5000000000001" x2="622.5000000000001" y1="181.058556" y2="181.058556"/>
-  <line stroke="#888888" x1="622.5000000000001" x2="622.5000000000001" y1="181.058556" y2="182.05855600000004"/>
-  <line stroke="#888888" x1="622.5000000000001" x2="621.5000000000001" y1="182.05855600000004" y2="182.05855600000004"/>
-  <line stroke="#888888" x1="601.5" x2="601.5" y1="184.55855600000004" y2="183.55855600000004"/>
-  <line stroke="#888888" x1="601.5" x2="602.5000000000001" y1="183.55855600000004" y2="183.55855600000004"/>
-  <line stroke="#888888" x1="602.5000000000001" x2="602.5000000000001" y1="183.55855600000004" y2="184.55855600000004"/>
-  <line stroke="#888888" x1="602.5000000000001" x2="601.5" y1="184.55855600000004" y2="184.55855600000004"/>
-  <line stroke="#888888" x1="621.5000000000001" x2="621.5000000000001" y1="184.55855600000004" y2="183.55855600000004"/>
-  <line stroke="#888888" x1="621.5000000000001" x2="622.5000000000001" y1="183.55855600000004" y2="183.55855600000004"/>
-  <line stroke="#888888" x1="622.5000000000001" x2="622.5000000000001" y1="183.55855600000004" y2="184.55855600000004"/>
-  <line stroke="#888888" x1="622.5000000000001" x2="621.5000000000001" y1="184.55855600000004" y2="184.55855600000004"/>
-  <line stroke="#888888" x1="601.5" x2="601.5" y1="187.05855600000004" y2="186.05855600000004"/>
-  <line stroke="#888888" x1="601.5" x2="602.5000000000001" y1="186.05855600000004" y2="186.05855600000004"/>
-  <line stroke="#888888" x1="602.5000000000001" x2="602.5000000000001" y1="186.05855600000004" y2="187.05855600000004"/>
-  <line stroke="#888888" x1="602.5000000000001" x2="601.5" y1="187.05855600000004" y2="187.05855600000004"/>
-  <line stroke="#888888" x1="621.5000000000001" x2="621.5000000000001" y1="187.05855600000004" y2="186.05855600000004"/>
-  <line stroke="#888888" x1="621.5000000000001" x2="622.5000000000001" y1="186.05855600000004" y2="186.05855600000004"/>
-  <line stroke="#888888" x1="622.5000000000001" x2="622.5000000000001" y1="186.05855600000004" y2="187.05855600000004"/>
-  <line stroke="#888888" x1="622.5000000000001" x2="621.5000000000001" y1="187.05855600000004" y2="187.05855600000004"/>
-  <line stroke="#888888" x1="601.5" x2="601.5" y1="189.55855600000004" y2="188.55855600000004"/>
-  <line stroke="#888888" x1="601.5" x2="602.5000000000001" y1="188.55855600000004" y2="188.55855600000004"/>
-  <line stroke="#888888" x1="602.5000000000001" x2="602.5000000000001" y1="188.55855600000004" y2="189.55855600000004"/>
-  <line stroke="#888888" x1="602.5000000000001" x2="601.5" y1="189.55855600000004" y2="189.55855600000004"/>
-  <line stroke="#888888" x1="621.5000000000001" x2="621.5000000000001" y1="189.55855600000004" y2="188.55855600000004"/>
-  <line stroke="#888888" x1="621.5000000000001" x2="622.5000000000001" y1="188.55855600000004" y2="188.55855600000004"/>
-  <line stroke="#888888" x1="622.5000000000001" x2="622.5000000000001" y1="188.55855600000004" y2="189.55855600000004"/>
-  <line stroke="#888888" x1="622.5000000000001" x2="621.5000000000001" y1="189.55855600000004" y2="189.55855600000004"/>
-  <line stroke="#888888" x1="601.5" x2="601.5" y1="192.058556" y2="191.05855600000004"/>
-  <line stroke="#888888" x1="601.5" x2="602.5000000000001" y1="191.05855600000004" y2="191.05855600000004"/>
-  <line stroke="#888888" x1="602.5000000000001" x2="602.5000000000001" y1="191.05855600000004" y2="192.058556"/>
-  <line stroke="#888888" x1="602.5000000000001" x2="601.5" y1="192.058556" y2="192.058556"/>
-  <line stroke="#888888" x1="621.5000000000001" x2="621.5000000000001" y1="192.058556" y2="191.05855600000004"/>
-  <line stroke="#888888" x1="621.5000000000001" x2="622.5000000000001" y1="191.05855600000004" y2="191.05855600000004"/>
-  <line stroke="#888888" x1="622.5000000000001" x2="622.5000000000001" y1="191.05855600000004" y2="192.058556"/>
-  <line stroke="#888888" x1="622.5000000000001" x2="621.5000000000001" y1="192.058556" y2="192.058556"/>
-  <line stroke="#888888" x1="601.5" x2="601.5" y1="194.558556" y2="193.55855600000004"/>
-  <line stroke="#888888" x1="601.5" x2="602.5000000000001" y1="193.55855600000004" y2="193.55855600000004"/>
-  <line stroke="#888888" x1="602.5000000000001" x2="602.5000000000001" y1="193.55855600000004" y2="194.558556"/>
-  <line stroke="#888888" x1="602.5000000000001" x2="601.5" y1="194.558556" y2="194.558556"/>
-  <line stroke="#888888" x1="621.5000000000001" x2="621.5000000000001" y1="194.558556" y2="193.55855600000004"/>
-  <line stroke="#888888" x1="621.5000000000001" x2="622.5000000000001" y1="193.55855600000004" y2="193.55855600000004"/>
-  <line stroke="#888888" x1="622.5000000000001" x2="622.5000000000001" y1="193.55855600000004" y2="194.558556"/>
-  <line stroke="#888888" x1="622.5000000000001" x2="621.5000000000001" y1="194.558556" y2="194.558556"/>
-  <line stroke="#888888" x1="601.5" x2="601.5" y1="197.05855600000004" y2="196.05855600000004"/>
-  <line stroke="#888888" x1="601.5" x2="602.5000000000001" y1="196.05855600000004" y2="196.05855600000004"/>
-  <line stroke="#888888" x1="602.5000000000001" x2="602.5000000000001" y1="196.05855600000004" y2="197.05855600000004"/>
-  <line stroke="#888888" x1="602.5000000000001" x2="601.5" y1="197.05855600000004" y2="197.05855600000004"/>
-  <line stroke="#888888" x1="621.5000000000001" x2="621.5000000000001" y1="197.05855600000004" y2="196.05855600000004"/>
-  <line stroke="#888888" x1="621.5000000000001" x2="622.5000000000001" y1="196.05855600000004" y2="196.05855600000004"/>
-  <line stroke="#888888" x1="622.5000000000001" x2="622.5000000000001" y1="196.05855600000004" y2="197.05855600000004"/>
-  <line stroke="#888888" x1="622.5000000000001" x2="621.5000000000001" y1="197.05855600000004" y2="197.05855600000004"/>
-  <line stroke="#888888" x1="601.5" x2="601.5" y1="199.55855600000004" y2="198.55855600000004"/>
-  <line stroke="#888888" x1="601.5" x2="602.5000000000001" y1="198.55855600000004" y2="198.55855600000004"/>
-  <line stroke="#888888" x1="602.5000000000001" x2="602.5000000000001" y1="198.55855600000004" y2="199.55855600000004"/>
-  <line stroke="#888888" x1="602.5000000000001" x2="601.5" y1="199.55855600000004" y2="199.55855600000004"/>
-  <line stroke="#888888" x1="621.5000000000001" x2="621.5000000000001" y1="199.55855600000004" y2="198.55855600000004"/>
-  <line stroke="#888888" x1="621.5000000000001" x2="622.5000000000001" y1="198.55855600000004" y2="198.55855600000004"/>
-  <line stroke="#888888" x1="622.5000000000001" x2="622.5000000000001" y1="198.55855600000004" y2="199.55855600000004"/>
-  <line stroke="#888888" x1="622.5000000000001" x2="621.5000000000001" y1="199.55855600000004" y2="199.55855600000004"/>
-  <line stroke="#888888" x1="601.5" x2="601.5" y1="202.05855600000004" y2="201.058556"/>
-  <line stroke="#888888" x1="601.5" x2="602.5000000000001" y1="201.058556" y2="201.058556"/>
-  <line stroke="#888888" x1="602.5000000000001" x2="602.5000000000001" y1="201.058556" y2="202.05855600000004"/>
-  <line stroke="#888888" x1="602.5000000000001" x2="601.5" y1="202.05855600000004" y2="202.05855600000004"/>
-  <line stroke="#888888" x1="621.5000000000001" x2="621.5000000000001" y1="202.05855600000004" y2="201.058556"/>
-  <line stroke="#888888" x1="621.5000000000001" x2="622.5000000000001" y1="201.058556" y2="201.058556"/>
-  <line stroke="#888888" x1="622.5000000000001" x2="622.5000000000001" y1="201.058556" y2="202.05855600000004"/>
-  <line stroke="#888888" x1="622.5000000000001" x2="621.5000000000001" y1="202.05855600000004" y2="202.05855600000004"/>
-  <line stroke="#888888" x1="601.5" x2="601.5" y1="204.55855600000004" y2="203.558556"/>
-  <line stroke="#888888" x1="601.5" x2="602.5000000000001" y1="203.558556" y2="203.558556"/>
-  <line stroke="#888888" x1="602.5000000000001" x2="602.5000000000001" y1="203.558556" y2="204.55855600000004"/>
-  <line stroke="#888888" x1="602.5000000000001" x2="601.5" y1="204.55855600000004" y2="204.55855600000004"/>
-  <line stroke="#888888" x1="621.5000000000001" x2="621.5000000000001" y1="204.55855600000004" y2="203.558556"/>
-  <line stroke="#888888" x1="621.5000000000001" x2="622.5000000000001" y1="203.558556" y2="203.558556"/>
-  <line stroke="#888888" x1="622.5000000000001" x2="622.5000000000001" y1="203.558556" y2="204.55855600000004"/>
-  <line stroke="#888888" x1="622.5000000000001" x2="621.5000000000001" y1="204.55855600000004" y2="204.55855600000004"/>
-  <line stroke="#888888" x1="601.5" x2="601.5" y1="207.05855600000004" y2="206.05855600000004"/>
-  <line stroke="#888888" x1="601.5" x2="602.5000000000001" y1="206.05855600000004" y2="206.05855600000004"/>
-  <line stroke="#888888" x1="602.5000000000001" x2="602.5000000000001" y1="206.05855600000004" y2="207.05855600000004"/>
-  <line stroke="#888888" x1="602.5000000000001" x2="601.5" y1="207.05855600000004" y2="207.05855600000004"/>
-  <line stroke="#888888" x1="621.5000000000001" x2="621.5000000000001" y1="207.05855600000004" y2="206.05855600000004"/>
-  <line stroke="#888888" x1="621.5000000000001" x2="622.5000000000001" y1="206.05855600000004" y2="206.05855600000004"/>
-  <line stroke="#888888" x1="622.5000000000001" x2="622.5000000000001" y1="206.05855600000004" y2="207.05855600000004"/>
-  <line stroke="#888888" x1="622.5000000000001" x2="621.5000000000001" y1="207.05855600000004" y2="207.05855600000004"/>
-  <line stroke="#888888" x1="601.5" x2="601.5" y1="209.55855600000004" y2="208.55855600000004"/>
-  <line stroke="#888888" x1="601.5" x2="602.5000000000001" y1="208.55855600000004" y2="208.55855600000004"/>
-  <line stroke="#888888" x1="602.5000000000001" x2="602.5000000000001" y1="208.55855600000004" y2="209.55855600000004"/>
-  <line stroke="#888888" x1="602.5000000000001" x2="601.5" y1="209.55855600000004" y2="209.55855600000004"/>
-  <line stroke="#888888" x1="621.5000000000001" x2="621.5000000000001" y1="209.55855600000004" y2="208.55855600000004"/>
-  <line stroke="#888888" x1="621.5000000000001" x2="622.5000000000001" y1="208.55855600000004" y2="208.55855600000004"/>
-  <line stroke="#888888" x1="622.5000000000001" x2="622.5000000000001" y1="208.55855600000004" y2="209.55855600000004"/>
-  <line stroke="#888888" x1="622.5000000000001" x2="621.5000000000001" y1="209.55855600000004" y2="209.55855600000004"/>
-  <line stroke="#888888" x1="601.5" x2="601.5" y1="212.05855600000004" y2="211.05855600000004"/>
-  <line stroke="#888888" x1="601.5" x2="602.5000000000001" y1="211.05855600000004" y2="211.05855600000004"/>
-  <line stroke="#888888" x1="602.5000000000001" x2="602.5000000000001" y1="211.05855600000004" y2="212.05855600000004"/>
-  <line stroke="#888888" x1="602.5000000000001" x2="601.5" y1="212.05855600000004" y2="212.05855600000004"/>
-  <line stroke="#888888" x1="620.5000000000001" x2="620.5000000000001" y1="213.05855600000004" y2="210.05855600000004"/>
-  <line stroke="#888888" x1="620.5000000000001" x2="623.5000000000001" y1="210.05855600000004" y2="210.05855600000004"/>
-  <line stroke="#888888" x1="623.5000000000001" x2="623.5000000000001" y1="210.05855600000004" y2="213.05855600000004"/>
-  <line stroke="#888888" x1="623.5000000000001" x2="620.5000000000001" y1="213.05855600000004" y2="213.05855600000004"/>
-  <line stroke="#888888" x1="616.2500000000001" x2="607.7500000000001" y1="170.05855600000004" y2="170.05855600000004"/>
-  <line stroke="#888888" x1="607.7500000000001" x2="607.7500000000001" y1="170.05855600000004" y2="169.558556"/>
-  <line stroke="#888888" x1="607.7500000000001" x2="616.2500000000001" y1="169.558556" y2="169.558556"/>
-  <line stroke="#888888" x1="616.2500000000001" x2="616.2500000000001" y1="169.558556" y2="170.05855600000004"/>
-  <line stroke="#888888" x1="607.7500000000001" x2="616.2500000000001" y1="217.80855600000004" y2="217.80855600000004"/>
-  <line stroke="#888888" x1="616.2500000000001" x2="616.2500000000001" y1="217.80855600000004" y2="218.30855600000004"/>
-  <line stroke="#888888" x1="616.2500000000001" x2="607.7500000000001" y1="218.30855600000004" y2="218.30855600000004"/>
-  <line stroke="#888888" x1="607.7500000000001" x2="607.7500000000001" y1="218.30855600000004" y2="217.80855600000004"/>
-  <line stroke="#888888" x1="592.5" x2="597.5000000000001" y1="173.39946509090913" y2="173.39946509090913"/>
-  <line stroke="#888888" x1="597.5000000000001" x2="597.5000000000001" y1="173.39946509090913" y2="184.49037418181823"/>
-  <line stroke="#888888" x1="597.5000000000001" x2="592.5" y1="184.49037418181823" y2="184.49037418181823"/>
-  <line stroke="#888888" x1="592.5" x2="597.5000000000001" y1="201.12673781818185" y2="201.12673781818185"/>
-  <line stroke="#888888" x1="597.5000000000001" x2="597.5000000000001" y1="201.12673781818185" y2="212.21764690909094"/>
-  <line stroke="#888888" x1="597.5000000000001" x2="592.5" y1="212.21764690909094" y2="212.21764690909094"/>
-  <line stroke="#888888" x1="617.7500000000001" x2="621.2500000000001" y1="146.308556" y2="146.308556"/>
-  <line stroke="#888888" x1="621.2500000000001" x2="621.2500000000001" y1="146.308556" y2="154.30855600000004"/>
-  <line stroke="#888888" x1="621.2500000000001" x2="617.7500000000001" y1="154.30855600000004" y2="154.30855600000004"/>
-  <line opacity="0.5" stroke="#0000ff" x1="850.733401821533" x2="850.733401821533" y1="100.30855600000002" y2="200.30855600000004"/>
-  <line opacity="0.5" stroke="#0000ff" x1="800.7334018215329" x2="800.7334018215329" y1="100.30855600000002" y2="200.30855600000004"/>
-  <line opacity="0.12111894159084342" stroke="#0000ff" x1="825.733401821533" x2="800.7334018215329" y1="100.30855600000002" y2="100.30855600000002"/>
-  <line opacity="0.12111894159084342" stroke="#0000ff" x1="850.733401821533" x2="825.733401821533" y1="100.30855600000002" y2="100.30855600000002"/>
-  <line opacity="0.4468854644851019" stroke="#0000ff" x1="825.733401821533" x2="800.7334018215329" y1="46.45690792865498" y2="100.30855600000002"/>
-  <line stroke="#000000" x1="792.2466086902074" x2="786.4900052558701" y1="80.42847270018157" y2="86.2684116177914"/>
-  <line stroke="#000000" x1="825.733401821533" x2="792.2466086902074" y1="46.456907928654964" y2="80.42847270018157"/>
-  <line opacity="1.0" stroke="#0000ff" x1="800.7334018215329" x2="786.4900052558701" y1="100.30855600000002" y2="86.2684116177914"/>
-  <line opacity="1.0" stroke="#ff0000" x1="800.7334018215329" x2="780.733401821533" y1="100.30855600000002" y2="92.10835053540121"/>
-  <line stroke="#000000" x1="786.4900052558701" x2="780.733401821533" y1="86.2684116177914" y2="92.10835053540121"/>
-  <line opacity="0.9666666666666667" stroke="#ff0000" x1="780.733401821533" x2="780.733401821533" y1="100.30855600000002" y2="92.10835053540121"/>
-  <line opacity="0.1475836176504332" stroke="#0000ff" x1="800.7334018215329" x2="780.733401821533" y1="100.30855600000002" y2="100.30855600000002"/>
-  <line stroke="#000000" x1="778.0000000000001" x2="780.733401821533" y1="100.30855600000002" y2="100.30855600000002"/>
-  <line stroke="#000000" x1="778.0000000000001" x2="778.0000000000001" y1="92.10835053540121" y2="100.30855600000002"/>
-  <line stroke="#000000" x1="780.733401821533" x2="778.0000000000001" y1="92.10835053540121" y2="92.10835053540121"/>
-  <line stroke="#000000" x1="780.733401821533" x2="780.733401821533" y1="100.30855600000002" y2="200.30855600000004"/>
-  <line opacity="0.1475836176504332" stroke="#0000ff" x1="780.733401821533" x2="800.7334018215329" y1="200.30855600000004" y2="200.30855600000004"/>
-  <line opacity="1.0" stroke="#ff0000" x1="780.733401821533" x2="800.7334018215329" y1="208.50876146459882" y2="200.30855600000004"/>
-  <line opacity="0.9666666666666667" stroke="#ff0000" x1="780.733401821533" x2="780.733401821533" y1="208.50876146459882" y2="200.30855600000004"/>
-  <line stroke="#000000" x1="780.733401821533" x2="786.4900052558701" y1="208.50876146459882" y2="214.34870038220865"/>
-  <line opacity="1.0" stroke="#0000ff" x1="786.4900052558701" x2="800.7334018215329" y1="214.34870038220865" y2="200.30855600000004"/>
-  <line opacity="0.4468854644851019" stroke="#0000ff" x1="825.733401821533" x2="800.7334018215329" y1="254.16020407134508" y2="200.30855600000004"/>
-  <line stroke="#000000" x1="792.2466086902074" x2="825.733401821533" y1="220.18863929981848" y2="254.16020407134508"/>
-  <line stroke="#000000" x1="786.4900052558701" x2="792.2466086902074" y1="214.34870038220865" y2="220.18863929981848"/>
-  <line opacity="0.12111894159084342" stroke="#0000ff" x1="800.7334018215329" x2="825.733401821533" y1="200.30855600000004" y2="200.30855600000004"/>
-  <line opacity="0.12111894159084342" stroke="#0000ff" x1="825.733401821533" x2="850.733401821533" y1="200.30855600000004" y2="200.308556"/>
-  <line opacity="0.4468854644851019" stroke="#0000ff" x1="825.733401821533" x2="850.733401821533" y1="254.16020407134508" y2="200.308556"/>
-  <line stroke="#000000" x1="859.2201949528585" x2="864.9767983871958" y1="220.18863929981845" y2="214.34870038220865"/>
-  <line stroke="#000000" x1="825.733401821533" x2="859.2201949528585" y1="254.16020407134508" y2="220.18863929981845"/>
-  <line opacity="1.0" stroke="#0000ff" x1="850.733401821533" x2="864.9767983871958" y1="200.30855600000004" y2="214.34870038220865"/>
-  <line opacity="1.0" stroke="#ff0000" x1="850.733401821533" x2="870.733401821533" y1="200.308556" y2="208.5087614645988"/>
-  <line stroke="#000000" x1="864.9767983871958" x2="870.733401821533" y1="214.34870038220865" y2="208.5087614645988"/>
-  <line opacity="0.9666666666666667" stroke="#ff0000" x1="870.733401821533" x2="870.733401821533" y1="200.308556" y2="208.5087614645988"/>
-  <line opacity="0.1475836176504332" stroke="#0000ff" x1="850.733401821533" x2="870.733401821533" y1="200.308556" y2="200.308556"/>
-  <line stroke="#000000" x1="873.4668036430659" x2="870.733401821533" y1="200.30855599999998" y2="200.30855599999998"/>
-  <line stroke="#000000" x1="873.4668036430659" x2="873.4668036430659" y1="208.5087614645988" y2="200.30855599999998"/>
-  <line stroke="#000000" x1="870.733401821533" x2="873.4668036430659" y1="208.5087614645988" y2="208.5087614645988"/>
-  <line stroke="#000000" x1="870.733401821533" x2="870.733401821533" y1="200.308556" y2="100.30855600000002"/>
-  <line opacity="0.1475836176504332" stroke="#0000ff" x1="870.733401821533" x2="850.733401821533" y1="100.30855600000002" y2="100.30855600000002"/>
-  <line opacity="1.0" stroke="#ff0000" x1="870.7334018215329" x2="850.733401821533" y1="92.10835053540121" y2="100.30855600000002"/>
-  <line opacity="0.9666666666666667" stroke="#ff0000" x1="870.7334018215329" x2="870.7334018215329" y1="92.10835053540121" y2="100.30855600000002"/>
-  <line stroke="#000000" x1="870.7334018215329" x2="864.9767983871958" y1="92.10835053540121" y2="86.2684116177914"/>
-  <line opacity="1.0" stroke="#0000ff" x1="864.9767983871958" x2="850.733401821533" y1="86.2684116177914" y2="100.30855600000002"/>
-  <line opacity="0.4468854644851019" stroke="#0000ff" x1="825.7334018215329" x2="850.733401821533" y1="46.45690792865502" y2="100.30855600000004"/>
-  <line stroke="#000000" x1="859.2201949528585" x2="825.7334018215329" y1="80.42847270018159" y2="46.45690792865502"/>
-  <line stroke="#000000" x1="864.9767983871958" x2="859.2201949528585" y1="86.26841161779141" y2="80.42847270018159"/>
-  <line stroke="#000000" x1="873.4668036430659" x2="870.733401821533" y1="92.10835053540121" y2="92.10835053540121"/>
-  <line stroke="#000000" x1="873.4668036430659" x2="873.4668036430659" y1="100.30855600000002" y2="92.10835053540121"/>
-  <line stroke="#000000" x1="870.733401821533" x2="873.4668036430659" y1="100.30855600000002" y2="100.30855600000002"/>
-  <line stroke="#000000" x1="778.0000000000001" x2="780.733401821533" y1="208.50876146459882" y2="208.50876146459882"/>
-  <line stroke="#000000" x1="778.0000000000001" x2="778.0000000000001" y1="200.30855600000004" y2="208.50876146459882"/>
-  <line stroke="#000000" x1="780.733401821533" x2="778.0000000000001" y1="200.30855600000004" y2="200.30855600000004"/>
-  <line stroke="#888888" x1="792.1412698700124" x2="789.8713984490114" y1="83.81172921234263" y2="86.11446043235414"/>
-  <line stroke="#888888" x1="789.8713984490114" x2="789.5153135348698" y1="86.11446043235414" y2="85.76345682279894"/>
-  <line stroke="#888888" x1="789.5153135348698" x2="791.7851849558709" y1="85.76345682279894" y2="83.46072560278743"/>
-  <line stroke="#888888" x1="791.7851849558709" x2="792.1412698700124" y1="83.46072560278743" y2="83.81172921234263"/>
-  <line stroke="#888888" x1="778.6833504553833" x2="780.0500513661498" y1="94.84175235693415" y2="94.84175235693415"/>
-  <line stroke="#888888" x1="780.0500513661498" x2="780.0500513661498" y1="94.84175235693415" y2="97.57515417846707"/>
-  <line stroke="#888888" x1="780.0500513661498" x2="778.6833504553833" y1="97.57515417846707" y2="97.57515417846707"/>
-  <line stroke="#888888" x1="789.8713984490114" x2="792.1412698700124" y1="214.50265156764593" y2="216.8053827876574"/>
-  <line stroke="#888888" x1="792.1412698700124" x2="791.7851849558709" y1="216.8053827876574" y2="217.15638639721263"/>
-  <line stroke="#888888" x1="791.7851849558709" x2="789.5153135348698" y1="217.15638639721263" y2="214.85365517720115"/>
-  <line stroke="#888888" x1="789.5153135348698" x2="789.8713984490114" y1="214.85365517720115" y2="214.50265156764593"/>
-  <line stroke="#888888" x1="859.3255337730535" x2="861.5954051940545" y1="216.8053827876574" y2="214.50265156764587"/>
-  <line stroke="#888888" x1="861.5954051940545" x2="861.951490108196" y1="214.50265156764587" y2="214.8536551772011"/>
-  <line stroke="#888888" x1="861.951490108196" x2="859.681618687195" y1="214.8536551772011" y2="217.1563863972126"/>
-  <line stroke="#888888" x1="859.681618687195" x2="859.3255337730535" y1="217.1563863972126" y2="216.8053827876574"/>
-  <line stroke="#888888" x1="872.7834531876827" x2="871.4167522769161" y1="205.77535964306585" y2="205.77535964306585"/>
-  <line stroke="#888888" x1="871.4167522769161" x2="871.4167522769161" y1="205.77535964306585" y2="203.04195782153292"/>
-  <line stroke="#888888" x1="871.4167522769161" x2="872.7834531876827" y1="203.04195782153292" y2="203.04195782153292"/>
-  <line stroke="#888888" x1="861.5954051940544" x2="859.3255337730535" y1="86.11446043235415" y2="83.81172921234264"/>
-  <line stroke="#888888" x1="859.3255337730535" x2="859.681618687195" y1="83.81172921234264" y2="83.46072560278743"/>
-  <line stroke="#888888" x1="859.681618687195" x2="861.951490108196" y1="83.46072560278743" y2="85.76345682279894"/>
-  <line stroke="#888888" x1="861.951490108196" x2="861.5954051940544" y1="85.76345682279894" y2="86.11446043235415"/>
-  <line stroke="#888888" x1="872.7834531876827" x2="871.4167522769161" y1="97.57515417846707" y2="97.57515417846707"/>
-  <line stroke="#888888" x1="871.4167522769161" x2="871.4167522769161" y1="97.57515417846707" y2="94.84175235693415"/>
-  <line stroke="#888888" x1="871.4167522769161" x2="872.7834531876827" y1="94.84175235693415" y2="94.84175235693415"/>
-  <line stroke="#888888" x1="778.6833504553833" x2="780.0500513661498" y1="203.04195782153298" y2="203.04195782153298"/>
-  <line stroke="#888888" x1="780.0500513661498" x2="780.0500513661498" y1="203.04195782153298" y2="205.7753596430659"/>
-  <line stroke="#888888" x1="780.0500513661498" x2="778.6833504553833" y1="205.7753596430659" y2="205.7753596430659"/>
+  <line opacity="0.5" stroke="#0000ff" x1="280.00000000000006" x2="280.00000000000006" y1="70.00000000000001" y2="298.00000000000006"/>
+  <line opacity="0.5" stroke="#0000ff" x1="190.00000000000003" x2="190.00000000000003" y1="70.00000000000001" y2="298.00000000000006"/>
+  <line opacity="0.5" stroke="#0000ff" x1="235.00000000000003" x2="190.00000000000003" y1="70.00000000000001" y2="70.00000000000001"/>
+  <line opacity="0.5" stroke="#0000ff" x1="280.00000000000006" x2="235.00000000000003" y1="70.00000000000001" y2="70.00000000000001"/>
+  <line stroke="#000000" x1="260.0" x2="190.00000000000003" y1="-2.8421709430404014e-14" y2="-2.8421709430404014e-14"/>
+  <line stroke="#000000" x1="235.00000000000003" x2="260.0" y1="-2.8421709430404014e-14" y2="-2.8421709430404014e-14"/>
+  <line opacity="1.0" stroke="#0000ff" x1="190.00000000000003" x2="190.00000000000003" y1="70.0" y2="-2.8421709430404014e-14"/>
+  <line opacity="1.0" stroke="#ff0000" x1="190.00000000000003" x2="120.00000000000003" y1="70.0" y2="-2.8421709430404014e-14"/>
+  <line stroke="#000000" x1="190.00000000000003" x2="120.00000000000003" y1="-2.8421709430404014e-14" y2="-2.8421709430404014e-14"/>
+  <line opacity="0.9666666666666667" stroke="#ff0000" x1="120.00000000000001" x2="120.00000000000001" y1="70.0" y2="0.0"/>
+  <line opacity="0.5" stroke="#0000ff" x1="190.00000000000003" x2="120.00000000000001" y1="70.00000000000001" y2="70.0"/>
+  <line stroke="#000000" x1="96.66666666666666" x2="120.00000000000001" y1="70.0" y2="70.0"/>
+  <line stroke="#000000" x1="96.66666666666669" x2="96.66666666666666" y1="0.0" y2="70.0"/>
+  <line stroke="#000000" x1="120.00000000000003" x2="96.66666666666669" y1="0.0" y2="0.0"/>
+  <line opacity="0.5" stroke="#0000ff" x1="120.0" x2="190.00000000000003" y1="298.00000000000006" y2="298.00000000000006"/>
+  <line opacity="1.0" stroke="#ff0000" x1="119.99999999999999" x2="190.00000000000003" y1="368.00000000000006" y2="298.00000000000006"/>
+  <line opacity="0.9666666666666667" stroke="#ff0000" x1="119.99999999999999" x2="120.0" y1="368.00000000000006" y2="298.00000000000006"/>
+  <line stroke="#000000" x1="119.99999999999999" x2="190.0" y1="368.00000000000006" y2="368.00000000000006"/>
+  <line opacity="1.0" stroke="#0000ff" x1="190.0" x2="190.00000000000003" y1="368.00000000000006" y2="298.00000000000006"/>
+  <line stroke="#000000" x1="259.99999999999994" x2="235.0" y1="368.00000000000006" y2="368.00000000000006"/>
+  <line stroke="#000000" x1="190.0" x2="259.99999999999994" y1="368.00000000000006" y2="368.00000000000006"/>
+  <line opacity="0.5" stroke="#0000ff" x1="190.00000000000003" x2="235.00000000000003" y1="298.00000000000006" y2="298.00000000000006"/>
+  <line opacity="0.5" stroke="#0000ff" x1="235.00000000000003" x2="280.00000000000006" y1="298.00000000000006" y2="298.00000000000006"/>
+  <line stroke="#000000" x1="210.00000000000003" x2="280.00000000000006" y1="368.00000000000006" y2="368.00000000000006"/>
+  <line stroke="#000000" x1="235.0" x2="210.00000000000003" y1="368.00000000000006" y2="368.00000000000006"/>
+  <line opacity="1.0" stroke="#0000ff" x1="280.00000000000006" x2="280.00000000000006" y1="298.00000000000006" y2="368.00000000000006"/>
+  <line opacity="1.0" stroke="#ff0000" x1="280.00000000000006" x2="350.0" y1="298.00000000000006" y2="368.00000000000006"/>
+  <line stroke="#000000" x1="280.00000000000006" x2="350.0" y1="368.00000000000006" y2="368.00000000000006"/>
+  <line opacity="0.9666666666666667" stroke="#ff0000" x1="350.0" x2="350.0" y1="298.0000000000001" y2="368.00000000000006"/>
+  <line opacity="0.5" stroke="#0000ff" x1="280.00000000000006" x2="350.0" y1="298.00000000000006" y2="298.0000000000001"/>
+  <line stroke="#000000" x1="373.3333333333333" x2="350.0" y1="298.0000000000001" y2="298.0000000000001"/>
+  <line stroke="#000000" x1="373.33333333333326" x2="373.3333333333333" y1="368.00000000000006" y2="298.0000000000001"/>
+  <line stroke="#000000" x1="349.99999999999994" x2="373.33333333333326" y1="368.00000000000006" y2="368.00000000000006"/>
+  <line opacity="0.5" stroke="#0000ff" x1="350.00000000000006" x2="280.0000000000001" y1="70.0" y2="69.99999999999997"/>
+  <line opacity="1.0" stroke="#ff0000" x1="350.00000000000006" x2="280.0000000000001" y1="-2.8421709430404014e-14" y2="69.99999999999996"/>
+  <line opacity="0.9666666666666667" stroke="#ff0000" x1="350.00000000000006" x2="350.00000000000006" y1="-2.8421709430404014e-14" y2="69.99999999999999"/>
+  <line stroke="#000000" x1="350.00000000000006" x2="280.00000000000017" y1="-2.8421709430404014e-14" y2="-5.684341886080803e-14"/>
+  <line opacity="1.0" stroke="#0000ff" x1="280.00000000000017" x2="280.0000000000001" y1="-5.684341886080803e-14" y2="69.99999999999997"/>
+  <line stroke="#000000" x1="210.0000000000001" x2="235.00000000000009" y1="-1.1368683772161605e-13" y2="-8.526512829121203e-14"/>
+  <line stroke="#000000" x1="280.0000000000001" x2="210.0000000000001" y1="-5.684341886080803e-14" y2="-1.1368683772161605e-13"/>
+  <line stroke="#000000" x1="373.33333333333337" x2="350.00000000000006" y1="0.0" y2="0.0"/>
+  <line stroke="#000000" x1="373.33333333333337" x2="373.33333333333337" y1="70.00000000000003" y2="0.0"/>
+  <line stroke="#000000" x1="350.00000000000006" x2="373.33333333333337" y1="70.00000000000001" y2="70.00000000000003"/>
+  <line stroke="#000000" x1="350.0" x2="350.0" y1="298.0000000000001" y2="298.0000000000001"/>
+  <line stroke="#000000" x1="350.00000000000006" x2="350.00000000000006" y1="70.0" y2="70.0"/>
+  <line stroke="#000000" x1="350.0" x2="350.00000000000006" y1="131.0" y2="70.0"/>
+  <line stroke="#000000" x1="350.0" x2="350.0" y1="141.0" y2="131.0"/>
+  <line stroke="#000000" x1="350.0" x2="350.0" y1="238.00000000000003" y2="165.00000000000003"/>
+  <line stroke="#000000" x1="350.0" x2="350.0" y1="238.00000000000003" y2="238.00000000000003"/>
+  <line stroke="#000000" x1="350.00000000000006" x2="350.00000000000006" y1="70.0" y2="70.0"/>
+  <line stroke="#000000" x1="384.00000000000006" x2="350.0" y1="141.0" y2="141.0"/>
+  <line opacity="0.5" stroke="#0000ff" x1="350.0" x2="384.00000000000006" y1="165.00000000000003" y2="165.00000000000006"/>
+  <line stroke="#000000" x1="420.00000000000006" x2="384.00000000000006" y1="141.00000000000003" y2="141.0"/>
+  <line opacity="0.5" stroke="#ff0000" x1="420.00000000000006" x2="420.00000000000006" y1="141.00000000000003" y2="165.00000000000006"/>
+  <line stroke="#000000" x1="384.00000000000006" x2="420.00000000000006" y1="165.00000000000006" y2="165.00000000000006"/>
+  <line stroke="#000000" x1="420.00000000000006" x2="465.00000000000006" y1="165.00000000000006" y2="165.00000000000009"/>
+  <line stroke="#000000" x1="465.00000000000006" x2="420.00000000000006" y1="141.00000000000006" y2="141.00000000000003"/>
+  <line stroke="#000000" x1="465.00000000000006" x2="465.00000000000006" y1="165.00000000000009" y2="141.00000000000006"/>
+  <line stroke="#000000" x1="350.0" x2="350.0" y1="165.00000000000003" y2="185.00000000000003"/>
+  <line stroke="#000000" x1="384.00000000000006" x2="384.00000000000006" y1="185.00000000000006" y2="165.00000000000006"/>
+  <line opacity="0.5" stroke="#0000ff" x1="350.0" x2="384.00000000000006" y1="185.00000000000003" y2="185.00000000000006"/>
+  <line stroke="#000000" x1="350.0" x2="350.0" y1="185.00000000000003" y2="209.00000000000003"/>
+  <line stroke="#000000" x1="384.00000000000006" x2="384.00000000000006" y1="209.00000000000006" y2="185.00000000000006"/>
+  <line opacity="0.5" stroke="#0000ff" x1="350.0" x2="384.00000000000006" y1="209.00000000000003" y2="209.00000000000006"/>
+  <line stroke="#000000" x1="350.0" x2="350.0" y1="209.00000000000006" y2="229.00000000000006"/>
+  <line stroke="#000000" x1="384.00000000000006" x2="384.00000000000006" y1="229.00000000000006" y2="209.00000000000006"/>
+  <line opacity="0.5" stroke="#0000ff" x1="384.00000000000006" x2="350.0" y1="229.00000000000006" y2="229.00000000000006"/>
+  <line stroke="#000000" x1="384.00000000000006" x2="384.00000000000006" y1="239.00000000000006" y2="229.00000000000006"/>
+  <line stroke="#000000" x1="350.0" x2="384.00000000000006" y1="239.00000000000006" y2="239.00000000000006"/>
+  <line stroke="#000000" x1="350.0" x2="350.0" y1="229.00000000000006" y2="239.00000000000006"/>
+  <line stroke="#000000" x1="350.0" x2="411.65427803486153" y1="298.00000000000006" y2="298.0000000000001"/>
+  <line stroke="#000000" x1="411.65427803486153" x2="350.0" y1="238.00000000000009" y2="238.00000000000003"/>
+  <line opacity="0.25" stroke="#ff0000" x1="411.65427803486153" x2="411.65427803486153" y1="238.00000000000009" y2="298.0000000000001"/>
+  <line stroke="#000000" x1="438.65427803486153" x2="411.65427803486153" y1="238.00000000000009" y2="238.00000000000009"/>
+  <line opacity="0.25" stroke="#ff0000" x1="438.65427803486153" x2="438.65427803486153" y1="298.0000000000001" y2="238.00000000000009"/>
+  <line opacity="0.5" stroke="#0000ff" x1="411.65427803486153" x2="438.65427803486153" y1="298.0000000000001" y2="298.0000000000001"/>
+  <line stroke="#000000" x1="500.30855606972295" x2="438.65427803486153" y1="238.0000000000001" y2="238.00000000000009"/>
+  <line stroke="#000000" x1="500.30855606972295" x2="500.30855606972295" y1="298.00000000000017" y2="238.0000000000001"/>
+  <line stroke="#000000" x1="438.6542780348615" x2="500.30855606972295" y1="298.0000000000001" y2="298.00000000000017"/>
+  <line stroke="#000000" x1="411.6542780348615" x2="411.6542780348615" y1="298.0000000000001" y2="315.0000000000001"/>
+  <line stroke="#000000" x1="438.6542780348615" x2="438.6542780348615" y1="315.00000000000017" y2="298.0000000000001"/>
+  <line opacity="0.5" stroke="#0000ff" x1="411.6542780348615" x2="438.6542780348615" y1="315.0000000000001" y2="315.00000000000017"/>
+  <line stroke="#000000" x1="411.6542780348615" x2="411.6542780348615" y1="315.0000000000001" y2="375.00000000000017"/>
+  <line stroke="#000000" x1="438.6542780348615" x2="438.6542780348615" y1="375.00000000000017" y2="315.00000000000017"/>
+  <line opacity="0.5" stroke="#0000ff" x1="411.6542780348615" x2="438.6542780348615" y1="375.00000000000017" y2="375.00000000000017"/>
+  <line stroke="#000000" x1="411.6542780348614" x2="411.6542780348614" y1="375.00000000000017" y2="392.00000000000017"/>
+  <line stroke="#000000" x1="438.65427803486136" x2="438.65427803486136" y1="392.00000000000017" y2="375.00000000000017"/>
+  <line opacity="0.5" stroke="#0000ff" x1="438.65427803486136" x2="411.6542780348614" y1="392.00000000000017" y2="392.00000000000017"/>
+  <line stroke="#000000" x1="438.65427803486136" x2="438.65427803486136" y1="402.00000000000017" y2="392.00000000000017"/>
+  <line stroke="#000000" x1="411.6542780348614" x2="438.65427803486136" y1="402.00000000000017" y2="402.00000000000017"/>
+  <line stroke="#000000" x1="411.6542780348614" x2="411.6542780348614" y1="392.00000000000017" y2="402.00000000000017"/>
+  <line stroke="#000000" x1="96.66666666666666" x2="120.0" y1="368.00000000000006" y2="368.00000000000006"/>
+  <line stroke="#000000" x1="96.66666666666666" x2="96.66666666666666" y1="298.00000000000006" y2="368.00000000000006"/>
+  <line stroke="#000000" x1="120.0" x2="96.66666666666666" y1="298.00000000000006" y2="298.00000000000006"/>
+  <line stroke="#000000" x1="120.00000000000001" x2="120.00000000000001" y1="70.00000000000001" y2="70.00000000000001"/>
+  <line stroke="#000000" x1="120.0" x2="120.0" y1="298.00000000000006" y2="298.00000000000006"/>
+  <line stroke="#000000" x1="110.0" x2="120.0" y1="298.00000000000006" y2="298.00000000000006"/>
+  <line stroke="#000000" x1="110.0" x2="110.0" y1="238.00000000000003" y2="298.00000000000006"/>
+  <line stroke="#000000" x1="120.0" x2="110.0" y1="238.00000000000003" y2="238.00000000000003"/>
+  <line stroke="#000000" x1="120.0" x2="120.0" y1="165.00000000000003" y2="238.00000000000003"/>
+  <line stroke="#000000" x1="120.00000000000001" x2="120.0" y1="131.0" y2="141.0"/>
+  <line stroke="#000000" x1="120.00000000000001" x2="120.00000000000001" y1="70.00000000000001" y2="70.00000000000001"/>
+  <line stroke="#000000" x1="120.0" x2="120.0" y1="238.00000000000003" y2="238.00000000000003"/>
+  <line stroke="#000000" x1="120.00000000000001" x2="86.00000000000001" y1="141.0" y2="141.0"/>
+  <line opacity="0.5" stroke="#0000ff" x1="86.00000000000001" x2="120.00000000000001" y1="165.00000000000003" y2="165.00000000000003"/>
+  <line stroke="#000000" x1="50.0" x2="86.00000000000001" y1="165.00000000000003" y2="165.00000000000003"/>
+  <line opacity="0.5" stroke="#ff0000" x1="50.0" x2="50.0" y1="165.00000000000003" y2="141.0"/>
+  <line stroke="#000000" x1="86.00000000000001" x2="50.0" y1="141.0" y2="141.0"/>
+  <line stroke="#000000" x1="50.0" x2="5.000000000000001" y1="141.0" y2="141.0"/>
+  <line stroke="#000000" x1="5.000000000000001" x2="50.0" y1="165.00000000000003" y2="165.00000000000003"/>
+  <line stroke="#000000" x1="0.0" x2="5.000000000000001" y1="165.00000000000003" y2="165.00000000000003"/>
+  <line stroke="#000000" x1="0.0" x2="0.0" y1="141.0" y2="165.00000000000003"/>
+  <line stroke="#000000" x1="5.000000000000001" x2="0.0" y1="141.0" y2="141.0"/>
+  <line stroke="#000000" x1="86.00000000000001" x2="86.00000000000001" y1="165.00000000000003" y2="185.00000000000003"/>
+  <line stroke="#000000" x1="120.00000000000001" x2="120.00000000000001" y1="185.00000000000003" y2="165.00000000000003"/>
+  <line opacity="0.5" stroke="#0000ff" x1="86.00000000000001" x2="120.00000000000001" y1="185.00000000000003" y2="185.00000000000003"/>
+  <line stroke="#000000" x1="86.00000000000001" x2="86.00000000000001" y1="185.00000000000003" y2="209.00000000000003"/>
+  <line stroke="#000000" x1="120.00000000000001" x2="120.00000000000001" y1="209.00000000000003" y2="185.00000000000003"/>
+  <line opacity="0.5" stroke="#0000ff" x1="86.00000000000001" x2="120.00000000000001" y1="209.00000000000003" y2="209.00000000000003"/>
+  <line stroke="#000000" x1="86.00000000000001" x2="86.00000000000001" y1="209.00000000000003" y2="229.00000000000003"/>
+  <line stroke="#000000" x1="120.00000000000001" x2="120.00000000000001" y1="229.00000000000003" y2="209.00000000000003"/>
+  <line opacity="0.5" stroke="#0000ff" x1="120.00000000000001" x2="86.00000000000001" y1="229.00000000000003" y2="229.00000000000003"/>
+  <line stroke="#000000" x1="120.00000000000001" x2="120.00000000000001" y1="239.00000000000003" y2="229.00000000000003"/>
+  <line stroke="#000000" x1="86.00000000000001" x2="120.00000000000001" y1="239.00000000000003" y2="239.00000000000003"/>
+  <line stroke="#000000" x1="86.00000000000001" x2="86.00000000000001" y1="229.00000000000003" y2="239.00000000000003"/>
+  <line opacity="0.25" stroke="#0000ff" x1="83.86137800081468" x2="83.86137800081468" y1="131.0" y2="70.00000000000001"/>
+  <line stroke="#000000" x1="120.00000000000001" x2="83.86137800081468" y1="70.00000000000001" y2="70.00000000000001"/>
+  <line stroke="#000000" x1="83.86137800081468" x2="120.0" y1="131.0" y2="131.0"/>
+  <line opacity="0.25" stroke="#0000ff" x1="59.86137800081469" x2="59.86137800081469" y1="70.00000000000001" y2="131.0"/>
+  <line opacity="0.5" stroke="#0000ff" x1="59.86137800081469" x2="83.86137800081468" y1="70.00000000000001" y2="70.00000000000001"/>
+  <line stroke="#000000" x1="23.722756001629364" x2="59.86137800081469" y1="131.0" y2="131.0"/>
+  <line stroke="#000000" x1="59.86137800081469" x2="23.722756001629364" y1="70.0" y2="70.0"/>
+  <line stroke="#000000" x1="13.722756001629365" x2="23.722756001629364" y1="131.0" y2="131.0"/>
+  <line stroke="#000000" x1="13.722756001629365" x2="13.722756001629365" y1="70.0" y2="131.0"/>
+  <line stroke="#000000" x1="23.722756001629364" x2="13.722756001629365" y1="70.0" y2="70.0"/>
+  <line stroke="#000000" x1="59.86137800081469" x2="59.86137800081469" y1="60.00000000000001" y2="70.00000000000001"/>
+  <line stroke="#000000" x1="83.86137800081468" x2="59.86137800081469" y1="60.00000000000001" y2="60.00000000000001"/>
+  <line stroke="#000000" x1="83.86137800081468" x2="83.86137800081468" y1="70.00000000000001" y2="60.00000000000001"/>
+  <line stroke="#000000" x1="83.86137800081468" x2="83.86137800081468" y1="141.0" y2="131.0"/>
+  <line stroke="#000000" x1="59.86137800081469" x2="83.86137800081468" y1="141.0" y2="141.0"/>
+  <line stroke="#000000" x1="59.86137800081469" x2="59.86137800081469" y1="131.0" y2="141.0"/>
+  <line stroke="#888888" x1="236.91666666666669" x2="213.08333333333334" y1="17.74999999999997" y2="17.74999999999997"/>
+  <line stroke="#888888" x1="213.08333333333334" x2="213.08333333333334" y1="17.74999999999997" y2="17.249999999999975"/>
+  <line stroke="#888888" x1="213.08333333333334" x2="236.91666666666669" y1="17.249999999999975" y2="17.249999999999975"/>
+  <line stroke="#888888" x1="236.91666666666669" x2="236.91666666666669" y1="17.249999999999975" y2="17.74999999999997"/>
+  <line stroke="#888888" x1="102.50000000000001" x2="114.1666666666667" y1="23.333333333333318" y2="23.333333333333318"/>
+  <line stroke="#888888" x1="114.1666666666667" x2="114.16666666666669" y1="23.333333333333318" y2="46.66666666666666"/>
+  <line stroke="#888888" x1="114.16666666666669" x2="102.50000000000004" y1="46.66666666666666" y2="46.66666666666666"/>
+  <line stroke="#888888" x1="213.08333333333334" x2="236.91666666666666" y1="350.25" y2="350.25"/>
+  <line stroke="#888888" x1="236.91666666666666" x2="236.91666666666666" y1="350.25" y2="350.75"/>
+  <line stroke="#888888" x1="236.91666666666666" x2="213.08333333333334" y1="350.75" y2="350.75"/>
+  <line stroke="#888888" x1="213.08333333333334" x2="213.08333333333334" y1="350.75" y2="350.25"/>
+  <line stroke="#888888" x1="233.08333333333334" x2="256.9166666666667" y1="350.25" y2="350.25"/>
+  <line stroke="#888888" x1="256.9166666666667" x2="256.9166666666667" y1="350.25" y2="350.75"/>
+  <line stroke="#888888" x1="256.9166666666667" x2="233.08333333333334" y1="350.75" y2="350.75"/>
+  <line stroke="#888888" x1="233.08333333333334" x2="233.08333333333334" y1="350.75" y2="350.25"/>
+  <line stroke="#888888" x1="367.5" x2="355.83333333333337" y1="344.6666666666668" y2="344.6666666666668"/>
+  <line stroke="#888888" x1="355.83333333333337" x2="355.83333333333337" y1="344.6666666666668" y2="321.3333333333334"/>
+  <line stroke="#888888" x1="355.83333333333337" x2="367.50000000000006" y1="321.3333333333334" y2="321.3333333333334"/>
+  <line stroke="#888888" x1="256.91666666666674" x2="233.08333333333343" y1="17.749999999999915" y2="17.74999999999989"/>
+  <line stroke="#888888" x1="233.08333333333343" x2="233.08333333333343" y1="17.74999999999989" y2="17.249999999999886"/>
+  <line stroke="#888888" x1="233.08333333333343" x2="256.91666666666674" y1="17.249999999999886" y2="17.24999999999992"/>
+  <line stroke="#888888" x1="256.91666666666674" x2="256.91666666666674" y1="17.24999999999992" y2="17.749999999999915"/>
+  <line stroke="#888888" x1="367.5000000000001" x2="355.8333333333334" y1="46.66666666666669" y2="46.66666666666666"/>
+  <line stroke="#888888" x1="355.8333333333334" x2="355.8333333333334" y1="46.66666666666666" y2="23.333333333333346"/>
+  <line stroke="#888888" x1="355.8333333333334" x2="367.50000000000006" y1="23.333333333333346" y2="23.333333333333346"/>
+  <line stroke="#888888" x1="342.2500000000001" x2="342.2500000000001" y1="92.43181818181819" y2="80.84090909090908"/>
+  <line stroke="#888888" x1="342.2500000000001" x2="342.7500000000001" y1="80.84090909090908" y2="80.84090909090908"/>
+  <line stroke="#888888" x1="342.7500000000001" x2="342.7500000000001" y1="80.84090909090908" y2="92.43181818181819"/>
+  <line stroke="#888888" x1="342.7500000000001" x2="342.2500000000001" y1="92.43181818181819" y2="92.43181818181819"/>
+  <line stroke="#888888" x1="342.25000000000006" x2="342.25000000000006" y1="120.15909090909092" y2="108.56818181818183"/>
+  <line stroke="#888888" x1="342.25000000000006" x2="342.75000000000006" y1="108.56818181818183" y2="108.56818181818183"/>
+  <line stroke="#888888" x1="342.75000000000006" x2="342.75000000000006" y1="108.56818181818183" y2="120.15909090909092"/>
+  <line stroke="#888888" x1="342.75000000000006" x2="342.25000000000006" y1="120.15909090909092" y2="120.15909090909092"/>
+  <line stroke="#888888" x1="372.9166666666667" x2="361.0833333333334" y1="148.75000000000003" y2="148.75000000000003"/>
+  <line stroke="#888888" x1="361.0833333333334" x2="361.0833333333334" y1="148.75000000000003" y2="148.25"/>
+  <line stroke="#888888" x1="361.0833333333334" x2="372.9166666666667" y1="148.25" y2="148.25"/>
+  <line stroke="#888888" x1="372.9166666666667" x2="372.9166666666667" y1="148.25" y2="148.75000000000003"/>
+  <line stroke="#888888" x1="461.00000000000006" x2="461.00000000000006" y1="157.25000000000009" y2="148.75000000000009"/>
+  <line stroke="#888888" x1="461.00000000000006" x2="461.50000000000006" y1="148.75000000000009" y2="148.75000000000009"/>
+  <line stroke="#888888" x1="461.50000000000006" x2="461.50000000000006" y1="148.75000000000009" y2="157.25000000000009"/>
+  <line stroke="#888888" x1="461.50000000000006" x2="461.00000000000006" y1="157.25000000000009" y2="157.25000000000009"/>
+  <line stroke="#888888" x1="361.00000000000006" x2="361.00000000000006" y1="184.00000000000003" y2="180.00000000000006"/>
+  <line stroke="#888888" x1="361.00000000000006" x2="373.0" y1="180.00000000000006" y2="180.00000000000006"/>
+  <line stroke="#888888" x1="373.0" x2="373.0" y1="180.00000000000006" y2="184.00000000000003"/>
+  <line stroke="#888888" x1="373.0" x2="361.00000000000006" y1="184.00000000000003" y2="184.00000000000003"/>
+  <line stroke="#888888" x1="362.50000000000006" x2="362.50000000000006" y1="172.00000000000003" y2="168.0"/>
+  <line stroke="#888888" x1="362.50000000000006" x2="371.50000000000006" y1="168.0" y2="168.00000000000003"/>
+  <line stroke="#888888" x1="371.50000000000006" x2="371.50000000000006" y1="168.00000000000003" y2="172.00000000000006"/>
+  <line stroke="#888888" x1="371.50000000000006" x2="362.50000000000006" y1="172.00000000000006" y2="172.00000000000003"/>
+  <line stroke="#888888" x1="361.00000000000006" x2="361.00000000000006" y1="208.50000000000006" y2="185.50000000000006"/>
+  <line stroke="#888888" x1="361.00000000000006" x2="373.0" y1="185.50000000000006" y2="185.50000000000006"/>
+  <line stroke="#888888" x1="373.0" x2="373.0" y1="185.50000000000006" y2="208.50000000000006"/>
+  <line stroke="#888888" x1="373.0" x2="361.00000000000006" y1="208.50000000000006" y2="208.50000000000006"/>
+  <line stroke="#888888" x1="361.00000000000006" x2="361.00000000000006" y1="214.00000000000006" y2="210.00000000000006"/>
+  <line stroke="#888888" x1="361.00000000000006" x2="373.0" y1="210.00000000000006" y2="210.00000000000006"/>
+  <line stroke="#888888" x1="373.0" x2="373.0" y1="210.00000000000006" y2="214.00000000000006"/>
+  <line stroke="#888888" x1="373.0" x2="361.00000000000006" y1="214.00000000000006" y2="214.00000000000006"/>
+  <line stroke="#888888" x1="361.3333333333334" x2="361.3333333333334" y1="236.50000000000003" y2="231.50000000000006"/>
+  <line stroke="#888888" x1="361.3333333333334" x2="372.6666666666667" y1="231.50000000000006" y2="231.50000000000006"/>
+  <line stroke="#888888" x1="372.6666666666667" x2="372.6666666666667" y1="231.50000000000006" y2="236.50000000000003"/>
+  <line stroke="#888888" x1="416.15427803486153" x2="416.15427803486153" y1="297.5000000000001" y2="294.5000000000001"/>
+  <line stroke="#888888" x1="416.15427803486153" x2="434.15427803486153" y1="294.5000000000001" y2="294.5000000000001"/>
+  <line stroke="#888888" x1="434.15427803486153" x2="434.15427803486153" y1="294.5000000000001" y2="297.5000000000001"/>
+  <line stroke="#888888" x1="434.15427803486153" x2="416.15427803486153" y1="297.5000000000001" y2="297.5000000000001"/>
+  <line stroke="#888888" x1="429.90427803486153" x2="420.40427803486153" y1="245.75000000000009" y2="245.75000000000009"/>
+  <line stroke="#888888" x1="420.40427803486153" x2="420.40427803486153" y1="245.75000000000009" y2="245.25000000000009"/>
+  <line stroke="#888888" x1="420.40427803486153" x2="429.90427803486153" y1="245.25000000000009" y2="245.25000000000009"/>
+  <line stroke="#888888" x1="429.90427803486153" x2="429.90427803486153" y1="245.25000000000009" y2="245.75000000000009"/>
+  <line stroke="#888888" x1="492.55855606972295" x2="492.55855606972295" y1="278.25000000000017" y2="257.75000000000017"/>
+  <line stroke="#888888" x1="492.55855606972295" x2="493.05855606972295" y1="257.75000000000017" y2="257.75000000000017"/>
+  <line stroke="#888888" x1="493.05855606972295" x2="493.05855606972295" y1="257.75000000000017" y2="278.25000000000017"/>
+  <line stroke="#888888" x1="493.05855606972295" x2="492.55855606972295" y1="278.25000000000017" y2="278.25000000000017"/>
+  <line stroke="#888888" x1="416.1542780348615" x2="416.1542780348615" y1="301.0000000000001" y2="298.0000000000001"/>
+  <line stroke="#888888" x1="416.1542780348615" x2="434.1542780348615" y1="298.0000000000001" y2="298.0000000000001"/>
+  <line stroke="#888888" x1="434.1542780348615" x2="434.1542780348615" y1="298.0000000000001" y2="301.0000000000001"/>
+  <line stroke="#888888" x1="434.1542780348615" x2="416.1542780348615" y1="301.0000000000001" y2="301.0000000000001"/>
+  <line stroke="#888888" x1="420.6542780348614" x2="420.6542780348614" y1="399.5000000000001" y2="394.50000000000017"/>
+  <line stroke="#888888" x1="420.6542780348614" x2="429.65427803486136" y1="394.50000000000017" y2="394.50000000000017"/>
+  <line stroke="#888888" x1="429.65427803486136" x2="429.65427803486136" y1="394.50000000000017" y2="399.5000000000001"/>
+  <line stroke="#888888" x1="102.50000000000001" x2="114.16666666666667" y1="321.33333333333337" y2="321.33333333333337"/>
+  <line stroke="#888888" x1="114.16666666666667" x2="114.16666666666667" y1="321.33333333333337" y2="344.6666666666667"/>
+  <line stroke="#888888" x1="114.16666666666667" x2="102.50000000000001" y1="344.6666666666667" y2="344.6666666666667"/>
+  <line stroke="#888888" x1="112.5" x2="112.5" y1="258.0" y2="253.00000000000003"/>
+  <line stroke="#888888" x1="112.5" x2="117.5" y1="253.00000000000003" y2="258.0"/>
+  <line stroke="#888888" x1="117.5" x2="117.5" y1="258.0" y2="278.0"/>
+  <line stroke="#888888" x1="117.5" x2="112.5" y1="278.0" y2="283.0"/>
+  <line stroke="#888888" x1="112.5" x2="112.5" y1="283.0" y2="278.0"/>
+  <line stroke="#888888" x1="108.91666666666669" x2="97.08333333333336" y1="148.75000000000003" y2="148.75000000000003"/>
+  <line stroke="#888888" x1="97.08333333333336" x2="97.08333333333336" y1="148.75000000000003" y2="148.25"/>
+  <line stroke="#888888" x1="97.08333333333336" x2="108.91666666666669" y1="148.25" y2="148.25"/>
+  <line stroke="#888888" x1="108.91666666666669" x2="108.91666666666669" y1="148.25" y2="148.75000000000003"/>
+  <line stroke="#888888" x1="1.2500000000000002" x2="1.2500000000000002" y1="149.00000000000003" y2="146.50000000000003"/>
+  <line stroke="#888888" x1="1.2500000000000002" x2="3.7500000000000004" y1="146.50000000000003" y2="149.00000000000003"/>
+  <line stroke="#888888" x1="3.7500000000000004" x2="3.7500000000000004" y1="149.00000000000003" y2="157.0"/>
+  <line stroke="#888888" x1="3.7500000000000004" x2="1.2500000000000002" y1="157.0" y2="159.5"/>
+  <line stroke="#888888" x1="1.2500000000000002" x2="1.2500000000000002" y1="159.5" y2="157.0"/>
+  <line stroke="#888888" x1="97.00000000000001" x2="97.00000000000001" y1="184.00000000000003" y2="180.0"/>
+  <line stroke="#888888" x1="97.00000000000001" x2="109.00000000000001" y1="180.0" y2="180.0"/>
+  <line stroke="#888888" x1="109.00000000000001" x2="109.00000000000001" y1="180.0" y2="184.00000000000003"/>
+  <line stroke="#888888" x1="109.00000000000001" x2="97.00000000000001" y1="184.00000000000003" y2="184.00000000000003"/>
+  <line stroke="#888888" x1="98.50000000000001" x2="98.50000000000001" y1="172.00000000000003" y2="168.0"/>
+  <line stroke="#888888" x1="98.50000000000001" x2="107.50000000000001" y1="168.0" y2="168.0"/>
+  <line stroke="#888888" x1="107.50000000000001" x2="107.50000000000001" y1="168.0" y2="172.00000000000003"/>
+  <line stroke="#888888" x1="107.50000000000001" x2="98.50000000000001" y1="172.00000000000003" y2="172.00000000000003"/>
+  <line stroke="#888888" x1="97.00000000000001" x2="97.00000000000001" y1="208.50000000000003" y2="185.50000000000003"/>
+  <line stroke="#888888" x1="97.00000000000001" x2="109.00000000000001" y1="185.50000000000003" y2="185.50000000000003"/>
+  <line stroke="#888888" x1="109.00000000000001" x2="109.00000000000001" y1="185.50000000000003" y2="208.50000000000003"/>
+  <line stroke="#888888" x1="109.00000000000001" x2="97.00000000000001" y1="208.50000000000003" y2="208.50000000000003"/>
+  <line stroke="#888888" x1="97.00000000000001" x2="97.00000000000001" y1="214.0" y2="210.00000000000003"/>
+  <line stroke="#888888" x1="97.00000000000001" x2="109.00000000000001" y1="210.00000000000003" y2="210.00000000000003"/>
+  <line stroke="#888888" x1="109.00000000000001" x2="109.00000000000001" y1="210.00000000000003" y2="214.0"/>
+  <line stroke="#888888" x1="109.00000000000001" x2="97.00000000000001" y1="214.0" y2="214.0"/>
+  <line stroke="#888888" x1="97.33333333333336" x2="97.33333333333336" y1="236.50000000000003" y2="231.50000000000003"/>
+  <line stroke="#888888" x1="97.33333333333336" x2="108.66666666666669" y1="231.50000000000003" y2="231.50000000000003"/>
+  <line stroke="#888888" x1="108.66666666666669" x2="108.66666666666669" y1="231.50000000000003" y2="236.50000000000003"/>
+  <line stroke="#888888" x1="65.36137800081468" x2="65.36137800081468" y1="113.00000000000001" y2="102.00000000000001"/>
+  <line stroke="#888888" x1="65.36137800081468" x2="78.36137800081468" y1="102.00000000000001" y2="102.00000000000001"/>
+  <line stroke="#888888" x1="78.36137800081468" x2="78.36137800081468" y1="102.00000000000001" y2="113.00000000000001"/>
+  <line stroke="#888888" x1="78.36137800081468" x2="65.36137800081468" y1="113.00000000000001" y2="113.00000000000001"/>
+  <line stroke="#888888" x1="66.8613780008147" x2="66.8613780008147" y1="81.50000000000001" y2="75.50000000000001"/>
+  <line stroke="#888888" x1="66.8613780008147" x2="76.8613780008147" y1="75.50000000000001" y2="75.50000000000001"/>
+  <line stroke="#888888" x1="76.8613780008147" x2="76.8613780008147" y1="75.50000000000001" y2="81.50000000000001"/>
+  <line stroke="#888888" x1="76.8613780008147" x2="66.8613780008147" y1="81.50000000000001" y2="81.50000000000001"/>
+  <line stroke="#888888" x1="16.222756001629364" x2="21.222756001629367" y1="81.0909090909091" y2="81.0909090909091"/>
+  <line stroke="#888888" x1="21.222756001629367" x2="21.222756001629367" y1="81.0909090909091" y2="92.18181818181819"/>
+  <line stroke="#888888" x1="21.222756001629367" x2="16.222756001629364" y1="92.18181818181819" y2="92.18181818181819"/>
+  <line stroke="#888888" x1="16.222756001629364" x2="21.222756001629367" y1="108.81818181818183" y2="108.81818181818183"/>
+  <line stroke="#888888" x1="21.222756001629367" x2="21.222756001629367" y1="108.81818181818183" y2="119.90909090909092"/>
+  <line stroke="#888888" x1="21.222756001629367" x2="16.222756001629364" y1="119.90909090909092" y2="119.90909090909092"/>
+  <line stroke="#888888" x1="75.86137800081468" x2="75.86137800081468" y1="62.50000000000001" y2="67.50000000000001"/>
+  <line stroke="#888888" x1="75.86137800081468" x2="67.86137800081468" y1="67.50000000000001" y2="67.50000000000001"/>
+  <line stroke="#888888" x1="67.86137800081468" x2="67.86137800081468" y1="67.50000000000001" y2="62.50000000000001"/>
+  <line stroke="#888888" x1="67.86137800081468" x2="67.86137800081468" y1="138.5" y2="133.5"/>
+  <line stroke="#888888" x1="67.86137800081468" x2="75.86137800081468" y1="133.5" y2="133.5"/>
+  <line stroke="#888888" x1="75.86137800081468" x2="75.86137800081468" y1="133.5" y2="138.5"/>
+  <line opacity="0.5" stroke="#0000ff" x1="543.3085560697231" x2="604.308556069723" y1="172.00000000000003" y2="172.00000000000003"/>
+  <line opacity="0.5" stroke="#0000ff" x1="604.308556069723" x2="604.308556069723" y1="172.00000000000003" y2="196.00000000000003"/>
+  <line opacity="0.5" stroke="#0000ff" x1="604.308556069723" x2="543.3085560697231" y1="196.00000000000003" y2="196.00000000000003"/>
+  <line opacity="0.5" stroke="#0000ff" x1="543.3085560697231" x2="543.3085560697231" y1="196.00000000000003" y2="172.00000000000003"/>
+  <line stroke="#000000" x1="543.3085560697231" x2="543.3085560697231" y1="165.00000000000003" y2="172.00000000000003"/>
+  <line stroke="#000000" x1="603.308556069723" x2="543.3085560697231" y1="165.00000000000003" y2="165.00000000000003"/>
+  <line stroke="#000000" x1="603.308556069723" x2="603.308556069723" y1="172.00000000000003" y2="165.00000000000003"/>
+  <line stroke="#000000" x1="611.308556069723" x2="604.308556069723" y1="172.00000000000003" y2="172.00000000000003"/>
+  <line stroke="#000000" x1="611.308556069723" x2="611.308556069723" y1="196.00000000000003" y2="172.00000000000003"/>
+  <line stroke="#000000" x1="604.308556069723" x2="611.308556069723" y1="196.00000000000003" y2="196.00000000000003"/>
+  <line opacity="0.5" stroke="#0000ff" x1="604.308556069723" x2="604.308556069723" y1="196.00000000000003" y2="257.00000000000006"/>
+  <line stroke="#000000" x1="544.3085560697231" x2="604.308556069723" y1="257.00000000000006" y2="257.00000000000006"/>
+  <line opacity="0.5" stroke="#0000ff" x1="544.3085560697231" x2="544.3085560697231" y1="196.00000000000003" y2="257.00000000000006"/>
+  <line stroke="#000000" x1="628.3085560697231" x2="604.308556069723" y1="196.00000000000003" y2="196.00000000000003"/>
+  <line opacity="0.5" stroke="#0000ff" x1="628.3085560697231" x2="628.3085560697231" y1="196.00000000000003" y2="257.00000000000006"/>
+  <line stroke="#000000" x1="604.308556069723" x2="628.3085560697231" y1="257.00000000000006" y2="257.00000000000006"/>
+  <line stroke="#000000" x1="688.3085560697231" x2="628.3085560697231" y1="196.00000000000003" y2="196.00000000000003"/>
+  <line stroke="#000000" x1="688.3085560697231" x2="688.3085560697231" y1="257.00000000000006" y2="196.00000000000003"/>
+  <line stroke="#000000" x1="628.3085560697231" x2="688.3085560697231" y1="257.00000000000006" y2="257.00000000000006"/>
+  <line stroke="#000000" x1="544.3085560697231" x2="520.3085560697231" y1="196.00000000000003" y2="196.00000000000003"/>
+  <line stroke="#000000" x1="520.3085560697231" x2="544.3085560697231" y1="257.00000000000006" y2="257.00000000000006"/>
+  <line opacity="0.5" stroke="#0000ff" x1="520.3085560697231" x2="520.3085560697231" y1="257.00000000000006" y2="196.00000000000003"/>
+  <line stroke="#000000" x1="510.308556069723" x2="520.3085560697231" y1="257.00000000000006" y2="257.00000000000006"/>
+  <line stroke="#000000" x1="510.308556069723" x2="510.308556069723" y1="196.00000000000003" y2="257.00000000000006"/>
+  <line stroke="#000000" x1="520.3085560697231" x2="510.308556069723" y1="196.00000000000003" y2="196.00000000000003"/>
+  <line stroke="#000000" x1="536.308556069723" x2="543.3085560697231" y1="196.00000000000003" y2="196.00000000000003"/>
+  <line stroke="#000000" x1="536.308556069723" x2="536.308556069723" y1="172.00000000000003" y2="196.00000000000003"/>
+  <line stroke="#000000" x1="543.3085560697231" x2="536.308556069723" y1="172.00000000000003" y2="172.00000000000003"/>
+  <line stroke="#888888" x1="592.3994651606322" x2="595.8994651606321" y1="166.75000000000003" y2="166.75000000000003"/>
+  <line stroke="#888888" x1="595.8994651606321" x2="592.3994651606322" y1="166.75000000000003" y2="170.25000000000003"/>
+  <line stroke="#888888" x1="592.3994651606322" x2="581.4903742515411" y1="170.25000000000003" y2="170.25000000000003"/>
+  <line stroke="#888888" x1="581.4903742515411" x2="577.9903742515413" y1="170.25000000000003" y2="166.75000000000003"/>
+  <line stroke="#888888" x1="577.9903742515413" x2="581.4903742515411" y1="166.75000000000003" y2="166.75000000000003"/>
+  <line stroke="#888888" x1="565.1267378879049" x2="568.6267378879048" y1="166.75000000000003" y2="166.75000000000003"/>
+  <line stroke="#888888" x1="568.6267378879048" x2="565.1267378879049" y1="166.75000000000003" y2="170.25000000000003"/>
+  <line stroke="#888888" x1="565.1267378879049" x2="554.2176469788138" y1="170.25000000000003" y2="170.25000000000003"/>
+  <line stroke="#888888" x1="554.2176469788138" x2="550.717646978814" y1="170.25000000000003" y2="166.75000000000003"/>
+  <line stroke="#888888" x1="550.717646978814" x2="554.2176469788138" y1="166.75000000000003" y2="166.75000000000003"/>
+  <line stroke="#888888" x1="609.5585560697231" x2="606.058556069723" y1="188.00000000000003" y2="188.00000000000003"/>
+  <line stroke="#888888" x1="606.058556069723" x2="606.058556069723" y1="188.00000000000003" y2="180.0"/>
+  <line stroke="#888888" x1="606.058556069723" x2="609.5585560697231" y1="180.0" y2="180.0"/>
+  <line stroke="#888888" x1="551.8085560697231" x2="551.8085560697231" y1="247.50000000000003" y2="229.50000000000003"/>
+  <line stroke="#888888" x1="551.8085560697231" x2="586.8085560697231" y1="229.50000000000003" y2="229.50000000000003"/>
+  <line stroke="#888888" x1="586.8085560697231" x2="586.8085560697231" y1="229.50000000000003" y2="247.50000000000003"/>
+  <line stroke="#888888" x1="586.8085560697231" x2="551.8085560697231" y1="247.50000000000003" y2="247.50000000000003"/>
+  <line stroke="#888888" x1="604.8085560697231" x2="604.8085560697231" y1="209.25" y2="206.25000000000003"/>
+  <line stroke="#888888" x1="604.8085560697231" x2="607.8085560697231" y1="206.25000000000003" y2="206.25000000000003"/>
+  <line stroke="#888888" x1="607.8085560697231" x2="607.8085560697231" y1="206.25000000000003" y2="209.25"/>
+  <line stroke="#888888" x1="607.8085560697231" x2="604.8085560697231" y1="209.25" y2="209.25"/>
+  <line stroke="#888888" x1="625.8085560697231" x2="625.8085560697231" y1="208.25000000000003" y2="207.25000000000003"/>
+  <line stroke="#888888" x1="625.8085560697231" x2="626.8085560697231" y1="207.25000000000003" y2="207.25000000000003"/>
+  <line stroke="#888888" x1="626.8085560697231" x2="626.8085560697231" y1="207.25000000000003" y2="208.25000000000003"/>
+  <line stroke="#888888" x1="626.8085560697231" x2="625.8085560697231" y1="208.25000000000003" y2="208.25000000000003"/>
+  <line stroke="#888888" x1="605.8085560697231" x2="605.8085560697231" y1="210.75000000000003" y2="209.75000000000003"/>
+  <line stroke="#888888" x1="605.8085560697231" x2="606.8085560697231" y1="209.75000000000003" y2="209.75000000000003"/>
+  <line stroke="#888888" x1="606.8085560697231" x2="606.8085560697231" y1="209.75000000000003" y2="210.75000000000003"/>
+  <line stroke="#888888" x1="606.8085560697231" x2="605.8085560697231" y1="210.75000000000003" y2="210.75000000000003"/>
+  <line stroke="#888888" x1="625.8085560697231" x2="625.8085560697231" y1="210.75000000000003" y2="209.75000000000003"/>
+  <line stroke="#888888" x1="625.8085560697231" x2="626.8085560697231" y1="209.75000000000003" y2="209.75000000000003"/>
+  <line stroke="#888888" x1="626.8085560697231" x2="626.8085560697231" y1="209.75000000000003" y2="210.75000000000003"/>
+  <line stroke="#888888" x1="626.8085560697231" x2="625.8085560697231" y1="210.75000000000003" y2="210.75000000000003"/>
+  <line stroke="#888888" x1="605.8085560697231" x2="605.8085560697231" y1="213.25000000000003" y2="212.25000000000003"/>
+  <line stroke="#888888" x1="605.8085560697231" x2="606.8085560697231" y1="212.25000000000003" y2="212.25000000000003"/>
+  <line stroke="#888888" x1="606.8085560697231" x2="606.8085560697231" y1="212.25000000000003" y2="213.25000000000003"/>
+  <line stroke="#888888" x1="606.8085560697231" x2="605.8085560697231" y1="213.25000000000003" y2="213.25000000000003"/>
+  <line stroke="#888888" x1="625.8085560697231" x2="625.8085560697231" y1="213.25000000000003" y2="212.25000000000003"/>
+  <line stroke="#888888" x1="625.8085560697231" x2="626.8085560697231" y1="212.25000000000003" y2="212.25000000000003"/>
+  <line stroke="#888888" x1="626.8085560697231" x2="626.8085560697231" y1="212.25000000000003" y2="213.25000000000003"/>
+  <line stroke="#888888" x1="626.8085560697231" x2="625.8085560697231" y1="213.25000000000003" y2="213.25000000000003"/>
+  <line stroke="#888888" x1="605.8085560697231" x2="605.8085560697231" y1="215.75000000000003" y2="214.75000000000003"/>
+  <line stroke="#888888" x1="605.8085560697231" x2="606.8085560697231" y1="214.75000000000003" y2="214.75000000000003"/>
+  <line stroke="#888888" x1="606.8085560697231" x2="606.8085560697231" y1="214.75000000000003" y2="215.75000000000003"/>
+  <line stroke="#888888" x1="606.8085560697231" x2="605.8085560697231" y1="215.75000000000003" y2="215.75000000000003"/>
+  <line stroke="#888888" x1="625.8085560697231" x2="625.8085560697231" y1="215.75000000000003" y2="214.75000000000003"/>
+  <line stroke="#888888" x1="625.8085560697231" x2="626.8085560697231" y1="214.75000000000003" y2="214.75000000000003"/>
+  <line stroke="#888888" x1="626.8085560697231" x2="626.8085560697231" y1="214.75000000000003" y2="215.75000000000003"/>
+  <line stroke="#888888" x1="626.8085560697231" x2="625.8085560697231" y1="215.75000000000003" y2="215.75000000000003"/>
+  <line stroke="#888888" x1="605.8085560697231" x2="605.8085560697231" y1="218.25000000000003" y2="217.25000000000003"/>
+  <line stroke="#888888" x1="605.8085560697231" x2="606.8085560697231" y1="217.25000000000003" y2="217.25000000000003"/>
+  <line stroke="#888888" x1="606.8085560697231" x2="606.8085560697231" y1="217.25000000000003" y2="218.25000000000003"/>
+  <line stroke="#888888" x1="606.8085560697231" x2="605.8085560697231" y1="218.25000000000003" y2="218.25000000000003"/>
+  <line stroke="#888888" x1="625.8085560697231" x2="625.8085560697231" y1="218.25000000000003" y2="217.25000000000003"/>
+  <line stroke="#888888" x1="625.8085560697231" x2="626.8085560697231" y1="217.25000000000003" y2="217.25000000000003"/>
+  <line stroke="#888888" x1="626.8085560697231" x2="626.8085560697231" y1="217.25000000000003" y2="218.25000000000003"/>
+  <line stroke="#888888" x1="626.8085560697231" x2="625.8085560697231" y1="218.25000000000003" y2="218.25000000000003"/>
+  <line stroke="#888888" x1="605.8085560697231" x2="605.8085560697231" y1="220.75" y2="219.75000000000003"/>
+  <line stroke="#888888" x1="605.8085560697231" x2="606.8085560697231" y1="219.75000000000003" y2="219.75000000000003"/>
+  <line stroke="#888888" x1="606.8085560697231" x2="606.8085560697231" y1="219.75000000000003" y2="220.75"/>
+  <line stroke="#888888" x1="606.8085560697231" x2="605.8085560697231" y1="220.75" y2="220.75"/>
+  <line stroke="#888888" x1="625.8085560697231" x2="625.8085560697231" y1="220.75" y2="219.75000000000003"/>
+  <line stroke="#888888" x1="625.8085560697231" x2="626.8085560697231" y1="219.75000000000003" y2="219.75000000000003"/>
+  <line stroke="#888888" x1="626.8085560697231" x2="626.8085560697231" y1="219.75000000000003" y2="220.75"/>
+  <line stroke="#888888" x1="626.8085560697231" x2="625.8085560697231" y1="220.75" y2="220.75"/>
+  <line stroke="#888888" x1="605.8085560697231" x2="605.8085560697231" y1="223.25000000000003" y2="222.25000000000003"/>
+  <line stroke="#888888" x1="605.8085560697231" x2="606.8085560697231" y1="222.25000000000003" y2="222.25000000000003"/>
+  <line stroke="#888888" x1="606.8085560697231" x2="606.8085560697231" y1="222.25000000000003" y2="223.25000000000003"/>
+  <line stroke="#888888" x1="606.8085560697231" x2="605.8085560697231" y1="223.25000000000003" y2="223.25000000000003"/>
+  <line stroke="#888888" x1="625.8085560697231" x2="625.8085560697231" y1="223.25000000000003" y2="222.25000000000003"/>
+  <line stroke="#888888" x1="625.8085560697231" x2="626.8085560697231" y1="222.25000000000003" y2="222.25000000000003"/>
+  <line stroke="#888888" x1="626.8085560697231" x2="626.8085560697231" y1="222.25000000000003" y2="223.25000000000003"/>
+  <line stroke="#888888" x1="626.8085560697231" x2="625.8085560697231" y1="223.25000000000003" y2="223.25000000000003"/>
+  <line stroke="#888888" x1="605.8085560697231" x2="605.8085560697231" y1="225.75000000000003" y2="224.75000000000003"/>
+  <line stroke="#888888" x1="605.8085560697231" x2="606.8085560697231" y1="224.75000000000003" y2="224.75000000000003"/>
+  <line stroke="#888888" x1="606.8085560697231" x2="606.8085560697231" y1="224.75000000000003" y2="225.75000000000003"/>
+  <line stroke="#888888" x1="606.8085560697231" x2="605.8085560697231" y1="225.75000000000003" y2="225.75000000000003"/>
+  <line stroke="#888888" x1="625.8085560697231" x2="625.8085560697231" y1="225.75000000000003" y2="224.75000000000003"/>
+  <line stroke="#888888" x1="625.8085560697231" x2="626.8085560697231" y1="224.75000000000003" y2="224.75000000000003"/>
+  <line stroke="#888888" x1="626.8085560697231" x2="626.8085560697231" y1="224.75000000000003" y2="225.75000000000003"/>
+  <line stroke="#888888" x1="626.8085560697231" x2="625.8085560697231" y1="225.75000000000003" y2="225.75000000000003"/>
+  <line stroke="#888888" x1="605.8085560697231" x2="605.8085560697231" y1="228.25000000000003" y2="227.25000000000003"/>
+  <line stroke="#888888" x1="605.8085560697231" x2="606.8085560697231" y1="227.25000000000003" y2="227.25000000000003"/>
+  <line stroke="#888888" x1="606.8085560697231" x2="606.8085560697231" y1="227.25000000000003" y2="228.25000000000003"/>
+  <line stroke="#888888" x1="606.8085560697231" x2="605.8085560697231" y1="228.25000000000003" y2="228.25000000000003"/>
+  <line stroke="#888888" x1="625.8085560697231" x2="625.8085560697231" y1="228.25000000000003" y2="227.25000000000003"/>
+  <line stroke="#888888" x1="625.8085560697231" x2="626.8085560697231" y1="227.25000000000003" y2="227.25000000000003"/>
+  <line stroke="#888888" x1="626.8085560697231" x2="626.8085560697231" y1="227.25000000000003" y2="228.25000000000003"/>
+  <line stroke="#888888" x1="626.8085560697231" x2="625.8085560697231" y1="228.25000000000003" y2="228.25000000000003"/>
+  <line stroke="#888888" x1="605.8085560697231" x2="605.8085560697231" y1="230.75000000000003" y2="229.75"/>
+  <line stroke="#888888" x1="605.8085560697231" x2="606.8085560697231" y1="229.75" y2="229.75"/>
+  <line stroke="#888888" x1="606.8085560697231" x2="606.8085560697231" y1="229.75" y2="230.75000000000003"/>
+  <line stroke="#888888" x1="606.8085560697231" x2="605.8085560697231" y1="230.75000000000003" y2="230.75000000000003"/>
+  <line stroke="#888888" x1="625.8085560697231" x2="625.8085560697231" y1="230.75000000000003" y2="229.75"/>
+  <line stroke="#888888" x1="625.8085560697231" x2="626.8085560697231" y1="229.75" y2="229.75"/>
+  <line stroke="#888888" x1="626.8085560697231" x2="626.8085560697231" y1="229.75" y2="230.75000000000003"/>
+  <line stroke="#888888" x1="626.8085560697231" x2="625.8085560697231" y1="230.75000000000003" y2="230.75000000000003"/>
+  <line stroke="#888888" x1="605.8085560697231" x2="605.8085560697231" y1="233.25000000000003" y2="232.25000000000003"/>
+  <line stroke="#888888" x1="605.8085560697231" x2="606.8085560697231" y1="232.25000000000003" y2="232.25000000000003"/>
+  <line stroke="#888888" x1="606.8085560697231" x2="606.8085560697231" y1="232.25000000000003" y2="233.25000000000003"/>
+  <line stroke="#888888" x1="606.8085560697231" x2="605.8085560697231" y1="233.25000000000003" y2="233.25000000000003"/>
+  <line stroke="#888888" x1="625.8085560697231" x2="625.8085560697231" y1="233.25000000000003" y2="232.25000000000003"/>
+  <line stroke="#888888" x1="625.8085560697231" x2="626.8085560697231" y1="232.25000000000003" y2="232.25000000000003"/>
+  <line stroke="#888888" x1="626.8085560697231" x2="626.8085560697231" y1="232.25000000000003" y2="233.25000000000003"/>
+  <line stroke="#888888" x1="626.8085560697231" x2="625.8085560697231" y1="233.25000000000003" y2="233.25000000000003"/>
+  <line stroke="#888888" x1="605.8085560697231" x2="605.8085560697231" y1="235.75000000000003" y2="234.75000000000003"/>
+  <line stroke="#888888" x1="605.8085560697231" x2="606.8085560697231" y1="234.75000000000003" y2="234.75000000000003"/>
+  <line stroke="#888888" x1="606.8085560697231" x2="606.8085560697231" y1="234.75000000000003" y2="235.75000000000003"/>
+  <line stroke="#888888" x1="606.8085560697231" x2="605.8085560697231" y1="235.75000000000003" y2="235.75000000000003"/>
+  <line stroke="#888888" x1="625.8085560697231" x2="625.8085560697231" y1="235.75000000000003" y2="234.75000000000003"/>
+  <line stroke="#888888" x1="625.8085560697231" x2="626.8085560697231" y1="234.75000000000003" y2="234.75000000000003"/>
+  <line stroke="#888888" x1="626.8085560697231" x2="626.8085560697231" y1="234.75000000000003" y2="235.75000000000003"/>
+  <line stroke="#888888" x1="626.8085560697231" x2="625.8085560697231" y1="235.75000000000003" y2="235.75000000000003"/>
+  <line stroke="#888888" x1="605.8085560697231" x2="605.8085560697231" y1="238.25000000000003" y2="237.25000000000003"/>
+  <line stroke="#888888" x1="605.8085560697231" x2="606.8085560697231" y1="237.25000000000003" y2="237.25000000000003"/>
+  <line stroke="#888888" x1="606.8085560697231" x2="606.8085560697231" y1="237.25000000000003" y2="238.25000000000003"/>
+  <line stroke="#888888" x1="606.8085560697231" x2="605.8085560697231" y1="238.25000000000003" y2="238.25000000000003"/>
+  <line stroke="#888888" x1="625.8085560697231" x2="625.8085560697231" y1="238.25000000000003" y2="237.25000000000003"/>
+  <line stroke="#888888" x1="625.8085560697231" x2="626.8085560697231" y1="237.25000000000003" y2="237.25000000000003"/>
+  <line stroke="#888888" x1="626.8085560697231" x2="626.8085560697231" y1="237.25000000000003" y2="238.25000000000003"/>
+  <line stroke="#888888" x1="626.8085560697231" x2="625.8085560697231" y1="238.25000000000003" y2="238.25000000000003"/>
+  <line stroke="#888888" x1="605.8085560697231" x2="605.8085560697231" y1="240.75000000000003" y2="239.75000000000003"/>
+  <line stroke="#888888" x1="605.8085560697231" x2="606.8085560697231" y1="239.75000000000003" y2="239.75000000000003"/>
+  <line stroke="#888888" x1="606.8085560697231" x2="606.8085560697231" y1="239.75000000000003" y2="240.75000000000003"/>
+  <line stroke="#888888" x1="606.8085560697231" x2="605.8085560697231" y1="240.75000000000003" y2="240.75000000000003"/>
+  <line stroke="#888888" x1="625.8085560697231" x2="625.8085560697231" y1="240.75000000000003" y2="239.75000000000003"/>
+  <line stroke="#888888" x1="625.8085560697231" x2="626.8085560697231" y1="239.75000000000003" y2="239.75000000000003"/>
+  <line stroke="#888888" x1="626.8085560697231" x2="626.8085560697231" y1="239.75000000000003" y2="240.75000000000003"/>
+  <line stroke="#888888" x1="626.8085560697231" x2="625.8085560697231" y1="240.75000000000003" y2="240.75000000000003"/>
+  <line stroke="#888888" x1="605.8085560697231" x2="605.8085560697231" y1="243.25000000000003" y2="242.25000000000003"/>
+  <line stroke="#888888" x1="605.8085560697231" x2="606.8085560697231" y1="242.25000000000003" y2="242.25000000000003"/>
+  <line stroke="#888888" x1="606.8085560697231" x2="606.8085560697231" y1="242.25000000000003" y2="243.25000000000003"/>
+  <line stroke="#888888" x1="606.8085560697231" x2="605.8085560697231" y1="243.25000000000003" y2="243.25000000000003"/>
+  <line stroke="#888888" x1="625.8085560697231" x2="625.8085560697231" y1="243.25000000000003" y2="242.25000000000003"/>
+  <line stroke="#888888" x1="625.8085560697231" x2="626.8085560697231" y1="242.25000000000003" y2="242.25000000000003"/>
+  <line stroke="#888888" x1="626.8085560697231" x2="626.8085560697231" y1="242.25000000000003" y2="243.25000000000003"/>
+  <line stroke="#888888" x1="626.8085560697231" x2="625.8085560697231" y1="243.25000000000003" y2="243.25000000000003"/>
+  <line stroke="#888888" x1="605.8085560697231" x2="605.8085560697231" y1="245.75000000000003" y2="244.75000000000003"/>
+  <line stroke="#888888" x1="605.8085560697231" x2="606.8085560697231" y1="244.75000000000003" y2="244.75000000000003"/>
+  <line stroke="#888888" x1="606.8085560697231" x2="606.8085560697231" y1="244.75000000000003" y2="245.75000000000003"/>
+  <line stroke="#888888" x1="606.8085560697231" x2="605.8085560697231" y1="245.75000000000003" y2="245.75000000000003"/>
+  <line stroke="#888888" x1="624.8085560697231" x2="624.8085560697231" y1="246.75000000000003" y2="243.75000000000003"/>
+  <line stroke="#888888" x1="624.8085560697231" x2="627.8085560697231" y1="243.75000000000003" y2="243.75000000000003"/>
+  <line stroke="#888888" x1="627.8085560697231" x2="627.8085560697231" y1="243.75000000000003" y2="246.75000000000003"/>
+  <line stroke="#888888" x1="627.8085560697231" x2="624.8085560697231" y1="246.75000000000003" y2="246.75000000000003"/>
+  <line stroke="#888888" x1="620.5585560697231" x2="612.0585560697231" y1="203.75000000000003" y2="203.75000000000003"/>
+  <line stroke="#888888" x1="612.0585560697231" x2="612.0585560697231" y1="203.75000000000003" y2="203.25000000000003"/>
+  <line stroke="#888888" x1="612.0585560697231" x2="620.5585560697231" y1="203.25000000000003" y2="203.25000000000003"/>
+  <line stroke="#888888" x1="620.5585560697231" x2="620.5585560697231" y1="203.25000000000003" y2="203.75000000000003"/>
+  <line stroke="#888888" x1="612.0585560697231" x2="620.5585560697231" y1="251.50000000000003" y2="251.50000000000003"/>
+  <line stroke="#888888" x1="620.5585560697231" x2="620.5585560697231" y1="251.50000000000003" y2="252.00000000000003"/>
+  <line stroke="#888888" x1="620.5585560697231" x2="612.0585560697231" y1="252.00000000000003" y2="252.00000000000003"/>
+  <line stroke="#888888" x1="612.0585560697231" x2="612.0585560697231" y1="252.00000000000003" y2="251.50000000000003"/>
+  <line stroke="#888888" x1="643.3085560697231" x2="643.3085560697231" y1="247.00000000000003" y2="234.00000000000003"/>
+  <line stroke="#888888" x1="643.3085560697231" x2="673.3085560697231" y1="234.00000000000003" y2="234.00000000000003"/>
+  <line stroke="#888888" x1="673.3085560697231" x2="673.3085560697231" y1="234.00000000000003" y2="247.00000000000003"/>
+  <line stroke="#888888" x1="673.3085560697231" x2="643.3085560697231" y1="247.00000000000003" y2="247.00000000000003"/>
+  <line stroke="#888888" x1="650.3767378879048" x2="638.967646978814" y1="201.50000000000003" y2="201.50000000000003"/>
+  <line stroke="#888888" x1="638.967646978814" x2="638.967646978814" y1="201.50000000000003" y2="201.00000000000003"/>
+  <line stroke="#888888" x1="638.967646978814" x2="650.3767378879048" y1="201.00000000000003" y2="201.00000000000003"/>
+  <line stroke="#888888" x1="650.3767378879048" x2="650.3767378879048" y1="201.00000000000003" y2="201.50000000000003"/>
+  <line stroke="#888888" x1="677.6494651606322" x2="666.2403742515412" y1="201.50000000000003" y2="201.50000000000003"/>
+  <line stroke="#888888" x1="666.2403742515412" x2="666.2403742515412" y1="201.50000000000003" y2="201.00000000000003"/>
+  <line stroke="#888888" x1="666.2403742515412" x2="677.6494651606322" y1="201.00000000000003" y2="201.00000000000003"/>
+  <line stroke="#888888" x1="677.6494651606322" x2="677.6494651606322" y1="201.00000000000003" y2="201.50000000000003"/>
+  <line stroke="#888888" x1="680.558556069723" x2="680.558556069723" y1="218.43181818181822" y2="206.84090909090912"/>
+  <line stroke="#888888" x1="680.558556069723" x2="681.058556069723" y1="206.84090909090912" y2="206.84090909090912"/>
+  <line stroke="#888888" x1="681.058556069723" x2="681.058556069723" y1="206.84090909090912" y2="218.43181818181822"/>
+  <line stroke="#888888" x1="681.058556069723" x2="680.558556069723" y1="218.43181818181822" y2="218.43181818181822"/>
+  <line stroke="#888888" x1="680.558556069723" x2="680.558556069723" y1="246.15909090909093" y2="234.5681818181818"/>
+  <line stroke="#888888" x1="680.558556069723" x2="681.058556069723" y1="234.5681818181818" y2="234.5681818181818"/>
+  <line stroke="#888888" x1="681.058556069723" x2="681.058556069723" y1="234.5681818181818" y2="246.15909090909093"/>
+  <line stroke="#888888" x1="681.058556069723" x2="680.558556069723" y1="246.15909090909093" y2="246.15909090909093"/>
+  <line stroke="#888888" x1="520.8085560697231" x2="520.8085560697231" y1="209.25" y2="206.25000000000003"/>
+  <line stroke="#888888" x1="520.8085560697231" x2="523.8085560697231" y1="206.25000000000003" y2="206.25000000000003"/>
+  <line stroke="#888888" x1="523.8085560697231" x2="523.8085560697231" y1="206.25000000000003" y2="209.25"/>
+  <line stroke="#888888" x1="523.8085560697231" x2="520.8085560697231" y1="209.25" y2="209.25"/>
+  <line stroke="#888888" x1="541.8085560697231" x2="541.8085560697231" y1="208.25000000000003" y2="207.25000000000003"/>
+  <line stroke="#888888" x1="541.8085560697231" x2="542.8085560697231" y1="207.25000000000003" y2="207.25000000000003"/>
+  <line stroke="#888888" x1="542.8085560697231" x2="542.8085560697231" y1="207.25000000000003" y2="208.25000000000003"/>
+  <line stroke="#888888" x1="542.8085560697231" x2="541.8085560697231" y1="208.25000000000003" y2="208.25000000000003"/>
+  <line stroke="#888888" x1="521.808556069723" x2="521.808556069723" y1="210.75000000000003" y2="209.75000000000003"/>
+  <line stroke="#888888" x1="521.808556069723" x2="522.808556069723" y1="209.75000000000003" y2="209.75000000000003"/>
+  <line stroke="#888888" x1="522.808556069723" x2="522.808556069723" y1="209.75000000000003" y2="210.75000000000003"/>
+  <line stroke="#888888" x1="522.808556069723" x2="521.808556069723" y1="210.75000000000003" y2="210.75000000000003"/>
+  <line stroke="#888888" x1="541.8085560697231" x2="541.8085560697231" y1="210.75000000000003" y2="209.75000000000003"/>
+  <line stroke="#888888" x1="541.8085560697231" x2="542.8085560697231" y1="209.75000000000003" y2="209.75000000000003"/>
+  <line stroke="#888888" x1="542.8085560697231" x2="542.8085560697231" y1="209.75000000000003" y2="210.75000000000003"/>
+  <line stroke="#888888" x1="542.8085560697231" x2="541.8085560697231" y1="210.75000000000003" y2="210.75000000000003"/>
+  <line stroke="#888888" x1="521.808556069723" x2="521.808556069723" y1="213.25000000000003" y2="212.25000000000003"/>
+  <line stroke="#888888" x1="521.808556069723" x2="522.808556069723" y1="212.25000000000003" y2="212.25000000000003"/>
+  <line stroke="#888888" x1="522.808556069723" x2="522.808556069723" y1="212.25000000000003" y2="213.25000000000003"/>
+  <line stroke="#888888" x1="522.808556069723" x2="521.808556069723" y1="213.25000000000003" y2="213.25000000000003"/>
+  <line stroke="#888888" x1="541.8085560697231" x2="541.8085560697231" y1="213.25000000000003" y2="212.25000000000003"/>
+  <line stroke="#888888" x1="541.8085560697231" x2="542.8085560697231" y1="212.25000000000003" y2="212.25000000000003"/>
+  <line stroke="#888888" x1="542.8085560697231" x2="542.8085560697231" y1="212.25000000000003" y2="213.25000000000003"/>
+  <line stroke="#888888" x1="542.8085560697231" x2="541.8085560697231" y1="213.25000000000003" y2="213.25000000000003"/>
+  <line stroke="#888888" x1="521.808556069723" x2="521.808556069723" y1="215.75000000000003" y2="214.75000000000003"/>
+  <line stroke="#888888" x1="521.808556069723" x2="522.808556069723" y1="214.75000000000003" y2="214.75000000000003"/>
+  <line stroke="#888888" x1="522.808556069723" x2="522.808556069723" y1="214.75000000000003" y2="215.75000000000003"/>
+  <line stroke="#888888" x1="522.808556069723" x2="521.808556069723" y1="215.75000000000003" y2="215.75000000000003"/>
+  <line stroke="#888888" x1="541.8085560697231" x2="541.8085560697231" y1="215.75000000000003" y2="214.75000000000003"/>
+  <line stroke="#888888" x1="541.8085560697231" x2="542.8085560697231" y1="214.75000000000003" y2="214.75000000000003"/>
+  <line stroke="#888888" x1="542.8085560697231" x2="542.8085560697231" y1="214.75000000000003" y2="215.75000000000003"/>
+  <line stroke="#888888" x1="542.8085560697231" x2="541.8085560697231" y1="215.75000000000003" y2="215.75000000000003"/>
+  <line stroke="#888888" x1="521.808556069723" x2="521.808556069723" y1="218.25000000000003" y2="217.25000000000003"/>
+  <line stroke="#888888" x1="521.808556069723" x2="522.808556069723" y1="217.25000000000003" y2="217.25000000000003"/>
+  <line stroke="#888888" x1="522.808556069723" x2="522.808556069723" y1="217.25000000000003" y2="218.25000000000003"/>
+  <line stroke="#888888" x1="522.808556069723" x2="521.808556069723" y1="218.25000000000003" y2="218.25000000000003"/>
+  <line stroke="#888888" x1="541.8085560697231" x2="541.8085560697231" y1="218.25000000000003" y2="217.25000000000003"/>
+  <line stroke="#888888" x1="541.8085560697231" x2="542.8085560697231" y1="217.25000000000003" y2="217.25000000000003"/>
+  <line stroke="#888888" x1="542.8085560697231" x2="542.8085560697231" y1="217.25000000000003" y2="218.25000000000003"/>
+  <line stroke="#888888" x1="542.8085560697231" x2="541.8085560697231" y1="218.25000000000003" y2="218.25000000000003"/>
+  <line stroke="#888888" x1="521.808556069723" x2="521.808556069723" y1="220.75" y2="219.75000000000003"/>
+  <line stroke="#888888" x1="521.808556069723" x2="522.808556069723" y1="219.75000000000003" y2="219.75000000000003"/>
+  <line stroke="#888888" x1="522.808556069723" x2="522.808556069723" y1="219.75000000000003" y2="220.75"/>
+  <line stroke="#888888" x1="522.808556069723" x2="521.808556069723" y1="220.75" y2="220.75"/>
+  <line stroke="#888888" x1="541.8085560697231" x2="541.8085560697231" y1="220.75" y2="219.75000000000003"/>
+  <line stroke="#888888" x1="541.8085560697231" x2="542.8085560697231" y1="219.75000000000003" y2="219.75000000000003"/>
+  <line stroke="#888888" x1="542.8085560697231" x2="542.8085560697231" y1="219.75000000000003" y2="220.75"/>
+  <line stroke="#888888" x1="542.8085560697231" x2="541.8085560697231" y1="220.75" y2="220.75"/>
+  <line stroke="#888888" x1="521.808556069723" x2="521.808556069723" y1="223.25000000000003" y2="222.25000000000003"/>
+  <line stroke="#888888" x1="521.808556069723" x2="522.808556069723" y1="222.25000000000003" y2="222.25000000000003"/>
+  <line stroke="#888888" x1="522.808556069723" x2="522.808556069723" y1="222.25000000000003" y2="223.25000000000003"/>
+  <line stroke="#888888" x1="522.808556069723" x2="521.808556069723" y1="223.25000000000003" y2="223.25000000000003"/>
+  <line stroke="#888888" x1="541.8085560697231" x2="541.8085560697231" y1="223.25000000000003" y2="222.25000000000003"/>
+  <line stroke="#888888" x1="541.8085560697231" x2="542.8085560697231" y1="222.25000000000003" y2="222.25000000000003"/>
+  <line stroke="#888888" x1="542.8085560697231" x2="542.8085560697231" y1="222.25000000000003" y2="223.25000000000003"/>
+  <line stroke="#888888" x1="542.8085560697231" x2="541.8085560697231" y1="223.25000000000003" y2="223.25000000000003"/>
+  <line stroke="#888888" x1="521.808556069723" x2="521.808556069723" y1="225.75000000000003" y2="224.75000000000003"/>
+  <line stroke="#888888" x1="521.808556069723" x2="522.808556069723" y1="224.75000000000003" y2="224.75000000000003"/>
+  <line stroke="#888888" x1="522.808556069723" x2="522.808556069723" y1="224.75000000000003" y2="225.75000000000003"/>
+  <line stroke="#888888" x1="522.808556069723" x2="521.808556069723" y1="225.75000000000003" y2="225.75000000000003"/>
+  <line stroke="#888888" x1="541.8085560697231" x2="541.8085560697231" y1="225.75000000000003" y2="224.75000000000003"/>
+  <line stroke="#888888" x1="541.8085560697231" x2="542.8085560697231" y1="224.75000000000003" y2="224.75000000000003"/>
+  <line stroke="#888888" x1="542.8085560697231" x2="542.8085560697231" y1="224.75000000000003" y2="225.75000000000003"/>
+  <line stroke="#888888" x1="542.8085560697231" x2="541.8085560697231" y1="225.75000000000003" y2="225.75000000000003"/>
+  <line stroke="#888888" x1="521.808556069723" x2="521.808556069723" y1="228.25000000000003" y2="227.25000000000003"/>
+  <line stroke="#888888" x1="521.808556069723" x2="522.808556069723" y1="227.25000000000003" y2="227.25000000000003"/>
+  <line stroke="#888888" x1="522.808556069723" x2="522.808556069723" y1="227.25000000000003" y2="228.25000000000003"/>
+  <line stroke="#888888" x1="522.808556069723" x2="521.808556069723" y1="228.25000000000003" y2="228.25000000000003"/>
+  <line stroke="#888888" x1="541.8085560697231" x2="541.8085560697231" y1="228.25000000000003" y2="227.25000000000003"/>
+  <line stroke="#888888" x1="541.8085560697231" x2="542.8085560697231" y1="227.25000000000003" y2="227.25000000000003"/>
+  <line stroke="#888888" x1="542.8085560697231" x2="542.8085560697231" y1="227.25000000000003" y2="228.25000000000003"/>
+  <line stroke="#888888" x1="542.8085560697231" x2="541.8085560697231" y1="228.25000000000003" y2="228.25000000000003"/>
+  <line stroke="#888888" x1="521.808556069723" x2="521.808556069723" y1="230.75000000000003" y2="229.75"/>
+  <line stroke="#888888" x1="521.808556069723" x2="522.808556069723" y1="229.75" y2="229.75"/>
+  <line stroke="#888888" x1="522.808556069723" x2="522.808556069723" y1="229.75" y2="230.75000000000003"/>
+  <line stroke="#888888" x1="522.808556069723" x2="521.808556069723" y1="230.75000000000003" y2="230.75000000000003"/>
+  <line stroke="#888888" x1="541.8085560697231" x2="541.8085560697231" y1="230.75000000000003" y2="229.75"/>
+  <line stroke="#888888" x1="541.8085560697231" x2="542.8085560697231" y1="229.75" y2="229.75"/>
+  <line stroke="#888888" x1="542.8085560697231" x2="542.8085560697231" y1="229.75" y2="230.75000000000003"/>
+  <line stroke="#888888" x1="542.8085560697231" x2="541.8085560697231" y1="230.75000000000003" y2="230.75000000000003"/>
+  <line stroke="#888888" x1="521.808556069723" x2="521.808556069723" y1="233.25000000000003" y2="232.25000000000003"/>
+  <line stroke="#888888" x1="521.808556069723" x2="522.808556069723" y1="232.25000000000003" y2="232.25000000000003"/>
+  <line stroke="#888888" x1="522.808556069723" x2="522.808556069723" y1="232.25000000000003" y2="233.25000000000003"/>
+  <line stroke="#888888" x1="522.808556069723" x2="521.808556069723" y1="233.25000000000003" y2="233.25000000000003"/>
+  <line stroke="#888888" x1="541.8085560697231" x2="541.8085560697231" y1="233.25000000000003" y2="232.25000000000003"/>
+  <line stroke="#888888" x1="541.8085560697231" x2="542.8085560697231" y1="232.25000000000003" y2="232.25000000000003"/>
+  <line stroke="#888888" x1="542.8085560697231" x2="542.8085560697231" y1="232.25000000000003" y2="233.25000000000003"/>
+  <line stroke="#888888" x1="542.8085560697231" x2="541.8085560697231" y1="233.25000000000003" y2="233.25000000000003"/>
+  <line stroke="#888888" x1="521.808556069723" x2="521.808556069723" y1="235.75000000000003" y2="234.75000000000003"/>
+  <line stroke="#888888" x1="521.808556069723" x2="522.808556069723" y1="234.75000000000003" y2="234.75000000000003"/>
+  <line stroke="#888888" x1="522.808556069723" x2="522.808556069723" y1="234.75000000000003" y2="235.75000000000003"/>
+  <line stroke="#888888" x1="522.808556069723" x2="521.808556069723" y1="235.75000000000003" y2="235.75000000000003"/>
+  <line stroke="#888888" x1="541.8085560697231" x2="541.8085560697231" y1="235.75000000000003" y2="234.75000000000003"/>
+  <line stroke="#888888" x1="541.8085560697231" x2="542.8085560697231" y1="234.75000000000003" y2="234.75000000000003"/>
+  <line stroke="#888888" x1="542.8085560697231" x2="542.8085560697231" y1="234.75000000000003" y2="235.75000000000003"/>
+  <line stroke="#888888" x1="542.8085560697231" x2="541.8085560697231" y1="235.75000000000003" y2="235.75000000000003"/>
+  <line stroke="#888888" x1="521.808556069723" x2="521.808556069723" y1="238.25000000000003" y2="237.25000000000003"/>
+  <line stroke="#888888" x1="521.808556069723" x2="522.808556069723" y1="237.25000000000003" y2="237.25000000000003"/>
+  <line stroke="#888888" x1="522.808556069723" x2="522.808556069723" y1="237.25000000000003" y2="238.25000000000003"/>
+  <line stroke="#888888" x1="522.808556069723" x2="521.808556069723" y1="238.25000000000003" y2="238.25000000000003"/>
+  <line stroke="#888888" x1="541.8085560697231" x2="541.8085560697231" y1="238.25000000000003" y2="237.25000000000003"/>
+  <line stroke="#888888" x1="541.8085560697231" x2="542.8085560697231" y1="237.25000000000003" y2="237.25000000000003"/>
+  <line stroke="#888888" x1="542.8085560697231" x2="542.8085560697231" y1="237.25000000000003" y2="238.25000000000003"/>
+  <line stroke="#888888" x1="542.8085560697231" x2="541.8085560697231" y1="238.25000000000003" y2="238.25000000000003"/>
+  <line stroke="#888888" x1="521.808556069723" x2="521.808556069723" y1="240.75000000000003" y2="239.75000000000003"/>
+  <line stroke="#888888" x1="521.808556069723" x2="522.808556069723" y1="239.75000000000003" y2="239.75000000000003"/>
+  <line stroke="#888888" x1="522.808556069723" x2="522.808556069723" y1="239.75000000000003" y2="240.75000000000003"/>
+  <line stroke="#888888" x1="522.808556069723" x2="521.808556069723" y1="240.75000000000003" y2="240.75000000000003"/>
+  <line stroke="#888888" x1="541.8085560697231" x2="541.8085560697231" y1="240.75000000000003" y2="239.75000000000003"/>
+  <line stroke="#888888" x1="541.8085560697231" x2="542.8085560697231" y1="239.75000000000003" y2="239.75000000000003"/>
+  <line stroke="#888888" x1="542.8085560697231" x2="542.8085560697231" y1="239.75000000000003" y2="240.75000000000003"/>
+  <line stroke="#888888" x1="542.8085560697231" x2="541.8085560697231" y1="240.75000000000003" y2="240.75000000000003"/>
+  <line stroke="#888888" x1="521.808556069723" x2="521.808556069723" y1="243.25000000000003" y2="242.25000000000003"/>
+  <line stroke="#888888" x1="521.808556069723" x2="522.808556069723" y1="242.25000000000003" y2="242.25000000000003"/>
+  <line stroke="#888888" x1="522.808556069723" x2="522.808556069723" y1="242.25000000000003" y2="243.25000000000003"/>
+  <line stroke="#888888" x1="522.808556069723" x2="521.808556069723" y1="243.25000000000003" y2="243.25000000000003"/>
+  <line stroke="#888888" x1="541.8085560697231" x2="541.8085560697231" y1="243.25000000000003" y2="242.25000000000003"/>
+  <line stroke="#888888" x1="541.8085560697231" x2="542.8085560697231" y1="242.25000000000003" y2="242.25000000000003"/>
+  <line stroke="#888888" x1="542.8085560697231" x2="542.8085560697231" y1="242.25000000000003" y2="243.25000000000003"/>
+  <line stroke="#888888" x1="542.8085560697231" x2="541.8085560697231" y1="243.25000000000003" y2="243.25000000000003"/>
+  <line stroke="#888888" x1="521.808556069723" x2="521.808556069723" y1="245.75000000000003" y2="244.75000000000003"/>
+  <line stroke="#888888" x1="521.808556069723" x2="522.808556069723" y1="244.75000000000003" y2="244.75000000000003"/>
+  <line stroke="#888888" x1="522.808556069723" x2="522.808556069723" y1="244.75000000000003" y2="245.75000000000003"/>
+  <line stroke="#888888" x1="522.808556069723" x2="521.808556069723" y1="245.75000000000003" y2="245.75000000000003"/>
+  <line stroke="#888888" x1="540.808556069723" x2="540.808556069723" y1="246.75000000000003" y2="243.75000000000003"/>
+  <line stroke="#888888" x1="540.808556069723" x2="543.8085560697231" y1="243.75000000000003" y2="243.75000000000003"/>
+  <line stroke="#888888" x1="543.8085560697231" x2="543.8085560697231" y1="243.75000000000003" y2="246.75000000000003"/>
+  <line stroke="#888888" x1="543.8085560697231" x2="540.808556069723" y1="246.75000000000003" y2="246.75000000000003"/>
+  <line stroke="#888888" x1="536.558556069723" x2="528.0585560697231" y1="203.75000000000003" y2="203.75000000000003"/>
+  <line stroke="#888888" x1="528.0585560697231" x2="528.0585560697231" y1="203.75000000000003" y2="203.25000000000003"/>
+  <line stroke="#888888" x1="528.0585560697231" x2="536.558556069723" y1="203.25000000000003" y2="203.25000000000003"/>
+  <line stroke="#888888" x1="536.558556069723" x2="536.558556069723" y1="203.25000000000003" y2="203.75000000000003"/>
+  <line stroke="#888888" x1="528.0585560697231" x2="536.558556069723" y1="251.50000000000003" y2="251.50000000000003"/>
+  <line stroke="#888888" x1="536.558556069723" x2="536.558556069723" y1="251.50000000000003" y2="252.00000000000003"/>
+  <line stroke="#888888" x1="536.558556069723" x2="528.0585560697231" y1="252.00000000000003" y2="252.00000000000003"/>
+  <line stroke="#888888" x1="528.0585560697231" x2="528.0585560697231" y1="252.00000000000003" y2="251.50000000000003"/>
+  <line stroke="#888888" x1="512.808556069723" x2="517.808556069723" y1="207.09090909090912" y2="207.09090909090912"/>
+  <line stroke="#888888" x1="517.808556069723" x2="517.808556069723" y1="207.09090909090912" y2="218.1818181818182"/>
+  <line stroke="#888888" x1="517.808556069723" x2="512.808556069723" y1="218.1818181818182" y2="218.1818181818182"/>
+  <line stroke="#888888" x1="512.808556069723" x2="517.808556069723" y1="234.81818181818184" y2="234.81818181818184"/>
+  <line stroke="#888888" x1="517.808556069723" x2="517.808556069723" y1="234.81818181818184" y2="245.90909090909093"/>
+  <line stroke="#888888" x1="517.808556069723" x2="512.808556069723" y1="245.90909090909093" y2="245.90909090909093"/>
+  <line stroke="#888888" x1="538.0585560697231" x2="541.5585560697231" y1="180.0" y2="180.0"/>
+  <line stroke="#888888" x1="541.5585560697231" x2="541.5585560697231" y1="180.0" y2="188.00000000000003"/>
+  <line stroke="#888888" x1="541.5585560697231" x2="538.0585560697231" y1="188.00000000000003" y2="188.00000000000003"/>
 </svg>
diff --git a/rocolib/output/BoatWithServoStackBattery/graph-autofold-default.dxf b/rocolib/output/BoatWithServoStackBattery/graph-autofold-default.dxf
index 26964202af3cb3a49ae266f210e93e1f6690b8fa..c6096573bd05b8bd523d32b0115eac0ffdefc27c 100644
--- a/rocolib/output/BoatWithServoStackBattery/graph-autofold-default.dxf
+++ b/rocolib/output/BoatWithServoStackBattery/graph-autofold-default.dxf
@@ -493,7 +493,7 @@ TABLE
   2
 LAYER
  70
-16
+14
   0
 LAYER
   2
@@ -547,16 +547,6 @@ CONTINUOUS
   0
 LAYER
   2
-0
- 70
-0
- 62
-1
-  6
-CONTINUOUS
-  0
-LAYER
-  2
 90
  70
 0
@@ -567,7 +557,7 @@ CONTINUOUS
   0
 LAYER
   2
--90
+90.0
  70
 0
  62
@@ -577,17 +567,7 @@ CONTINUOUS
   0
 LAYER
   2
-45
- 70
 0
- 62
-1
-  6
-CONTINUOUS
-  0
-LAYER
-  2
--45
  70
 0
  62
@@ -597,7 +577,7 @@ CONTINUOUS
   0
 LAYER
   2
-21.801409486351815
+180
  70
 0
  62
@@ -607,7 +587,7 @@ CONTINUOUS
   0
 LAYER
   2
-80.43938360731835
+-180
  70
 0
  62
@@ -617,7 +597,7 @@ CONTINUOUS
   0
 LAYER
   2
-180
+-174
  70
 0
  62
@@ -627,7 +607,7 @@ CONTINUOUS
   0
 LAYER
   2
--180
+-90
  70
 0
  62
@@ -637,7 +617,7 @@ CONTINUOUS
   0
 LAYER
   2
--174
+-45
  70
 0
  62
@@ -647,7 +627,7 @@ CONTINUOUS
   0
 LAYER
   2
-26.565051177077976
+45
  70
 0
  62
@@ -1048,110 +1028,82 @@ MVIEW
 }
   0
 LINE
+  6
+DOTTED
  62
-5
-  8
-cut
- 10
-228.00000000000003
- 20
-150.30855600000004
- 30
-0.0
- 11
-228.00000000000003
- 21
-150.30855600000004
- 31
-0.0
-  0
-LINE
- 62
-5
-  8
-cut
- 10
-0.0
- 20
-150.30855600000004
- 30
-0.0
- 11
-228.00000000000003
- 21
-150.30855600000004
- 31
-0.0
-  0
-LINE
- 62
-5
+1
   8
-cut
+90
  10
-0.0
+280.00000000000006
  20
-150.30855600000004
+70.00000000000001
  30
 0.0
  11
-0.0
+280.00000000000006
  21
-150.30855600000004
+298.00000000000006
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
-cut
+90
  10
-0.0
+190.00000000000003
  20
-140.30855600000004
+70.00000000000001
  30
 0.0
  11
-0.0
+190.00000000000003
  21
-150.30855600000004
+298.00000000000006
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
-cut
+90.0
  10
-60.00000000000001
+235.00000000000003
  20
-140.30855600000004
+70.00000000000001
  30
 0.0
  11
-0.0
+190.00000000000003
  21
-140.30855600000004
+70.00000000000001
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
-cut
+90.0
  10
-60.00000000000001
+280.00000000000006
  20
-150.30855600000004
+70.00000000000001
  30
 0.0
  11
-60.00000000000001
+235.00000000000003
  21
-140.30855600000004
+70.00000000000001
  31
 0.0
   0
@@ -1161,15 +1113,15 @@ LINE
   8
 cut
  10
-133.00000000000003
+260.0
  20
-150.30855600000004
+-2.8421709430404014e-14
  30
 0.0
  11
-60.00000000000001
+190.00000000000003
  21
-150.30855600000004
+-2.8421709430404014e-14
  31
 0.0
   0
@@ -1179,51 +1131,55 @@ LINE
   8
 cut
  10
-167.00000000000003
+235.00000000000003
  20
-150.30855600000004
+-2.8421709430404014e-14
  30
 0.0
  11
-157.0
+260.0
  21
-150.30855600000004
+-2.8421709430404014e-14
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
-cut
+180
  10
-228.00000000000003
+190.00000000000003
  20
-150.30855600000004
+70.0
  30
 0.0
  11
-228.00000000000003
+190.00000000000003
  21
-150.30855600000004
+-2.8421709430404014e-14
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
-cut
+-180
  10
-60.00000000000001
+190.00000000000003
  20
-150.30855600000004
+70.0
  30
 0.0
  11
-60.00000000000001
+120.00000000000003
  21
-150.30855600000004
+-2.8421709430404014e-14
  31
 0.0
   0
@@ -1233,15 +1189,15 @@ LINE
   8
 cut
  10
-157.0
+190.00000000000003
  20
-150.30855600000004
+-2.8421709430404014e-14
  30
 0.0
  11
-157.0
+120.00000000000003
  21
-116.30855600000002
+-2.8421709430404014e-14
  31
 0.0
   0
@@ -1251,35 +1207,17 @@ DOTTED
  62
 1
   8
-90
+-174
  10
-133.00000000000003
+120.00000000000001
  20
-116.30855600000002
+70.0
  30
 0.0
  11
-133.00000000000003
+120.00000000000001
  21
-150.30855600000004
- 31
 0.0
-  0
-LINE
- 62
-5
-  8
-cut
- 10
-133.00000000000003
- 20
-80.30855600000002
- 30
-0.0
- 11
-133.00000000000003
- 21
-116.30855600000002
  31
 0.0
   0
@@ -1289,17 +1227,17 @@ DOTTED
  62
 1
   8
--90
+90.0
  10
-133.00000000000003
+190.00000000000003
  20
-80.30855600000002
+70.00000000000001
  30
 0.0
  11
-157.0
+120.00000000000001
  21
-80.30855600000002
+70.0
  31
 0.0
   0
@@ -1309,15 +1247,15 @@ LINE
   8
 cut
  10
-157.0
+96.66666666666666
  20
-116.30855600000002
+70.0
  30
 0.0
  11
-157.0
+120.00000000000001
  21
-80.30855600000002
+70.0
  31
 0.0
   0
@@ -1327,33 +1265,15 @@ LINE
   8
 cut
  10
-157.0
+96.66666666666669
  20
-80.30855600000002
- 30
-0.0
- 11
-157.0
- 21
-35.30855600000002
- 31
 0.0
-  0
-LINE
- 62
-5
-  8
-cut
- 10
-133.00000000000003
- 20
-35.30855600000002
  30
 0.0
  11
-133.00000000000003
+96.66666666666666
  21
-80.30855600000002
+70.0
  31
 0.0
   0
@@ -1363,69 +1283,75 @@ LINE
   8
 cut
  10
-133.00000000000003
+120.00000000000003
  20
-30.308556000000017
+0.0
  30
 0.0
  11
-133.00000000000003
+96.66666666666669
  21
-35.30855600000002
+0.0
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
-cut
+90.0
  10
-157.0
+120.0
  20
-30.308556000000017
+298.00000000000006
  30
 0.0
  11
-133.00000000000003
+190.00000000000003
  21
-30.308556000000017
+298.00000000000006
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
-cut
+-180
  10
-157.0
+119.99999999999999
  20
-35.30855600000002
+368.00000000000006
  30
 0.0
  11
-157.0
+190.00000000000003
  21
-30.308556000000017
+298.00000000000006
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
-cut
+-174
  10
-133.00000000000003
+119.99999999999999
  20
-116.30855600000002
+368.00000000000006
  30
 0.0
  11
-113.00000000000001
+120.0
  21
-116.30855600000002
+298.00000000000006
  31
 0.0
   0
@@ -1435,15 +1361,15 @@ LINE
   8
 cut
  10
-113.00000000000001
+119.99999999999999
  20
-150.30855600000004
+368.00000000000006
  30
 0.0
  11
-133.00000000000003
+190.0
  21
-150.30855600000004
+368.00000000000006
  31
 0.0
   0
@@ -1453,17 +1379,17 @@ DOTTED
  62
 1
   8
-90
+180
  10
-113.00000000000001
+190.0
  20
-116.30855600000002
+368.00000000000006
  30
 0.0
  11
-113.00000000000001
+190.00000000000003
  21
-150.30855600000004
+298.00000000000006
  31
 0.0
   0
@@ -1473,15 +1399,15 @@ LINE
   8
 cut
  10
-113.00000000000001
+259.99999999999994
  20
-116.30855600000002
+368.00000000000006
  30
 0.0
  11
-89.00000000000001
+235.0
  21
-116.30855600000002
+368.00000000000006
  31
 0.0
   0
@@ -1491,15 +1417,15 @@ LINE
   8
 cut
  10
-89.00000000000001
+190.0
  20
-150.30855600000004
+368.00000000000006
  30
 0.0
  11
-113.00000000000001
+259.99999999999994
  21
-150.30855600000004
+368.00000000000006
  31
 0.0
   0
@@ -1509,53 +1435,17 @@ DOTTED
  62
 1
   8
-90
- 10
-89.00000000000001
- 20
-116.30855600000002
- 30
-0.0
- 11
-89.00000000000001
- 21
-150.30855600000004
- 31
-0.0
-  0
-LINE
- 62
-5
-  8
-cut
- 10
-89.00000000000001
- 20
-116.30855600000002
- 30
-0.0
- 11
-69.00000000000001
- 21
-116.30855600000002
- 31
-0.0
-  0
-LINE
- 62
-5
-  8
-cut
+90.0
  10
-69.00000000000001
+190.00000000000003
  20
-150.30855600000004
+298.00000000000006
  30
 0.0
  11
-89.00000000000001
+235.00000000000003
  21
-150.30855600000004
+298.00000000000006
  31
 0.0
   0
@@ -1565,17 +1455,17 @@ DOTTED
  62
 1
   8
-90
+90.0
  10
-69.00000000000001
+235.00000000000003
  20
-150.30855600000004
+298.00000000000006
  30
 0.0
  11
-69.00000000000001
+280.00000000000006
  21
-116.30855600000002
+298.00000000000006
  31
 0.0
   0
@@ -1585,15 +1475,15 @@ LINE
   8
 cut
  10
-59.00000000000001
+210.00000000000003
  20
-150.30855600000004
+368.00000000000006
  30
 0.0
  11
-69.00000000000001
+280.00000000000006
  21
-150.30855600000004
+368.00000000000006
  31
 0.0
   0
@@ -1603,33 +1493,35 @@ LINE
   8
 cut
  10
-59.00000000000001
+235.0
  20
-116.30855600000002
+368.00000000000006
  30
 0.0
  11
-59.00000000000001
+210.00000000000003
  21
-150.30855600000004
+368.00000000000006
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
-cut
+180
  10
-69.00000000000001
+280.00000000000006
  20
-116.30855600000002
+298.00000000000006
  30
 0.0
  11
-59.00000000000001
+280.00000000000006
  21
-116.30855600000002
+368.00000000000006
  31
 0.0
   0
@@ -1639,17 +1531,17 @@ DOTTED
  62
 1
   8
-45
+-180
  10
-167.00000000000003
+280.00000000000006
  20
-114.16993400081472
+298.00000000000006
  30
 0.0
  11
-228.00000000000003
+350.0
  21
-114.16993400081472
+368.00000000000006
  31
 0.0
   0
@@ -1659,33 +1551,35 @@ LINE
   8
 cut
  10
-228.00000000000003
+280.00000000000006
  20
-150.30855600000004
+368.00000000000006
  30
 0.0
  11
-228.00000000000003
+350.0
  21
-114.16993400081472
+368.00000000000006
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
-cut
+-174
  10
-167.00000000000003
+350.0
  20
-114.16993400081472
+298.0000000000001
  30
 0.0
  11
-167.00000000000003
+350.0
  21
-150.30855600000004
+368.00000000000006
  31
 0.0
   0
@@ -1695,37 +1589,35 @@ DOTTED
  62
 1
   8
-45
+90.0
  10
-228.00000000000003
+280.00000000000006
  20
-90.16993400081472
+298.00000000000006
  30
 0.0
  11
-167.00000000000003
+350.0
  21
-90.16993400081472
+298.0000000000001
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
-90
+cut
  10
-228.00000000000003
+373.3333333333333
  20
-90.16993400081472
+298.0000000000001
  30
 0.0
  11
-228.00000000000003
+350.0
  21
-114.16993400081472
+298.0000000000001
  31
 0.0
   0
@@ -1735,15 +1627,15 @@ LINE
   8
 cut
  10
-167.00000000000003
+373.33333333333326
  20
-54.03131200162941
+368.00000000000006
  30
 0.0
  11
-167.00000000000003
+373.3333333333333
  21
-90.16993400081473
+298.0000000000001
  31
 0.0
   0
@@ -1753,69 +1645,75 @@ LINE
   8
 cut
  10
-228.00000000000003
+349.99999999999994
  20
-90.16993400081473
+368.00000000000006
  30
 0.0
  11
-228.00000000000003
+373.33333333333326
  21
-54.03131200162941
+368.00000000000006
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
-cut
+90.0
  10
-167.00000000000003
+350.00000000000006
  20
-44.03131200162941
+70.0
  30
 0.0
  11
-167.00000000000003
+280.0000000000001
  21
-54.03131200162941
+69.99999999999997
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
-cut
+-180
  10
-228.00000000000003
+350.00000000000006
  20
-44.03131200162941
+-2.8421709430404014e-14
  30
 0.0
  11
-167.00000000000003
+280.0000000000001
  21
-44.03131200162941
+69.99999999999996
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
-cut
+-174
  10
-228.00000000000003
+350.00000000000006
  20
-54.03131200162941
+-2.8421709430404014e-14
  30
 0.0
  11
-228.00000000000003
+350.00000000000006
  21
-44.03131200162941
+69.99999999999999
  31
 0.0
   0
@@ -1825,33 +1723,35 @@ LINE
   8
 cut
  10
-238.00000000000003
+350.00000000000006
  20
-90.16993400081472
+-2.8421709430404014e-14
  30
 0.0
  11
-228.00000000000003
+280.00000000000017
  21
-90.16993400081472
+-5.684341886080803e-14
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
-cut
+180
  10
-238.00000000000003
+280.00000000000017
  20
-114.16993400081472
+-5.684341886080803e-14
  30
 0.0
  11
-238.00000000000003
+280.0000000000001
  21
-90.16993400081472
+69.99999999999997
  31
 0.0
   0
@@ -1861,15 +1761,15 @@ LINE
   8
 cut
  10
-228.00000000000003
+210.0000000000001
  20
-114.16993400081472
+-1.1368683772161605e-13
  30
 0.0
  11
-238.00000000000003
+235.00000000000009
  21
-114.16993400081472
+-8.526512829121203e-14
  31
 0.0
   0
@@ -1879,15 +1779,15 @@ LINE
   8
 cut
  10
-157.0
+280.0000000000001
  20
-114.16993400081472
+-5.684341886080803e-14
  30
 0.0
  11
-167.00000000000003
+210.0000000000001
  21
-114.16993400081472
+-1.1368683772161605e-13
  31
 0.0
   0
@@ -1897,15 +1797,15 @@ LINE
   8
 cut
  10
-157.0
+373.33333333333337
  20
-90.16993400081472
+0.0
  30
 0.0
  11
-157.0
+350.00000000000006
  21
-114.16993400081472
+0.0
  31
 0.0
   0
@@ -1915,15 +1815,15 @@ LINE
   8
 cut
  10
-167.00000000000003
+373.33333333333337
  20
-90.16993400081472
+70.00000000000003
  30
 0.0
  11
-157.0
+373.33333333333337
  21
-90.16993400081472
+0.0
  31
 0.0
   0
@@ -1933,15 +1833,15 @@ LINE
   8
 cut
  10
-40.00000000000001
+350.00000000000006
  20
-142.80855600000004
+70.00000000000001
  30
 0.0
  11
-45.0
+373.33333333333337
  21
-142.80855600000004
+70.00000000000003
  31
 0.0
   0
@@ -1951,15 +1851,15 @@ LINE
   8
 cut
  10
-45.0
+350.0
  20
-142.80855600000004
+298.0000000000001
  30
 0.0
  11
-40.00000000000001
+350.0
  21
-147.80855600000004
+298.0000000000001
  31
 0.0
   0
@@ -1969,15 +1869,15 @@ LINE
   8
 cut
  10
-40.00000000000001
+350.00000000000006
  20
-147.80855600000004
+70.0
  30
 0.0
  11
-20.000000000000004
+350.00000000000006
  21
-147.80855600000004
+70.0
  31
 0.0
   0
@@ -1987,15 +1887,15 @@ LINE
   8
 cut
  10
-20.000000000000004
+350.0
  20
-147.80855600000004
+131.0
  30
 0.0
  11
-15.000000000000002
+350.00000000000006
  21
-142.80855600000004
+70.0
  31
 0.0
   0
@@ -2005,15 +1905,15 @@ LINE
   8
 cut
  10
-15.000000000000002
+350.0
  20
-142.80855600000004
+141.0
  30
 0.0
  11
-20.000000000000004
+350.0
  21
-142.80855600000004
+131.0
  31
 0.0
   0
@@ -2023,15 +1923,15 @@ LINE
   8
 cut
  10
-149.25000000000003
+350.0
  20
-139.2252226666667
+238.00000000000003
  30
 0.0
  11
-149.25000000000003
+350.0
  21
-127.39188933333337
+165.00000000000003
  31
 0.0
   0
@@ -2041,15 +1941,15 @@ LINE
   8
 cut
  10
-149.25000000000003
+350.0
  20
-127.39188933333337
+238.00000000000003
  30
 0.0
  11
-149.75
+350.0
  21
-127.39188933333337
+238.00000000000003
  31
 0.0
   0
@@ -2059,15 +1959,15 @@ LINE
   8
 cut
  10
-149.75
+350.00000000000006
  20
-127.39188933333337
+70.0
  30
 0.0
  11
-149.75
+350.00000000000006
  21
-139.2252226666667
+70.0
  31
 0.0
   0
@@ -2077,33 +1977,35 @@ LINE
   8
 cut
  10
-149.75
+384.00000000000006
  20
-139.2252226666667
+141.0
  30
 0.0
  11
-149.25000000000003
+350.0
  21
-139.2252226666667
+141.0
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
-cut
+90
  10
-149.00000000000003
+350.0
  20
-31.558556000000014
+165.00000000000003
  30
 0.0
  11
-151.50000000000003
+384.00000000000006
  21
-31.558556000000014
+165.00000000000006
  31
 0.0
   0
@@ -2113,33 +2015,35 @@ LINE
   8
 cut
  10
-151.50000000000003
+420.00000000000006
  20
-31.558556000000014
+141.00000000000003
  30
 0.0
  11
-149.00000000000003
+384.00000000000006
  21
-34.05855600000001
+141.0
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
-cut
+-90
  10
-149.00000000000003
+420.00000000000006
  20
-34.05855600000001
+141.00000000000003
  30
 0.0
  11
-141.0
+420.00000000000006
  21
-34.05855600000001
+165.00000000000006
  31
 0.0
   0
@@ -2149,15 +2053,15 @@ LINE
   8
 cut
  10
-141.0
+384.00000000000006
  20
-34.05855600000001
+165.00000000000006
  30
 0.0
  11
-138.5
+420.00000000000006
  21
-31.558556000000014
+165.00000000000006
  31
 0.0
   0
@@ -2167,15 +2071,15 @@ LINE
   8
 cut
  10
-138.5
+420.00000000000006
  20
-31.558556000000014
+165.00000000000006
  30
 0.0
  11
-141.0
+465.00000000000006
  21
-31.558556000000014
+165.00000000000009
  31
 0.0
   0
@@ -2185,15 +2089,15 @@ LINE
   8
 cut
  10
-114.00000000000001
+465.00000000000006
  20
-127.30855600000004
+141.00000000000006
  30
 0.0
  11
-118.00000000000001
+420.00000000000006
  21
-127.30855600000004
+141.00000000000003
  31
 0.0
   0
@@ -2203,15 +2107,15 @@ LINE
   8
 cut
  10
-118.00000000000001
+465.00000000000006
  20
-127.30855600000004
+165.00000000000009
  30
 0.0
  11
-118.00000000000001
+465.00000000000006
  21
-139.30855600000004
+141.00000000000006
  31
 0.0
   0
@@ -2221,15 +2125,15 @@ LINE
   8
 cut
  10
-118.00000000000001
+350.0
  20
-139.30855600000004
+165.00000000000003
  30
 0.0
  11
-114.00000000000001
+350.0
  21
-139.30855600000004
+185.00000000000003
  31
 0.0
   0
@@ -2239,33 +2143,35 @@ LINE
   8
 cut
  10
-114.00000000000001
+384.00000000000006
  20
-139.30855600000004
+185.00000000000006
  30
 0.0
  11
-114.00000000000001
+384.00000000000006
  21
-127.30855600000004
+165.00000000000006
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
-cut
+90
  10
-126.00000000000001
+350.0
  20
-128.808556
+185.00000000000003
  30
 0.0
  11
-130.0
+384.00000000000006
  21
-128.808556
+185.00000000000006
  31
 0.0
   0
@@ -2275,15 +2181,15 @@ LINE
   8
 cut
  10
-130.0
+350.0
  20
-128.808556
+185.00000000000003
  30
 0.0
  11
-130.0
+350.0
  21
-137.808556
+209.00000000000003
  31
 0.0
   0
@@ -2293,33 +2199,35 @@ LINE
   8
 cut
  10
-130.0
+384.00000000000006
  20
-137.808556
+209.00000000000006
  30
 0.0
  11
-126.00000000000001
+384.00000000000006
  21
-137.808556
+185.00000000000006
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
-cut
+90
  10
-126.00000000000001
+350.0
  20
-137.808556
+209.00000000000003
  30
 0.0
  11
-126.00000000000001
+384.00000000000006
  21
-128.808556
+209.00000000000006
  31
 0.0
   0
@@ -2329,15 +2237,15 @@ LINE
   8
 cut
  10
-89.50000000000001
+350.0
  20
-127.30855600000004
+209.00000000000006
  30
 0.0
  11
-112.50000000000001
+350.0
  21
-127.30855600000004
+229.00000000000006
  31
 0.0
   0
@@ -2347,33 +2255,35 @@ LINE
   8
 cut
  10
-112.50000000000001
+384.00000000000006
  20
-127.30855600000004
+229.00000000000006
  30
 0.0
  11
-112.50000000000001
+384.00000000000006
  21
-139.30855600000004
+209.00000000000006
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
-cut
+90
  10
-112.50000000000001
+384.00000000000006
  20
-139.30855600000004
+229.00000000000006
  30
 0.0
  11
-89.50000000000001
+350.0
  21
-139.30855600000004
+229.00000000000006
  31
 0.0
   0
@@ -2383,15 +2293,15 @@ LINE
   8
 cut
  10
-89.50000000000001
+384.00000000000006
  20
-139.30855600000004
+239.00000000000006
  30
 0.0
  11
-89.50000000000001
+384.00000000000006
  21
-127.30855600000004
+229.00000000000006
  31
 0.0
   0
@@ -2401,15 +2311,15 @@ LINE
   8
 cut
  10
-84.0
+350.0
  20
-127.30855600000004
+239.00000000000006
  30
 0.0
  11
-88.00000000000001
+384.00000000000006
  21
-127.30855600000004
+239.00000000000006
  31
 0.0
   0
@@ -2419,15 +2329,15 @@ LINE
   8
 cut
  10
-88.00000000000001
+350.0
  20
-127.30855600000004
+229.00000000000006
  30
 0.0
  11
-88.00000000000001
+350.0
  21
-139.30855600000004
+239.00000000000006
  31
 0.0
   0
@@ -2437,15 +2347,15 @@ LINE
   8
 cut
  10
-88.00000000000001
+350.0
  20
-139.30855600000004
+298.00000000000006
  30
 0.0
  11
-84.0
+411.65427803486153
  21
-139.30855600000004
+298.0000000000001
  31
 0.0
   0
@@ -2455,33 +2365,35 @@ LINE
   8
 cut
  10
-84.0
+411.65427803486153
  20
-139.30855600000004
+238.00000000000009
  30
 0.0
  11
-84.0
+350.0
  21
-127.30855600000004
+238.00000000000003
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
-cut
+-45
  10
-61.50000000000001
+411.65427803486153
  20
-127.64188933333337
+238.00000000000009
  30
 0.0
  11
-66.50000000000001
+411.65427803486153
  21
-127.64188933333337
+298.0000000000001
  31
 0.0
   0
@@ -2491,51 +2403,55 @@ LINE
   8
 cut
  10
-66.50000000000001
+438.65427803486153
  20
-127.64188933333337
+238.00000000000009
  30
 0.0
  11
-66.50000000000001
+411.65427803486153
  21
-138.9752226666667
+238.00000000000009
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
-cut
+-45
  10
-66.50000000000001
+438.65427803486153
  20
-138.9752226666667
+298.0000000000001
  30
 0.0
  11
-61.50000000000001
+438.65427803486153
  21
-138.9752226666667
+238.00000000000009
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
-cut
+90
  10
-185.00000000000003
+411.65427803486153
  20
-95.66993400081472
+298.0000000000001
  30
 0.0
  11
-196.00000000000003
+438.65427803486153
  21
-95.66993400081472
+298.0000000000001
  31
 0.0
   0
@@ -2545,15 +2461,15 @@ LINE
   8
 cut
  10
-196.00000000000003
+500.30855606972295
  20
-95.66993400081472
+238.0000000000001
  30
 0.0
  11
-196.00000000000003
+438.65427803486153
  21
-108.66993400081472
+238.00000000000009
  31
 0.0
   0
@@ -2563,15 +2479,15 @@ LINE
   8
 cut
  10
-196.00000000000003
+500.30855606972295
  20
-108.66993400081472
+298.00000000000017
  30
 0.0
  11
-185.00000000000003
+500.30855606972295
  21
-108.66993400081472
+238.0000000000001
  31
 0.0
   0
@@ -2581,15 +2497,15 @@ LINE
   8
 cut
  10
-185.00000000000003
+438.6542780348615
  20
-108.66993400081472
+298.0000000000001
  30
 0.0
  11
-185.00000000000003
+500.30855606972295
  21
-95.66993400081472
+298.00000000000017
  31
 0.0
   0
@@ -2599,15 +2515,15 @@ LINE
   8
 cut
  10
-216.50000000000003
+411.6542780348615
  20
-97.16993400081472
+298.0000000000001
  30
 0.0
  11
-222.50000000000003
+411.6542780348615
  21
-97.16993400081472
+315.0000000000001
  31
 0.0
   0
@@ -2617,33 +2533,35 @@ LINE
   8
 cut
  10
-222.50000000000003
+438.6542780348615
  20
-97.16993400081472
+315.00000000000017
  30
 0.0
  11
-222.50000000000003
+438.6542780348615
  21
-107.16993400081472
+298.0000000000001
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
-cut
+90
  10
-222.50000000000003
+411.6542780348615
  20
-107.16993400081472
+315.0000000000001
  30
 0.0
  11
-216.50000000000003
+438.6542780348615
  21
-107.16993400081472
+315.00000000000017
  31
 0.0
   0
@@ -2653,15 +2571,15 @@ LINE
   8
 cut
  10
-216.50000000000003
+411.6542780348615
  20
-107.16993400081472
+315.0000000000001
  30
 0.0
  11
-216.50000000000003
+411.6542780348615
  21
-97.16993400081472
+375.00000000000017
  31
 0.0
   0
@@ -2671,33 +2589,35 @@ LINE
   8
 cut
  10
-216.90909090909093
+438.6542780348615
  20
-46.5313120016294
+375.00000000000017
  30
 0.0
  11
-216.90909090909093
+438.6542780348615
  21
-51.53131200162941
+315.00000000000017
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
-cut
+90
  10
-216.90909090909093
+411.6542780348615
  20
-51.53131200162941
+375.00000000000017
  30
 0.0
  11
-205.81818181818184
+438.6542780348615
  21
-51.53131200162941
+375.00000000000017
  31
 0.0
   0
@@ -2707,15 +2627,15 @@ LINE
   8
 cut
  10
-205.81818181818184
+411.6542780348614
  20
-51.53131200162941
+375.00000000000017
  30
 0.0
  11
-205.81818181818184
+411.6542780348614
  21
-46.5313120016294
+392.00000000000017
  31
 0.0
   0
@@ -2725,33 +2645,35 @@ LINE
   8
 cut
  10
-189.18181818181822
+438.65427803486136
  20
-46.5313120016294
+392.00000000000017
  30
 0.0
  11
-189.18181818181822
+438.65427803486136
  21
-51.53131200162941
+375.00000000000017
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
-cut
+90
  10
-189.18181818181822
+438.65427803486136
  20
-51.53131200162941
+392.00000000000017
  30
 0.0
  11
-178.09090909090912
+411.6542780348614
  21
-51.53131200162941
+392.00000000000017
  31
 0.0
   0
@@ -2761,15 +2683,15 @@ LINE
   8
 cut
  10
-178.09090909090912
+438.65427803486136
  20
-51.53131200162941
+402.00000000000017
  30
 0.0
  11
-178.09090909090912
+438.65427803486136
  21
-46.5313120016294
+392.00000000000017
  31
 0.0
   0
@@ -2779,15 +2701,15 @@ LINE
   8
 cut
  10
-235.50000000000003
+411.6542780348614
  20
-106.16993400081472
+402.00000000000017
  30
 0.0
  11
-230.50000000000003
+438.65427803486136
  21
-106.16993400081472
+402.00000000000017
  31
 0.0
   0
@@ -2797,15 +2719,15 @@ LINE
   8
 cut
  10
-230.50000000000003
+411.6542780348614
  20
-106.16993400081472
+392.00000000000017
  30
 0.0
  11
-230.50000000000003
+411.6542780348614
  21
-98.16993400081472
+402.00000000000017
  31
 0.0
   0
@@ -2815,15 +2737,15 @@ LINE
   8
 cut
  10
-230.50000000000003
+96.66666666666666
  20
-98.16993400081472
+368.00000000000006
  30
 0.0
  11
-235.50000000000003
+120.0
  21
-98.16993400081472
+368.00000000000006
  31
 0.0
   0
@@ -2833,15 +2755,15 @@ LINE
   8
 cut
  10
-159.5
+96.66666666666666
  20
-98.16993400081472
+298.00000000000006
  30
 0.0
  11
-164.50000000000003
+96.66666666666666
  21
-98.16993400081472
+368.00000000000006
  31
 0.0
   0
@@ -2851,15 +2773,15 @@ LINE
   8
 cut
  10
-164.50000000000003
+120.0
  20
-98.16993400081472
+298.00000000000006
  30
 0.0
  11
-164.50000000000003
+96.66666666666666
  21
-106.16993400081472
+298.00000000000006
  31
 0.0
   0
@@ -2869,15 +2791,15 @@ LINE
   8
 cut
  10
-164.50000000000003
+120.00000000000001
  20
-106.16993400081472
+70.00000000000001
  30
 0.0
  11
-159.5
+120.00000000000001
  21
-106.16993400081472
+70.00000000000001
  31
 0.0
   0
@@ -2887,15 +2809,15 @@ LINE
   8
 cut
  10
-476.00000000000006
+120.0
  20
-150.30855600000004
+298.00000000000006
  30
 0.0
  11
-476.00000000000006
+120.0
  21
-150.30855600000004
+298.00000000000006
  31
 0.0
   0
@@ -2905,15 +2827,15 @@ LINE
   8
 cut
  10
-248.00000000000006
+110.0
  20
-150.30855600000004
+298.00000000000006
  30
 0.0
  11
-476.00000000000006
+120.0
  21
-150.30855600000004
+298.00000000000006
  31
 0.0
   0
@@ -2923,15 +2845,15 @@ LINE
   8
 cut
  10
-248.00000000000006
+110.0
  20
-150.30855600000004
+238.00000000000003
  30
 0.0
  11
-248.00000000000006
+110.0
  21
-150.30855600000004
+298.00000000000006
  31
 0.0
   0
@@ -2941,15 +2863,15 @@ LINE
   8
 cut
  10
-309.0
+120.0
  20
-150.30855600000004
+238.00000000000003
  30
 0.0
  11
-248.00000000000006
+110.0
  21
-150.30855600000004
+238.00000000000003
  31
 0.0
   0
@@ -2959,15 +2881,15 @@ LINE
   8
 cut
  10
-319.0
+120.0
  20
-150.30855600000004
+165.00000000000003
  30
 0.0
  11
-309.0
+120.0
  21
-150.30855600000004
+238.00000000000003
  31
 0.0
   0
@@ -2977,15 +2899,15 @@ LINE
   8
 cut
  10
-416.00000000000006
+120.00000000000001
  20
-150.30855600000004
+131.0
  30
 0.0
  11
-343.00000000000006
+120.0
  21
-150.30855600000004
+141.0
  31
 0.0
   0
@@ -2995,15 +2917,15 @@ LINE
   8
 cut
  10
-416.00000000000006
+120.00000000000001
  20
-150.30855600000004
+70.00000000000001
  30
 0.0
  11
-416.00000000000006
+120.00000000000001
  21
-150.30855600000004
+70.00000000000001
  31
 0.0
   0
@@ -3013,15 +2935,15 @@ LINE
   8
 cut
  10
-248.00000000000006
+120.0
  20
-150.30855600000004
+238.00000000000003
  30
 0.0
  11
-248.00000000000006
+120.0
  21
-150.30855600000004
+238.00000000000003
  31
 0.0
   0
@@ -3031,15 +2953,15 @@ LINE
   8
 cut
  10
-319.0
+120.00000000000001
  20
-116.30855600000002
+141.0
  30
 0.0
  11
-319.0
+86.00000000000001
  21
-150.30855600000004
+141.0
  31
 0.0
   0
@@ -3051,15 +2973,15 @@ DOTTED
   8
 90
  10
-343.00000000000006
+86.00000000000001
  20
-150.30855600000004
+165.00000000000003
  30
 0.0
  11
-343.00000000000006
+120.00000000000001
  21
-116.30855600000002
+165.00000000000003
  31
 0.0
   0
@@ -3069,15 +2991,15 @@ LINE
   8
 cut
  10
-319.0
+50.0
  20
-80.30855600000002
+165.00000000000003
  30
 0.0
  11
-319.0
+86.00000000000001
  21
-116.30855600000002
+165.00000000000003
  31
 0.0
   0
@@ -3089,15 +3011,15 @@ DOTTED
   8
 -90
  10
-319.0
+50.0
  20
-80.30855600000002
+165.00000000000003
  30
 0.0
  11
-343.00000000000006
+50.0
  21
-80.30855600000002
+141.0
  31
 0.0
   0
@@ -3107,15 +3029,15 @@ LINE
   8
 cut
  10
-343.00000000000006
+86.00000000000001
  20
-116.30855600000002
+141.0
  30
 0.0
  11
-343.00000000000006
+50.0
  21
-80.30855600000002
+141.0
  31
 0.0
   0
@@ -3125,15 +3047,15 @@ LINE
   8
 cut
  10
-343.00000000000006
+50.0
  20
-80.30855600000002
+141.0
  30
 0.0
  11
-343.00000000000006
+5.000000000000001
  21
-35.30855600000002
+141.0
  31
 0.0
   0
@@ -3143,15 +3065,15 @@ LINE
   8
 cut
  10
-319.0
+5.000000000000001
  20
-35.30855600000002
+165.00000000000003
  30
 0.0
  11
-319.0
+50.0
  21
-80.30855600000002
+165.00000000000003
  31
 0.0
   0
@@ -3161,15 +3083,15 @@ LINE
   8
 cut
  10
-343.00000000000006
+0.0
  20
-35.30855600000002
+165.00000000000003
  30
 0.0
  11
-319.0
+5.000000000000001
  21
-35.30855600000002
+165.00000000000003
  31
 0.0
   0
@@ -3179,15 +3101,15 @@ LINE
   8
 cut
  10
-343.00000000000006
+0.0
  20
-150.30855600000004
+141.0
  30
 0.0
  11
-363.00000000000006
+0.0
  21
-150.30855600000004
+165.00000000000003
  31
 0.0
   0
@@ -3197,35 +3119,15 @@ LINE
   8
 cut
  10
-363.00000000000006
+5.000000000000001
  20
-116.30855600000002
+141.0
  30
 0.0
  11
-343.00000000000006
- 21
-116.30855600000002
- 31
-0.0
-  0
-LINE
-  6
-DOTTED
- 62
-1
-  8
-90
- 10
-363.00000000000006
- 20
-150.30855600000004
- 30
 0.0
- 11
-363.00000000000006
  21
-116.30855600000002
+141.0
  31
 0.0
   0
@@ -3235,15 +3137,15 @@ LINE
   8
 cut
  10
-363.00000000000006
+86.00000000000001
  20
-150.30855600000004
+165.00000000000003
  30
 0.0
  11
-387.0
+86.00000000000001
  21
-150.30855600000004
+185.00000000000003
  31
 0.0
   0
@@ -3253,15 +3155,15 @@ LINE
   8
 cut
  10
-387.0
+120.00000000000001
  20
-116.30855600000002
+185.00000000000003
  30
 0.0
  11
-363.00000000000006
+120.00000000000001
  21
-116.30855600000002
+165.00000000000003
  31
 0.0
   0
@@ -3273,15 +3175,15 @@ DOTTED
   8
 90
  10
-387.0
+86.00000000000001
  20
-150.30855600000004
+185.00000000000003
  30
 0.0
  11
-387.0
+120.00000000000001
  21
-116.30855600000002
+185.00000000000003
  31
 0.0
   0
@@ -3291,15 +3193,15 @@ LINE
   8
 cut
  10
-387.0
+86.00000000000001
  20
-150.30855600000004
+185.00000000000003
  30
 0.0
  11
-407.00000000000006
+86.00000000000001
  21
-150.30855600000004
+209.00000000000003
  31
 0.0
   0
@@ -3309,15 +3211,15 @@ LINE
   8
 cut
  10
-407.00000000000006
+120.00000000000001
  20
-116.30855600000002
+209.00000000000003
  30
 0.0
  11
-387.0
+120.00000000000001
  21
-116.30855600000002
+185.00000000000003
  31
 0.0
   0
@@ -3329,15 +3231,15 @@ DOTTED
   8
 90
  10
-407.00000000000006
+86.00000000000001
  20
-116.30855600000002
+209.00000000000003
  30
 0.0
  11
-407.00000000000006
+120.00000000000001
  21
-150.30855600000004
+209.00000000000003
  31
 0.0
   0
@@ -3347,15 +3249,15 @@ LINE
   8
 cut
  10
-417.00000000000006
+86.00000000000001
  20
-116.30855600000002
+209.00000000000003
  30
 0.0
  11
-407.00000000000006
+86.00000000000001
  21
-116.30855600000002
+229.00000000000003
  31
 0.0
   0
@@ -3365,33 +3267,35 @@ LINE
   8
 cut
  10
-417.00000000000006
+120.00000000000001
  20
-150.30855600000004
+229.00000000000003
  30
 0.0
  11
-417.00000000000006
+120.00000000000001
  21
-116.30855600000002
+209.00000000000003
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
-cut
+90
  10
-407.00000000000006
+120.00000000000001
  20
-150.30855600000004
+229.00000000000003
  30
 0.0
  11
-417.00000000000006
+86.00000000000001
  21
-150.30855600000004
+229.00000000000003
  31
 0.0
   0
@@ -3401,15 +3305,15 @@ LINE
   8
 cut
  10
-476.00000000000006
+120.00000000000001
  20
-150.30855600000004
+239.00000000000003
  30
 0.0
  11
-476.00000000000006
+120.00000000000001
  21
-88.65427796513858
+229.00000000000003
  31
 0.0
   0
@@ -3419,35 +3323,15 @@ LINE
   8
 cut
  10
-416.00000000000006
- 20
-88.65427796513858
- 30
-0.0
- 11
-416.00000000000006
- 21
-150.30855600000004
- 31
-0.0
-  0
-LINE
-  6
-DOTTED
- 62
-1
-  8
--45
- 10
-416.00000000000006
+86.00000000000001
  20
-88.65427796513858
+239.00000000000003
  30
 0.0
  11
-476.00000000000006
+120.00000000000001
  21
-88.65427796513858
+239.00000000000003
  31
 0.0
   0
@@ -3457,15 +3341,15 @@ LINE
   8
 cut
  10
-416.00000000000006
+86.00000000000001
  20
-61.65427796513857
+229.00000000000003
  30
 0.0
  11
-416.00000000000006
+86.00000000000001
  21
-88.65427796513858
+239.00000000000003
  31
 0.0
   0
@@ -3475,37 +3359,35 @@ DOTTED
  62
 1
   8
--45
+45
  10
-476.00000000000006
+83.86137800081468
  20
-61.65427796513857
+131.0
  30
 0.0
  11
-416.00000000000006
+83.86137800081468
  21
-61.65427796513857
+70.00000000000001
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
-90
+cut
  10
-476.00000000000006
+120.00000000000001
  20
-88.65427796513858
+70.00000000000001
  30
 0.0
  11
-476.00000000000006
+83.86137800081468
  21
-61.65427796513857
+70.00000000000001
  31
 0.0
   0
@@ -3515,51 +3397,55 @@ LINE
   8
 cut
  10
-416.00000000000006
+83.86137800081468
  20
--6.972288701945219e-08
+131.0
  30
 0.0
  11
-416.00000000000006
+120.0
  21
-61.65427796513857
+131.0
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
-cut
+45
  10
-476.00000000000006
+59.86137800081469
  20
--6.972288701945219e-08
+70.00000000000001
  30
 0.0
  11
-416.00000000000006
+59.86137800081469
  21
--6.972288701945219e-08
+131.0
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
-cut
+90
  10
-476.00000000000006
+59.86137800081469
  20
-61.65427796513857
+70.00000000000001
  30
 0.0
  11
-476.00000000000006
+83.86137800081468
  21
--6.972288701945219e-08
+70.00000000000001
  31
 0.0
   0
@@ -3569,15 +3455,15 @@ LINE
   8
 cut
  10
-476.00000000000006
+23.722756001629364
  20
-88.65427796513858
+131.0
  30
 0.0
  11
-493.00000000000006
+59.86137800081469
  21
-88.65427796513858
+131.0
  31
 0.0
   0
@@ -3587,35 +3473,33 @@ LINE
   8
 cut
  10
-493.00000000000006
+59.86137800081469
  20
-61.65427796513857
+70.0
  30
 0.0
  11
-476.00000000000006
+23.722756001629364
  21
-61.65427796513857
+70.0
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
-90
+cut
  10
-493.00000000000006
+13.722756001629365
  20
-88.65427796513858
+131.0
  30
 0.0
  11
-493.00000000000006
+23.722756001629364
  21
-61.65427796513857
+131.0
  31
 0.0
   0
@@ -3625,15 +3509,15 @@ LINE
   8
 cut
  10
-493.00000000000006
+13.722756001629365
  20
-88.65427796513858
+70.0
  30
 0.0
  11
-553.0000000000001
+13.722756001629365
  21
-88.65427796513858
+131.0
  31
 0.0
   0
@@ -3643,35 +3527,33 @@ LINE
   8
 cut
  10
-553.0000000000001
+23.722756001629364
  20
-61.65427796513857
+70.0
  30
 0.0
  11
-493.00000000000006
+13.722756001629365
  21
-61.65427796513857
+70.0
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
-90
+cut
  10
-553.0000000000001
+59.86137800081469
  20
-88.65427796513858
+60.00000000000001
  30
 0.0
  11
-553.0000000000001
+59.86137800081469
  21
-61.65427796513857
+70.00000000000001
  31
 0.0
   0
@@ -3681,15 +3563,15 @@ LINE
   8
 cut
  10
-553.0000000000001
+83.86137800081468
  20
-88.65427796513858
+60.00000000000001
  30
 0.0
  11
-570.0000000000001
+59.86137800081469
  21
-88.65427796513858
+60.00000000000001
  31
 0.0
   0
@@ -3699,35 +3581,33 @@ LINE
   8
 cut
  10
-570.0000000000001
+83.86137800081468
  20
-61.65427796513857
+70.00000000000001
  30
 0.0
  11
-553.0000000000001
+83.86137800081468
  21
-61.65427796513857
+60.00000000000001
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
-90
+cut
  10
-570.0000000000001
+83.86137800081468
  20
-61.65427796513857
+141.0
  30
 0.0
  11
-570.0000000000001
+83.86137800081468
  21
-88.65427796513858
+131.0
  31
 0.0
   0
@@ -3737,15 +3617,15 @@ LINE
   8
 cut
  10
-580.0000000000001
+59.86137800081469
  20
-61.65427796513857
+141.0
  30
 0.0
  11
-570.0000000000001
+83.86137800081468
  21
-61.65427796513857
+141.0
  31
 0.0
   0
@@ -3755,15 +3635,15 @@ LINE
   8
 cut
  10
-580.0000000000001
+59.86137800081469
  20
-88.65427796513858
+131.0
  30
 0.0
  11
-580.0000000000001
+59.86137800081469
  21
-61.65427796513857
+141.0
  31
 0.0
   0
@@ -3773,15 +3653,15 @@ LINE
   8
 cut
  10
-570.0000000000001
+236.91666666666669
  20
-88.65427796513858
+17.74999999999997
  30
 0.0
  11
-580.0000000000001
+213.08333333333334
  21
-88.65427796513858
+17.74999999999997
  31
 0.0
   0
@@ -3791,15 +3671,15 @@ LINE
   8
 cut
  10
-270.43181818181824
+213.08333333333334
  20
-158.058556
+17.74999999999997
  30
 0.0
  11
-258.8409090909091
+213.08333333333334
  21
-158.058556
+17.249999999999975
  31
 0.0
   0
@@ -3809,15 +3689,15 @@ LINE
   8
 cut
  10
-258.8409090909091
+213.08333333333334
  20
-158.058556
+17.249999999999975
  30
 0.0
  11
-258.8409090909091
+236.91666666666669
  21
-157.55855600000004
+17.249999999999975
  31
 0.0
   0
@@ -3827,15 +3707,15 @@ LINE
   8
 cut
  10
-258.8409090909091
+236.91666666666669
  20
-157.55855600000004
+17.249999999999975
  30
 0.0
  11
-270.43181818181824
+236.91666666666669
  21
-157.55855600000004
+17.74999999999997
  31
 0.0
   0
@@ -3845,15 +3725,15 @@ LINE
   8
 cut
  10
-270.43181818181824
+102.50000000000001
  20
-157.55855600000004
+23.333333333333318
  30
 0.0
  11
-270.43181818181824
+114.1666666666667
  21
-158.058556
+23.333333333333318
  31
 0.0
   0
@@ -3863,15 +3743,15 @@ LINE
   8
 cut
  10
-298.159090909091
+114.1666666666667
  20
-158.058556
+23.333333333333318
  30
 0.0
  11
-286.56818181818187
+114.16666666666669
  21
-158.058556
+46.66666666666666
  31
 0.0
   0
@@ -3881,15 +3761,15 @@ LINE
   8
 cut
  10
-286.56818181818187
+114.16666666666669
  20
-158.058556
+46.66666666666666
  30
 0.0
  11
-286.56818181818187
+102.50000000000004
  21
-157.55855600000004
+46.66666666666666
  31
 0.0
   0
@@ -3899,15 +3779,15 @@ LINE
   8
 cut
  10
-286.56818181818187
+213.08333333333334
  20
-157.55855600000004
+350.25
  30
 0.0
  11
-298.159090909091
+236.91666666666666
  21
-157.55855600000004
+350.25
  31
 0.0
   0
@@ -3917,15 +3797,15 @@ LINE
   8
 cut
  10
-298.159090909091
+236.91666666666666
  20
-157.55855600000004
+350.25
  30
 0.0
  11
-298.159090909091
+236.91666666666666
  21
-158.058556
+350.75
  31
 0.0
   0
@@ -3935,15 +3815,15 @@ LINE
   8
 cut
  10
-326.75000000000006
+236.91666666666666
  20
-127.39188933333335
+350.75
  30
 0.0
  11
-326.75000000000006
+213.08333333333334
  21
-139.2252226666667
+350.75
  31
 0.0
   0
@@ -3953,15 +3833,15 @@ LINE
   8
 cut
  10
-326.75000000000006
+213.08333333333334
  20
-139.2252226666667
+350.75
  30
 0.0
  11
-326.25000000000006
+213.08333333333334
  21
-139.2252226666667
+350.25
  31
 0.0
   0
@@ -3971,15 +3851,15 @@ LINE
   8
 cut
  10
-326.25000000000006
+233.08333333333334
  20
-139.2252226666667
+350.25
  30
 0.0
  11
-326.25000000000006
+256.9166666666667
  21
-127.39188933333335
+350.25
  31
 0.0
   0
@@ -3989,15 +3869,15 @@ LINE
   8
 cut
  10
-326.25000000000006
+256.9166666666667
  20
-127.39188933333335
+350.25
  30
 0.0
  11
-326.75000000000006
+256.9166666666667
  21
-127.39188933333335
+350.75
  31
 0.0
   0
@@ -4007,15 +3887,15 @@ LINE
   8
 cut
  10
-335.25000000000006
+256.9166666666667
  20
-39.30855600000002
+350.75
  30
 0.0
  11
-326.75000000000006
+233.08333333333334
  21
-39.30855600000002
+350.75
  31
 0.0
   0
@@ -4025,15 +3905,15 @@ LINE
   8
 cut
  10
-326.75000000000006
+233.08333333333334
  20
-39.30855600000002
+350.75
  30
 0.0
  11
-326.75000000000006
+233.08333333333334
  21
-38.80855600000002
+350.25
  31
 0.0
   0
@@ -4043,15 +3923,15 @@ LINE
   8
 cut
  10
-326.75000000000006
+367.5
  20
-38.80855600000002
+344.6666666666668
  30
 0.0
  11
-335.25000000000006
+355.83333333333337
  21
-38.80855600000002
+344.6666666666668
  31
 0.0
   0
@@ -4061,15 +3941,15 @@ LINE
   8
 cut
  10
-335.25000000000006
+355.83333333333337
  20
-38.80855600000002
+344.6666666666668
  30
 0.0
  11
-335.25000000000006
+355.83333333333337
  21
-39.30855600000002
+321.3333333333334
  31
 0.0
   0
@@ -4079,15 +3959,15 @@ LINE
   8
 cut
  10
-362.00000000000006
+355.83333333333337
  20
-139.30855600000004
+321.3333333333334
  30
 0.0
  11
-358.00000000000006
+367.50000000000006
  21
-139.30855600000004
+321.3333333333334
  31
 0.0
   0
@@ -4097,15 +3977,15 @@ LINE
   8
 cut
  10
-358.00000000000006
+256.91666666666674
  20
-139.30855600000004
+17.749999999999915
  30
 0.0
  11
-358.00000000000006
+233.08333333333343
  21
-127.30855600000004
+17.74999999999989
  31
 0.0
   0
@@ -4115,15 +3995,15 @@ LINE
   8
 cut
  10
-358.00000000000006
+233.08333333333343
  20
-127.30855600000004
+17.74999999999989
  30
 0.0
  11
-362.00000000000006
+233.08333333333343
  21
-127.30855600000004
+17.249999999999886
  31
 0.0
   0
@@ -4133,15 +4013,15 @@ LINE
   8
 cut
  10
-362.00000000000006
+233.08333333333343
  20
-127.30855600000004
+17.249999999999886
  30
 0.0
  11
-362.00000000000006
+256.91666666666674
  21
-139.30855600000004
+17.24999999999992
  31
 0.0
   0
@@ -4151,15 +4031,15 @@ LINE
   8
 cut
  10
-350.0
+256.91666666666674
  20
-137.808556
+17.24999999999992
  30
 0.0
  11
-346.0
+256.91666666666674
  21
-137.808556
+17.749999999999915
  31
 0.0
   0
@@ -4169,15 +4049,15 @@ LINE
   8
 cut
  10
-346.0
+367.5000000000001
  20
-137.808556
+46.66666666666669
  30
 0.0
  11
-346.0
+355.8333333333334
  21
-128.808556
+46.66666666666666
  31
 0.0
   0
@@ -4187,15 +4067,15 @@ LINE
   8
 cut
  10
-346.0
+355.8333333333334
  20
-128.808556
+46.66666666666666
  30
 0.0
  11
-350.0
+355.8333333333334
  21
-128.808556
+23.333333333333346
  31
 0.0
   0
@@ -4205,15 +4085,15 @@ LINE
   8
 cut
  10
-350.0
+355.8333333333334
  20
-128.808556
+23.333333333333346
  30
 0.0
  11
-350.0
+367.50000000000006
  21
-137.808556
+23.333333333333346
  31
 0.0
   0
@@ -4223,15 +4103,15 @@ LINE
   8
 cut
  10
-386.5
+342.2500000000001
  20
-139.30855600000004
+92.43181818181819
  30
 0.0
  11
-363.5
+342.2500000000001
  21
-139.30855600000004
+80.84090909090908
  31
 0.0
   0
@@ -4241,15 +4121,15 @@ LINE
   8
 cut
  10
-363.5
+342.2500000000001
  20
-139.30855600000004
+80.84090909090908
  30
 0.0
  11
-363.5
+342.7500000000001
  21
-127.30855600000004
+80.84090909090908
  31
 0.0
   0
@@ -4259,15 +4139,15 @@ LINE
   8
 cut
  10
-363.5
+342.7500000000001
  20
-127.30855600000004
+80.84090909090908
  30
 0.0
  11
-386.5
+342.7500000000001
  21
-127.30855600000004
+92.43181818181819
  31
 0.0
   0
@@ -4277,15 +4157,15 @@ LINE
   8
 cut
  10
-386.5
+342.7500000000001
  20
-127.30855600000004
+92.43181818181819
  30
 0.0
  11
-386.5
+342.2500000000001
  21
-139.30855600000004
+92.43181818181819
  31
 0.0
   0
@@ -4295,15 +4175,15 @@ LINE
   8
 cut
  10
-392.00000000000006
+342.25000000000006
  20
-139.30855600000004
+120.15909090909092
  30
 0.0
  11
-388.00000000000006
+342.25000000000006
  21
-139.30855600000004
+108.56818181818183
  31
 0.0
   0
@@ -4313,15 +4193,15 @@ LINE
   8
 cut
  10
-388.00000000000006
+342.25000000000006
  20
-139.30855600000004
+108.56818181818183
  30
 0.0
  11
-388.00000000000006
+342.75000000000006
  21
-127.30855600000004
+108.56818181818183
  31
 0.0
   0
@@ -4331,15 +4211,15 @@ LINE
   8
 cut
  10
-388.00000000000006
+342.75000000000006
  20
-127.30855600000004
+108.56818181818183
  30
 0.0
  11
-392.00000000000006
+342.75000000000006
  21
-127.30855600000004
+120.15909090909092
  31
 0.0
   0
@@ -4349,15 +4229,15 @@ LINE
   8
 cut
  10
-392.00000000000006
+342.75000000000006
  20
-127.30855600000004
+120.15909090909092
  30
 0.0
  11
-392.00000000000006
+342.25000000000006
  21
-139.30855600000004
+120.15909090909092
  31
 0.0
   0
@@ -4367,15 +4247,15 @@ LINE
   8
 cut
  10
-414.50000000000006
+372.9166666666667
  20
-138.9752226666667
+148.75000000000003
  30
 0.0
  11
-409.5
+361.0833333333334
  21
-138.9752226666667
+148.75000000000003
  31
 0.0
   0
@@ -4385,15 +4265,15 @@ LINE
   8
 cut
  10
-409.5
+361.0833333333334
  20
-138.9752226666667
+148.75000000000003
  30
 0.0
  11
-409.5
+361.0833333333334
  21
-127.64188933333335
+148.25
  31
 0.0
   0
@@ -4403,15 +4283,15 @@ LINE
   8
 cut
  10
-409.5
+361.0833333333334
  20
-127.64188933333335
+148.25
  30
 0.0
  11
-414.50000000000006
+372.9166666666667
  21
-127.64188933333335
+148.25
  31
 0.0
   0
@@ -4421,15 +4301,15 @@ LINE
   8
 cut
  10
-475.50000000000006
+372.9166666666667
  20
-84.15427796513858
+148.25
  30
 0.0
  11
-472.50000000000006
+372.9166666666667
  21
-84.15427796513858
+148.75000000000003
  31
 0.0
   0
@@ -4439,15 +4319,15 @@ LINE
   8
 cut
  10
-472.50000000000006
+461.00000000000006
  20
-84.15427796513858
+157.25000000000009
  30
 0.0
  11
-472.50000000000006
+461.00000000000006
  21
-66.15427796513858
+148.75000000000009
  31
 0.0
   0
@@ -4457,15 +4337,15 @@ LINE
   8
 cut
  10
-472.50000000000006
+461.00000000000006
  20
-66.15427796513858
+148.75000000000009
  30
 0.0
  11
-475.50000000000006
+461.50000000000006
  21
-66.15427796513858
+148.75000000000009
  31
 0.0
   0
@@ -4475,15 +4355,15 @@ LINE
   8
 cut
  10
-475.50000000000006
+461.50000000000006
  20
-66.15427796513858
+148.75000000000009
  30
 0.0
  11
-475.50000000000006
+461.50000000000006
  21
-84.15427796513858
+157.25000000000009
  31
 0.0
   0
@@ -4493,15 +4373,15 @@ LINE
   8
 cut
  10
-423.75000000000006
+461.50000000000006
  20
-70.40427796513856
+157.25000000000009
  30
 0.0
  11
-423.75000000000006
+461.00000000000006
  21
-79.90427796513858
+157.25000000000009
  31
 0.0
   0
@@ -4511,15 +4391,15 @@ LINE
   8
 cut
  10
-423.75000000000006
+361.00000000000006
  20
-79.90427796513858
+184.00000000000003
  30
 0.0
  11
-423.25
+361.00000000000006
  21
-79.90427796513858
+180.00000000000006
  31
 0.0
   0
@@ -4529,15 +4409,15 @@ LINE
   8
 cut
  10
-423.25
+361.00000000000006
  20
-79.90427796513858
+180.00000000000006
  30
 0.0
  11
-423.25
+373.0
  21
-70.40427796513856
+180.00000000000006
  31
 0.0
   0
@@ -4547,15 +4427,15 @@ LINE
   8
 cut
  10
-423.25
+373.0
  20
-70.40427796513856
+180.00000000000006
  30
 0.0
  11
-423.75000000000006
+373.0
  21
-70.40427796513856
+184.00000000000003
  31
 0.0
   0
@@ -4565,15 +4445,15 @@ LINE
   8
 cut
  10
-456.25000000000006
+373.0
  20
-7.749999930277114
+184.00000000000003
  30
 0.0
  11
-435.75000000000006
+361.00000000000006
  21
-7.749999930277114
+184.00000000000003
  31
 0.0
   0
@@ -4583,15 +4463,15 @@ LINE
   8
 cut
  10
-435.75000000000006
+362.50000000000006
  20
-7.749999930277114
+172.00000000000003
  30
 0.0
  11
-435.75000000000006
+362.50000000000006
  21
-7.249999930277114
+168.0
  31
 0.0
   0
@@ -4601,15 +4481,15 @@ LINE
   8
 cut
  10
-435.75000000000006
+362.50000000000006
  20
-7.249999930277114
+168.0
  30
 0.0
  11
-456.25000000000006
+371.50000000000006
  21
-7.249999930277114
+168.00000000000003
  31
 0.0
   0
@@ -4619,15 +4499,15 @@ LINE
   8
 cut
  10
-456.25000000000006
+371.50000000000006
  20
-7.249999930277114
+168.00000000000003
  30
 0.0
  11
-456.25000000000006
+371.50000000000006
  21
-7.749999930277114
+172.00000000000006
  31
 0.0
   0
@@ -4637,15 +4517,15 @@ LINE
   8
 cut
  10
-479.00000000000006
+371.50000000000006
  20
-84.15427796513858
+172.00000000000006
  30
 0.0
  11
-476.00000000000006
+362.50000000000006
  21
-84.15427796513858
+172.00000000000003
  31
 0.0
   0
@@ -4655,15 +4535,15 @@ LINE
   8
 cut
  10
-476.00000000000006
+361.00000000000006
  20
-84.15427796513858
+208.50000000000006
  30
 0.0
  11
-476.00000000000006
+361.00000000000006
  21
-66.15427796513858
+185.50000000000006
  31
 0.0
   0
@@ -4673,15 +4553,15 @@ LINE
   8
 cut
  10
-476.00000000000006
+361.00000000000006
  20
-66.15427796513858
+185.50000000000006
  30
 0.0
  11
-479.00000000000006
+373.0
  21
-66.15427796513858
+185.50000000000006
  31
 0.0
   0
@@ -4691,15 +4571,15 @@ LINE
   8
 cut
  10
-479.00000000000006
+373.0
  20
-66.15427796513858
+185.50000000000006
  30
 0.0
  11
-479.00000000000006
+373.0
  21
-84.15427796513858
+208.50000000000006
  31
 0.0
   0
@@ -4709,15 +4589,15 @@ LINE
   8
 cut
  10
-577.5000000000001
+373.0
  20
-79.65427796513858
+208.50000000000006
  30
 0.0
  11
-572.5
+361.00000000000006
  21
-79.65427796513858
+208.50000000000006
  31
 0.0
   0
@@ -4727,15 +4607,15 @@ LINE
   8
 cut
  10
-572.5
+361.00000000000006
  20
-79.65427796513858
+214.00000000000006
  30
 0.0
  11
-572.5
+361.00000000000006
  21
-70.65427796513858
+210.00000000000006
  31
 0.0
   0
@@ -4745,95 +4625,87 @@ LINE
   8
 cut
  10
-572.5
+361.00000000000006
  20
-70.65427796513858
+210.00000000000006
  30
 0.0
  11
-577.5000000000001
+373.0
  21
-70.65427796513858
+210.00000000000006
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
-90
+cut
  10
-623.0000000000001
+373.0
  20
-138.30855600000004
+210.00000000000006
  30
 0.0
  11
-684.0000000000001
+373.0
  21
-138.30855600000004
+214.00000000000006
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
-90
+cut
  10
-684.0000000000001
+373.0
  20
-138.30855600000004
+214.00000000000006
  30
 0.0
  11
-684.0000000000001
+361.00000000000006
  21
-162.308556
+214.00000000000006
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
-90
+cut
  10
-684.0000000000001
+361.3333333333334
  20
-162.308556
+236.50000000000003
  30
 0.0
  11
-623.0000000000001
+361.3333333333334
  21
-162.308556
+231.50000000000006
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
-90
+cut
  10
-623.0000000000001
+361.3333333333334
  20
-162.308556
+231.50000000000006
  30
 0.0
  11
-623.0000000000001
+372.6666666666667
  21
-138.30855600000004
+231.50000000000006
  31
 0.0
   0
@@ -4843,15 +4715,15 @@ LINE
   8
 cut
  10
-623.0000000000001
+372.6666666666667
  20
-131.30855600000004
+231.50000000000006
  30
 0.0
  11
-623.0000000000001
+372.6666666666667
  21
-138.30855600000004
+236.50000000000003
  31
 0.0
   0
@@ -4861,15 +4733,15 @@ LINE
   8
 cut
  10
-683.0
+416.15427803486153
  20
-131.30855600000004
+297.5000000000001
  30
 0.0
  11
-623.0000000000001
+416.15427803486153
  21
-131.30855600000004
+294.5000000000001
  31
 0.0
   0
@@ -4879,15 +4751,15 @@ LINE
   8
 cut
  10
-683.0
+416.15427803486153
  20
-138.30855600000004
+294.5000000000001
  30
 0.0
  11
-683.0
+434.15427803486153
  21
-131.30855600000004
+294.5000000000001
  31
 0.0
   0
@@ -4897,15 +4769,15 @@ LINE
   8
 cut
  10
-691.0
+434.15427803486153
  20
-138.30855600000004
+294.5000000000001
  30
 0.0
  11
-684.0000000000001
+434.15427803486153
  21
-138.30855600000004
+297.5000000000001
  31
 0.0
   0
@@ -4915,15 +4787,15 @@ LINE
   8
 cut
  10
-691.0
+434.15427803486153
  20
-162.308556
+297.5000000000001
  30
 0.0
  11
-691.0
+416.15427803486153
  21
-138.30855600000004
+297.5000000000001
  31
 0.0
   0
@@ -4933,35 +4805,33 @@ LINE
   8
 cut
  10
-684.0000000000001
+429.90427803486153
  20
-162.308556
+245.75000000000009
  30
 0.0
  11
-691.0
+420.40427803486153
  21
-162.308556
+245.75000000000009
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
-90
+cut
  10
-684.0000000000001
+420.40427803486153
  20
-162.308556
+245.75000000000009
  30
 0.0
  11
-684.0000000000001
+420.40427803486153
  21
-223.30855600000004
+245.25000000000009
  31
 0.0
   0
@@ -4971,35 +4841,33 @@ LINE
   8
 cut
  10
-624.0000000000001
+420.40427803486153
  20
-223.30855600000004
+245.25000000000009
  30
 0.0
  11
-684.0000000000001
+429.90427803486153
  21
-223.30855600000004
+245.25000000000009
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
-90
+cut
  10
-624.0000000000001
+429.90427803486153
  20
-162.308556
+245.25000000000009
  30
 0.0
  11
-624.0000000000001
+429.90427803486153
  21
-223.30855600000004
+245.75000000000009
  31
 0.0
   0
@@ -5009,35 +4877,33 @@ LINE
   8
 cut
  10
-708.0000000000001
+492.55855606972295
  20
-162.308556
+278.25000000000017
  30
 0.0
  11
-684.0000000000001
+492.55855606972295
  21
-162.308556
+257.75000000000017
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
-90
+cut
  10
-708.0000000000001
+492.55855606972295
  20
-162.308556
+257.75000000000017
  30
 0.0
  11
-708.0000000000001
+493.05855606972295
  21
-223.30855600000004
+257.75000000000017
  31
 0.0
   0
@@ -5047,15 +4913,15 @@ LINE
   8
 cut
  10
-684.0000000000001
+493.05855606972295
  20
-223.30855600000004
+257.75000000000017
  30
 0.0
  11
-708.0000000000001
+493.05855606972295
  21
-223.30855600000004
+278.25000000000017
  31
 0.0
   0
@@ -5065,15 +4931,15 @@ LINE
   8
 cut
  10
-768.0000000000001
+493.05855606972295
  20
-162.308556
+278.25000000000017
  30
 0.0
  11
-708.0000000000001
+492.55855606972295
  21
-162.308556
+278.25000000000017
  31
 0.0
   0
@@ -5083,15 +4949,15 @@ LINE
   8
 cut
  10
-768.0000000000001
+416.1542780348615
  20
-223.30855600000004
+301.0000000000001
  30
 0.0
  11
-768.0000000000001
+416.1542780348615
  21
-162.308556
+298.0000000000001
  31
 0.0
   0
@@ -5101,15 +4967,15 @@ LINE
   8
 cut
  10
-708.0000000000001
+416.1542780348615
  20
-223.30855600000004
+298.0000000000001
  30
 0.0
  11
-768.0000000000001
+434.1542780348615
  21
-223.30855600000004
+298.0000000000001
  31
 0.0
   0
@@ -5119,15 +4985,15 @@ LINE
   8
 cut
  10
-624.0000000000001
+434.1542780348615
  20
-162.308556
+298.0000000000001
  30
 0.0
  11
-600.0
+434.1542780348615
  21
-162.308556
+301.0000000000001
  31
 0.0
   0
@@ -5137,35 +5003,33 @@ LINE
   8
 cut
  10
-600.0
+434.1542780348615
  20
-223.30855600000004
+301.0000000000001
  30
 0.0
  11
-624.0000000000001
+416.1542780348615
  21
-223.30855600000004
+301.0000000000001
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
-90
+cut
  10
-600.0
+420.6542780348614
  20
-223.30855600000004
+399.5000000000001
  30
 0.0
  11
-600.0
+420.6542780348614
  21
-162.308556
+394.50000000000017
  31
 0.0
   0
@@ -5175,15 +5039,15 @@ LINE
   8
 cut
  10
-590.0
+420.6542780348614
  20
-223.30855600000004
+394.50000000000017
  30
 0.0
  11
-600.0
+429.65427803486136
  21
-223.30855600000004
+394.50000000000017
  31
 0.0
   0
@@ -5193,15 +5057,15 @@ LINE
   8
 cut
  10
-590.0
+429.65427803486136
  20
-162.308556
+394.50000000000017
  30
 0.0
  11
-590.0
+429.65427803486136
  21
-223.30855600000004
+399.5000000000001
  31
 0.0
   0
@@ -5211,15 +5075,15 @@ LINE
   8
 cut
  10
-600.0
+102.50000000000001
  20
-162.308556
+321.33333333333337
  30
 0.0
  11
-590.0
+114.16666666666667
  21
-162.308556
+321.33333333333337
  31
 0.0
   0
@@ -5229,15 +5093,15 @@ LINE
   8
 cut
  10
-616.0000000000001
+114.16666666666667
  20
-162.308556
+321.33333333333337
  30
 0.0
  11
-623.0000000000001
+114.16666666666667
  21
-162.308556
+344.6666666666667
  31
 0.0
   0
@@ -5247,15 +5111,15 @@ LINE
   8
 cut
  10
-616.0000000000001
+114.16666666666667
  20
-138.30855600000004
+344.6666666666667
  30
 0.0
  11
-616.0000000000001
+102.50000000000001
  21
-162.308556
+344.6666666666667
  31
 0.0
   0
@@ -5265,15 +5129,15 @@ LINE
   8
 cut
  10
-623.0000000000001
+112.5
  20
-138.30855600000004
+258.0
  30
 0.0
  11
-616.0000000000001
+112.5
  21
-138.30855600000004
+253.00000000000003
  31
 0.0
   0
@@ -5283,15 +5147,15 @@ LINE
   8
 cut
  10
-672.0909090909092
+112.5
  20
-133.058556
+253.00000000000003
  30
 0.0
  11
-675.5909090909091
+117.5
  21
-133.058556
+258.0
  31
 0.0
   0
@@ -5301,15 +5165,15 @@ LINE
   8
 cut
  10
-675.5909090909091
+117.5
  20
-133.058556
+258.0
  30
 0.0
  11
-672.0909090909092
+117.5
  21
-136.55855600000004
+278.0
  31
 0.0
   0
@@ -5319,15 +5183,15 @@ LINE
   8
 cut
  10
-672.0909090909092
+117.5
  20
-136.55855600000004
+278.0
  30
 0.0
  11
-661.1818181818181
+112.5
  21
-136.55855600000004
+283.0
  31
 0.0
   0
@@ -5337,15 +5201,15 @@ LINE
   8
 cut
  10
-661.1818181818181
+112.5
  20
-136.55855600000004
+283.0
  30
 0.0
  11
-657.6818181818184
+112.5
  21
-133.058556
+278.0
  31
 0.0
   0
@@ -5355,15 +5219,15 @@ LINE
   8
 cut
  10
-657.6818181818184
+108.91666666666669
  20
-133.058556
+148.75000000000003
  30
 0.0
  11
-661.1818181818181
+97.08333333333336
  21
-133.058556
+148.75000000000003
  31
 0.0
   0
@@ -5373,15 +5237,15 @@ LINE
   8
 cut
  10
-644.818181818182
+97.08333333333336
  20
-133.058556
+148.75000000000003
  30
 0.0
  11
-648.3181818181819
+97.08333333333336
  21
-133.058556
+148.25
  31
 0.0
   0
@@ -5391,15 +5255,15 @@ LINE
   8
 cut
  10
-648.3181818181819
+97.08333333333336
  20
-133.058556
+148.25
  30
 0.0
  11
-644.818181818182
+108.91666666666669
  21
-136.55855600000004
+148.25
  31
 0.0
   0
@@ -5409,15 +5273,15 @@ LINE
   8
 cut
  10
-644.818181818182
+108.91666666666669
  20
-136.55855600000004
+148.25
  30
 0.0
  11
-633.9090909090909
+108.91666666666669
  21
-136.55855600000004
+148.75000000000003
  31
 0.0
   0
@@ -5427,15 +5291,15 @@ LINE
   8
 cut
  10
-633.9090909090909
+1.2500000000000002
  20
-136.55855600000004
+149.00000000000003
  30
 0.0
  11
-630.409090909091
+1.2500000000000002
  21
-133.058556
+146.50000000000003
  31
 0.0
   0
@@ -5445,15 +5309,15 @@ LINE
   8
 cut
  10
-630.409090909091
+1.2500000000000002
  20
-133.058556
+146.50000000000003
  30
 0.0
  11
-633.9090909090909
+3.7500000000000004
  21
-133.058556
+149.00000000000003
  31
 0.0
   0
@@ -5463,15 +5327,15 @@ LINE
   8
 cut
  10
-689.2500000000001
+3.7500000000000004
  20
-154.30855600000004
+149.00000000000003
  30
 0.0
  11
-685.75
+3.7500000000000004
  21
-154.30855600000004
+157.0
  31
 0.0
   0
@@ -5481,15 +5345,15 @@ LINE
   8
 cut
  10
-685.75
+3.7500000000000004
  20
-154.30855600000004
+157.0
  30
 0.0
  11
-685.75
+1.2500000000000002
  21
-146.308556
+159.5
  31
 0.0
   0
@@ -5499,15 +5363,15 @@ LINE
   8
 cut
  10
-685.75
+1.2500000000000002
  20
-146.308556
+159.5
  30
 0.0
  11
-689.2500000000001
+1.2500000000000002
  21
-146.308556
+157.0
  31
 0.0
   0
@@ -5517,15 +5381,15 @@ LINE
   8
 cut
  10
-631.5000000000001
+97.00000000000001
  20
-213.80855600000004
+184.00000000000003
  30
 0.0
  11
-631.5000000000001
+97.00000000000001
  21
-195.80855600000004
+180.0
  31
 0.0
   0
@@ -5535,15 +5399,15 @@ LINE
   8
 cut
  10
-631.5000000000001
+97.00000000000001
  20
-195.80855600000004
+180.0
  30
 0.0
  11
-666.5000000000001
+109.00000000000001
  21
-195.80855600000004
+180.0
  31
 0.0
   0
@@ -5553,15 +5417,15 @@ LINE
   8
 cut
  10
-666.5000000000001
+109.00000000000001
  20
-195.80855600000004
+180.0
  30
 0.0
  11
-666.5000000000001
+109.00000000000001
  21
-213.80855600000004
+184.00000000000003
  31
 0.0
   0
@@ -5571,15 +5435,15 @@ LINE
   8
 cut
  10
-666.5000000000001
+109.00000000000001
  20
-213.80855600000004
+184.00000000000003
  30
 0.0
  11
-631.5000000000001
+97.00000000000001
  21
-213.80855600000004
+184.00000000000003
  31
 0.0
   0
@@ -5589,15 +5453,15 @@ LINE
   8
 cut
  10
-684.5000000000001
+98.50000000000001
  20
-175.55855600000004
+172.00000000000003
  30
 0.0
  11
-684.5000000000001
+98.50000000000001
  21
-172.55855600000004
+168.0
  31
 0.0
   0
@@ -5607,15 +5471,15 @@ LINE
   8
 cut
  10
-684.5000000000001
+98.50000000000001
  20
-172.55855600000004
+168.0
  30
 0.0
  11
-687.5000000000001
+107.50000000000001
  21
-172.55855600000004
+168.0
  31
 0.0
   0
@@ -5625,15 +5489,15 @@ LINE
   8
 cut
  10
-687.5000000000001
+107.50000000000001
  20
-172.55855600000004
+168.0
  30
 0.0
  11
-687.5000000000001
+107.50000000000001
  21
-175.55855600000004
+172.00000000000003
  31
 0.0
   0
@@ -5643,15 +5507,15 @@ LINE
   8
 cut
  10
-687.5000000000001
+107.50000000000001
  20
-175.55855600000004
+172.00000000000003
  30
 0.0
  11
-684.5000000000001
+98.50000000000001
  21
-175.55855600000004
+172.00000000000003
  31
 0.0
   0
@@ -5661,15 +5525,15 @@ LINE
   8
 cut
  10
-705.5000000000001
+97.00000000000001
  20
-174.55855600000004
+208.50000000000003
  30
 0.0
  11
-705.5000000000001
+97.00000000000001
  21
-173.55855600000004
+185.50000000000003
  31
 0.0
   0
@@ -5679,15 +5543,15 @@ LINE
   8
 cut
  10
-705.5000000000001
+97.00000000000001
  20
-173.55855600000004
+185.50000000000003
  30
 0.0
  11
-706.5000000000001
+109.00000000000001
  21
-173.55855600000004
+185.50000000000003
  31
 0.0
   0
@@ -5697,15 +5561,15 @@ LINE
   8
 cut
  10
-706.5000000000001
+109.00000000000001
  20
-173.55855600000004
+185.50000000000003
  30
 0.0
  11
-706.5000000000001
+109.00000000000001
  21
-174.55855600000004
+208.50000000000003
  31
 0.0
   0
@@ -5715,15 +5579,15 @@ LINE
   8
 cut
  10
-706.5000000000001
+109.00000000000001
  20
-174.55855600000004
+208.50000000000003
  30
 0.0
  11
-705.5000000000001
+97.00000000000001
  21
-174.55855600000004
+208.50000000000003
  31
 0.0
   0
@@ -5733,15 +5597,15 @@ LINE
   8
 cut
  10
-685.5000000000001
+97.00000000000001
  20
-177.05855600000004
+214.0
  30
 0.0
  11
-685.5000000000001
+97.00000000000001
  21
-176.058556
+210.00000000000003
  31
 0.0
   0
@@ -5751,15 +5615,15 @@ LINE
   8
 cut
  10
-685.5000000000001
+97.00000000000001
  20
-176.058556
+210.00000000000003
  30
 0.0
  11
-686.5000000000001
+109.00000000000001
  21
-176.058556
+210.00000000000003
  31
 0.0
   0
@@ -5769,15 +5633,15 @@ LINE
   8
 cut
  10
-686.5000000000001
+109.00000000000001
  20
-176.058556
+210.00000000000003
  30
 0.0
  11
-686.5000000000001
+109.00000000000001
  21
-177.05855600000004
+214.0
  31
 0.0
   0
@@ -5787,15 +5651,15 @@ LINE
   8
 cut
  10
-686.5000000000001
+109.00000000000001
  20
-177.05855600000004
+214.0
  30
 0.0
  11
-685.5000000000001
+97.00000000000001
  21
-177.05855600000004
+214.0
  31
 0.0
   0
@@ -5805,15 +5669,15 @@ LINE
   8
 cut
  10
-705.5000000000001
+97.33333333333336
  20
-177.05855600000004
+236.50000000000003
  30
 0.0
  11
-705.5000000000001
+97.33333333333336
  21
-176.058556
+231.50000000000003
  31
 0.0
   0
@@ -5823,15 +5687,15 @@ LINE
   8
 cut
  10
-705.5000000000001
+97.33333333333336
  20
-176.058556
+231.50000000000003
  30
 0.0
  11
-706.5000000000001
+108.66666666666669
  21
-176.058556
+231.50000000000003
  31
 0.0
   0
@@ -5841,15 +5705,15 @@ LINE
   8
 cut
  10
-706.5000000000001
+108.66666666666669
  20
-176.058556
+231.50000000000003
  30
 0.0
  11
-706.5000000000001
+108.66666666666669
  21
-177.05855600000004
+236.50000000000003
  31
 0.0
   0
@@ -5859,15 +5723,15 @@ LINE
   8
 cut
  10
-706.5000000000001
+65.36137800081468
  20
-177.05855600000004
+113.00000000000001
  30
 0.0
  11
-705.5000000000001
+65.36137800081468
  21
-177.05855600000004
+102.00000000000001
  31
 0.0
   0
@@ -5877,15 +5741,15 @@ LINE
   8
 cut
  10
-685.5000000000001
+65.36137800081468
  20
-179.55855600000004
+102.00000000000001
  30
 0.0
  11
-685.5000000000001
+78.36137800081468
  21
-178.558556
+102.00000000000001
  31
 0.0
   0
@@ -5895,15 +5759,15 @@ LINE
   8
 cut
  10
-685.5000000000001
+78.36137800081468
  20
-178.558556
+102.00000000000001
  30
 0.0
  11
-686.5000000000001
+78.36137800081468
  21
-178.558556
+113.00000000000001
  31
 0.0
   0
@@ -5913,15 +5777,15 @@ LINE
   8
 cut
  10
-686.5000000000001
+78.36137800081468
  20
-178.558556
+113.00000000000001
  30
 0.0
  11
-686.5000000000001
+65.36137800081468
  21
-179.55855600000004
+113.00000000000001
  31
 0.0
   0
@@ -5931,15 +5795,15 @@ LINE
   8
 cut
  10
-686.5000000000001
+66.8613780008147
  20
-179.55855600000004
+81.50000000000001
  30
 0.0
  11
-685.5000000000001
+66.8613780008147
  21
-179.55855600000004
+75.50000000000001
  31
 0.0
   0
@@ -5949,15 +5813,15 @@ LINE
   8
 cut
  10
-705.5000000000001
+66.8613780008147
  20
-179.55855600000004
+75.50000000000001
  30
 0.0
  11
-705.5000000000001
+76.8613780008147
  21
-178.558556
+75.50000000000001
  31
 0.0
   0
@@ -5967,15 +5831,15 @@ LINE
   8
 cut
  10
-705.5000000000001
+76.8613780008147
  20
-178.558556
+75.50000000000001
  30
 0.0
  11
-706.5000000000001
+76.8613780008147
  21
-178.558556
+81.50000000000001
  31
 0.0
   0
@@ -5985,15 +5849,15 @@ LINE
   8
 cut
  10
-706.5000000000001
+76.8613780008147
  20
-178.558556
+81.50000000000001
  30
 0.0
  11
-706.5000000000001
+66.8613780008147
  21
-179.55855600000004
+81.50000000000001
  31
 0.0
   0
@@ -6003,15 +5867,15 @@ LINE
   8
 cut
  10
-706.5000000000001
+16.222756001629364
  20
-179.55855600000004
+81.0909090909091
  30
 0.0
  11
-705.5000000000001
+21.222756001629367
  21
-179.55855600000004
+81.0909090909091
  31
 0.0
   0
@@ -6021,15 +5885,15 @@ LINE
   8
 cut
  10
-685.5000000000001
+21.222756001629367
  20
-182.05855600000004
+81.0909090909091
  30
 0.0
  11
-685.5000000000001
+21.222756001629367
  21
-181.058556
+92.18181818181819
  31
 0.0
   0
@@ -6039,15 +5903,15 @@ LINE
   8
 cut
  10
-685.5000000000001
+21.222756001629367
  20
-181.058556
+92.18181818181819
  30
 0.0
  11
-686.5000000000001
+16.222756001629364
  21
-181.058556
+92.18181818181819
  31
 0.0
   0
@@ -6057,15 +5921,15 @@ LINE
   8
 cut
  10
-686.5000000000001
+16.222756001629364
  20
-181.058556
+108.81818181818183
  30
 0.0
  11
-686.5000000000001
+21.222756001629367
  21
-182.05855600000004
+108.81818181818183
  31
 0.0
   0
@@ -6075,15 +5939,15 @@ LINE
   8
 cut
  10
-686.5000000000001
+21.222756001629367
  20
-182.05855600000004
+108.81818181818183
  30
 0.0
  11
-685.5000000000001
+21.222756001629367
  21
-182.05855600000004
+119.90909090909092
  31
 0.0
   0
@@ -6093,15 +5957,15 @@ LINE
   8
 cut
  10
-705.5000000000001
+21.222756001629367
  20
-182.05855600000004
+119.90909090909092
  30
 0.0
  11
-705.5000000000001
+16.222756001629364
  21
-181.058556
+119.90909090909092
  31
 0.0
   0
@@ -6111,15 +5975,15 @@ LINE
   8
 cut
  10
-705.5000000000001
+75.86137800081468
  20
-181.058556
+62.50000000000001
  30
 0.0
  11
-706.5000000000001
+75.86137800081468
  21
-181.058556
+67.50000000000001
  31
 0.0
   0
@@ -6129,15 +5993,15 @@ LINE
   8
 cut
  10
-706.5000000000001
+75.86137800081468
  20
-181.058556
+67.50000000000001
  30
 0.0
  11
-706.5000000000001
+67.86137800081468
  21
-182.05855600000004
+67.50000000000001
  31
 0.0
   0
@@ -6147,15 +6011,15 @@ LINE
   8
 cut
  10
-706.5000000000001
+67.86137800081468
  20
-182.05855600000004
+67.50000000000001
  30
 0.0
  11
-705.5000000000001
+67.86137800081468
  21
-182.05855600000004
+62.50000000000001
  31
 0.0
   0
@@ -6165,15 +6029,15 @@ LINE
   8
 cut
  10
-685.5000000000001
+67.86137800081468
  20
-184.55855600000004
+138.5
  30
 0.0
  11
-685.5000000000001
+67.86137800081468
  21
-183.55855600000004
+133.5
  31
 0.0
   0
@@ -6183,15 +6047,15 @@ LINE
   8
 cut
  10
-685.5000000000001
+67.86137800081468
  20
-183.55855600000004
+133.5
  30
 0.0
  11
-686.5000000000001
+75.86137800081468
  21
-183.55855600000004
+133.5
  31
 0.0
   0
@@ -6201,87 +6065,95 @@ LINE
   8
 cut
  10
-686.5000000000001
+75.86137800081468
  20
-183.55855600000004
+133.5
  30
 0.0
  11
-686.5000000000001
+75.86137800081468
  21
-184.55855600000004
+138.5
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
-cut
+90
  10
-686.5000000000001
+543.3085560697231
  20
-184.55855600000004
+172.00000000000003
  30
 0.0
  11
-685.5000000000001
+604.308556069723
  21
-184.55855600000004
+172.00000000000003
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
-cut
+90
  10
-705.5000000000001
+604.308556069723
  20
-184.55855600000004
+172.00000000000003
  30
 0.0
  11
-705.5000000000001
+604.308556069723
  21
-183.55855600000004
+196.00000000000003
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
-cut
+90
  10
-705.5000000000001
+604.308556069723
  20
-183.55855600000004
+196.00000000000003
  30
 0.0
  11
-706.5000000000001
+543.3085560697231
  21
-183.55855600000004
+196.00000000000003
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
-cut
+90
  10
-706.5000000000001
+543.3085560697231
  20
-183.55855600000004
+196.00000000000003
  30
 0.0
  11
-706.5000000000001
+543.3085560697231
  21
-184.55855600000004
+172.00000000000003
  31
 0.0
   0
@@ -6291,15 +6163,15 @@ LINE
   8
 cut
  10
-706.5000000000001
+543.3085560697231
  20
-184.55855600000004
+165.00000000000003
  30
 0.0
  11
-705.5000000000001
+543.3085560697231
  21
-184.55855600000004
+172.00000000000003
  31
 0.0
   0
@@ -6309,15 +6181,15 @@ LINE
   8
 cut
  10
-685.5000000000001
+603.308556069723
  20
-187.05855600000004
+165.00000000000003
  30
 0.0
  11
-685.5000000000001
+543.3085560697231
  21
-186.05855600000004
+165.00000000000003
  31
 0.0
   0
@@ -6327,15 +6199,15 @@ LINE
   8
 cut
  10
-685.5000000000001
+603.308556069723
  20
-186.05855600000004
+172.00000000000003
  30
 0.0
  11
-686.5000000000001
+603.308556069723
  21
-186.05855600000004
+165.00000000000003
  31
 0.0
   0
@@ -6345,15 +6217,15 @@ LINE
   8
 cut
  10
-686.5000000000001
+611.308556069723
  20
-186.05855600000004
+172.00000000000003
  30
 0.0
  11
-686.5000000000001
+604.308556069723
  21
-187.05855600000004
+172.00000000000003
  31
 0.0
   0
@@ -6363,15 +6235,15 @@ LINE
   8
 cut
  10
-686.5000000000001
+611.308556069723
  20
-187.05855600000004
+196.00000000000003
  30
 0.0
  11
-685.5000000000001
+611.308556069723
  21
-187.05855600000004
+172.00000000000003
  31
 0.0
   0
@@ -6381,33 +6253,35 @@ LINE
   8
 cut
  10
-705.5000000000001
+604.308556069723
  20
-187.05855600000004
+196.00000000000003
  30
 0.0
  11
-705.5000000000001
+611.308556069723
  21
-186.05855600000004
+196.00000000000003
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
-cut
+90
  10
-705.5000000000001
+604.308556069723
  20
-186.05855600000004
+196.00000000000003
  30
 0.0
  11
-706.5000000000001
+604.308556069723
  21
-186.05855600000004
+257.00000000000006
  31
 0.0
   0
@@ -6417,33 +6291,35 @@ LINE
   8
 cut
  10
-706.5000000000001
+544.3085560697231
  20
-186.05855600000004
+257.00000000000006
  30
 0.0
  11
-706.5000000000001
+604.308556069723
  21
-187.05855600000004
+257.00000000000006
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
-cut
+90
  10
-706.5000000000001
+544.3085560697231
  20
-187.05855600000004
+196.00000000000003
  30
 0.0
  11
-705.5000000000001
+544.3085560697231
  21
-187.05855600000004
+257.00000000000006
  31
 0.0
   0
@@ -6453,33 +6329,35 @@ LINE
   8
 cut
  10
-685.5000000000001
+628.3085560697231
  20
-189.55855600000004
+196.00000000000003
  30
 0.0
  11
-685.5000000000001
+604.308556069723
  21
-188.55855600000004
+196.00000000000003
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
-cut
+90
  10
-685.5000000000001
+628.3085560697231
  20
-188.55855600000004
+196.00000000000003
  30
 0.0
  11
-686.5000000000001
+628.3085560697231
  21
-188.55855600000004
+257.00000000000006
  31
 0.0
   0
@@ -6489,15 +6367,15 @@ LINE
   8
 cut
  10
-686.5000000000001
+604.308556069723
  20
-188.55855600000004
+257.00000000000006
  30
 0.0
  11
-686.5000000000001
+628.3085560697231
  21
-189.55855600000004
+257.00000000000006
  31
 0.0
   0
@@ -6507,15 +6385,15 @@ LINE
   8
 cut
  10
-686.5000000000001
+688.3085560697231
  20
-189.55855600000004
+196.00000000000003
  30
 0.0
  11
-685.5000000000001
+628.3085560697231
  21
-189.55855600000004
+196.00000000000003
  31
 0.0
   0
@@ -6525,15 +6403,15 @@ LINE
   8
 cut
  10
-705.5000000000001
+688.3085560697231
  20
-189.55855600000004
+257.00000000000006
  30
 0.0
  11
-705.5000000000001
+688.3085560697231
  21
-188.55855600000004
+196.00000000000003
  31
 0.0
   0
@@ -6543,15 +6421,15 @@ LINE
   8
 cut
  10
-705.5000000000001
+628.3085560697231
  20
-188.55855600000004
+257.00000000000006
  30
 0.0
  11
-706.5000000000001
+688.3085560697231
  21
-188.55855600000004
+257.00000000000006
  31
 0.0
   0
@@ -6561,15 +6439,15 @@ LINE
   8
 cut
  10
-706.5000000000001
+544.3085560697231
  20
-188.55855600000004
+196.00000000000003
  30
 0.0
  11
-706.5000000000001
+520.3085560697231
  21
-189.55855600000004
+196.00000000000003
  31
 0.0
   0
@@ -6579,33 +6457,35 @@ LINE
   8
 cut
  10
-706.5000000000001
+520.3085560697231
  20
-189.55855600000004
+257.00000000000006
  30
 0.0
  11
-705.5000000000001
+544.3085560697231
  21
-189.55855600000004
+257.00000000000006
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
-cut
+90
  10
-685.5000000000001
+520.3085560697231
  20
-192.058556
+257.00000000000006
  30
 0.0
  11
-685.5000000000001
+520.3085560697231
  21
-191.05855600000004
+196.00000000000003
  31
 0.0
   0
@@ -6615,15 +6495,15 @@ LINE
   8
 cut
  10
-685.5000000000001
+510.308556069723
  20
-191.05855600000004
+257.00000000000006
  30
 0.0
  11
-686.5000000000001
+520.3085560697231
  21
-191.05855600000004
+257.00000000000006
  31
 0.0
   0
@@ -6633,15 +6513,15 @@ LINE
   8
 cut
  10
-686.5000000000001
+510.308556069723
  20
-191.05855600000004
+196.00000000000003
  30
 0.0
  11
-686.5000000000001
+510.308556069723
  21
-192.058556
+257.00000000000006
  31
 0.0
   0
@@ -6651,15 +6531,15 @@ LINE
   8
 cut
  10
-686.5000000000001
+520.3085560697231
  20
-192.058556
+196.00000000000003
  30
 0.0
  11
-685.5000000000001
+510.308556069723
  21
-192.058556
+196.00000000000003
  31
 0.0
   0
@@ -6669,15 +6549,15 @@ LINE
   8
 cut
  10
-705.5000000000001
+536.308556069723
  20
-192.058556
+196.00000000000003
  30
 0.0
  11
-705.5000000000001
+543.3085560697231
  21
-191.05855600000004
+196.00000000000003
  31
 0.0
   0
@@ -6687,15 +6567,15 @@ LINE
   8
 cut
  10
-705.5000000000001
+536.308556069723
  20
-191.05855600000004
+172.00000000000003
  30
 0.0
  11
-706.5000000000001
+536.308556069723
  21
-191.05855600000004
+196.00000000000003
  31
 0.0
   0
@@ -6705,15 +6585,15 @@ LINE
   8
 cut
  10
-706.5000000000001
+543.3085560697231
  20
-191.05855600000004
+172.00000000000003
  30
 0.0
  11
-706.5000000000001
+536.308556069723
  21
-192.058556
+172.00000000000003
  31
 0.0
   0
@@ -6723,15 +6603,15 @@ LINE
   8
 cut
  10
-706.5000000000001
+592.3994651606322
  20
-192.058556
+166.75000000000003
  30
 0.0
  11
-705.5000000000001
+595.8994651606321
  21
-192.058556
+166.75000000000003
  31
 0.0
   0
@@ -6741,15 +6621,15 @@ LINE
   8
 cut
  10
-685.5000000000001
+595.8994651606321
  20
-194.558556
+166.75000000000003
  30
 0.0
  11
-685.5000000000001
+592.3994651606322
  21
-193.55855600000004
+170.25000000000003
  31
 0.0
   0
@@ -6759,15 +6639,15 @@ LINE
   8
 cut
  10
-685.5000000000001
+592.3994651606322
  20
-193.55855600000004
+170.25000000000003
  30
 0.0
  11
-686.5000000000001
+581.4903742515411
  21
-193.55855600000004
+170.25000000000003
  31
 0.0
   0
@@ -6777,15 +6657,15 @@ LINE
   8
 cut
  10
-686.5000000000001
+581.4903742515411
  20
-193.55855600000004
+170.25000000000003
  30
 0.0
  11
-686.5000000000001
+577.9903742515413
  21
-194.558556
+166.75000000000003
  31
 0.0
   0
@@ -6795,15 +6675,15 @@ LINE
   8
 cut
  10
-686.5000000000001
+577.9903742515413
  20
-194.558556
+166.75000000000003
  30
 0.0
  11
-685.5000000000001
+581.4903742515411
  21
-194.558556
+166.75000000000003
  31
 0.0
   0
@@ -6813,15 +6693,15 @@ LINE
   8
 cut
  10
-705.5000000000001
+565.1267378879049
  20
-194.558556
+166.75000000000003
  30
 0.0
  11
-705.5000000000001
+568.6267378879048
  21
-193.55855600000004
+166.75000000000003
  31
 0.0
   0
@@ -6831,15 +6711,15 @@ LINE
   8
 cut
  10
-705.5000000000001
+568.6267378879048
  20
-193.55855600000004
+166.75000000000003
  30
 0.0
  11
-706.5000000000001
+565.1267378879049
  21
-193.55855600000004
+170.25000000000003
  31
 0.0
   0
@@ -6849,15 +6729,15 @@ LINE
   8
 cut
  10
-706.5000000000001
+565.1267378879049
  20
-193.55855600000004
+170.25000000000003
  30
 0.0
  11
-706.5000000000001
+554.2176469788138
  21
-194.558556
+170.25000000000003
  31
 0.0
   0
@@ -6867,15 +6747,15 @@ LINE
   8
 cut
  10
-706.5000000000001
+554.2176469788138
  20
-194.558556
+170.25000000000003
  30
 0.0
  11
-705.5000000000001
+550.717646978814
  21
-194.558556
+166.75000000000003
  31
 0.0
   0
@@ -6885,15 +6765,15 @@ LINE
   8
 cut
  10
-685.5000000000001
+550.717646978814
  20
-197.05855600000004
+166.75000000000003
  30
 0.0
  11
-685.5000000000001
+554.2176469788138
  21
-196.05855600000004
+166.75000000000003
  31
 0.0
   0
@@ -6903,15 +6783,15 @@ LINE
   8
 cut
  10
-685.5000000000001
+609.5585560697231
  20
-196.05855600000004
+188.00000000000003
  30
 0.0
  11
-686.5000000000001
+606.058556069723
  21
-196.05855600000004
+188.00000000000003
  31
 0.0
   0
@@ -6921,15 +6801,15 @@ LINE
   8
 cut
  10
-686.5000000000001
+606.058556069723
  20
-196.05855600000004
+188.00000000000003
  30
 0.0
  11
-686.5000000000001
+606.058556069723
  21
-197.05855600000004
+180.0
  31
 0.0
   0
@@ -6939,15 +6819,15 @@ LINE
   8
 cut
  10
-686.5000000000001
+606.058556069723
  20
-197.05855600000004
+180.0
  30
 0.0
  11
-685.5000000000001
+609.5585560697231
  21
-197.05855600000004
+180.0
  31
 0.0
   0
@@ -6957,15 +6837,15 @@ LINE
   8
 cut
  10
-705.5000000000001
+551.8085560697231
  20
-197.05855600000004
+247.50000000000003
  30
 0.0
  11
-705.5000000000001
+551.8085560697231
  21
-196.05855600000004
+229.50000000000003
  31
 0.0
   0
@@ -6975,15 +6855,15 @@ LINE
   8
 cut
  10
-705.5000000000001
+551.8085560697231
  20
-196.05855600000004
+229.50000000000003
  30
 0.0
  11
-706.5000000000001
+586.8085560697231
  21
-196.05855600000004
+229.50000000000003
  31
 0.0
   0
@@ -6993,15 +6873,15 @@ LINE
   8
 cut
  10
-706.5000000000001
+586.8085560697231
  20
-196.05855600000004
+229.50000000000003
  30
 0.0
  11
-706.5000000000001
+586.8085560697231
  21
-197.05855600000004
+247.50000000000003
  31
 0.0
   0
@@ -7011,15 +6891,15 @@ LINE
   8
 cut
  10
-706.5000000000001
+586.8085560697231
  20
-197.05855600000004
+247.50000000000003
  30
 0.0
  11
-705.5000000000001
+551.8085560697231
  21
-197.05855600000004
+247.50000000000003
  31
 0.0
   0
@@ -7029,15 +6909,15 @@ LINE
   8
 cut
  10
-685.5000000000001
+604.8085560697231
  20
-199.55855600000004
+209.25
  30
 0.0
  11
-685.5000000000001
+604.8085560697231
  21
-198.55855600000004
+206.25000000000003
  31
 0.0
   0
@@ -7047,15 +6927,15 @@ LINE
   8
 cut
  10
-685.5000000000001
+604.8085560697231
  20
-198.55855600000004
+206.25000000000003
  30
 0.0
  11
-686.5000000000001
+607.8085560697231
  21
-198.55855600000004
+206.25000000000003
  31
 0.0
   0
@@ -7065,15 +6945,15 @@ LINE
   8
 cut
  10
-686.5000000000001
+607.8085560697231
  20
-198.55855600000004
+206.25000000000003
  30
 0.0
  11
-686.5000000000001
+607.8085560697231
  21
-199.55855600000004
+209.25
  31
 0.0
   0
@@ -7083,15 +6963,15 @@ LINE
   8
 cut
  10
-686.5000000000001
+607.8085560697231
  20
-199.55855600000004
+209.25
  30
 0.0
  11
-685.5000000000001
+604.8085560697231
  21
-199.55855600000004
+209.25
  31
 0.0
   0
@@ -7101,15 +6981,15 @@ LINE
   8
 cut
  10
-705.5000000000001
+625.8085560697231
  20
-199.55855600000004
+208.25000000000003
  30
 0.0
  11
-705.5000000000001
+625.8085560697231
  21
-198.55855600000004
+207.25000000000003
  31
 0.0
   0
@@ -7119,15 +6999,15 @@ LINE
   8
 cut
  10
-705.5000000000001
+625.8085560697231
  20
-198.55855600000004
+207.25000000000003
  30
 0.0
  11
-706.5000000000001
+626.8085560697231
  21
-198.55855600000004
+207.25000000000003
  31
 0.0
   0
@@ -7137,15 +7017,15 @@ LINE
   8
 cut
  10
-706.5000000000001
+626.8085560697231
  20
-198.55855600000004
+207.25000000000003
  30
 0.0
  11
-706.5000000000001
+626.8085560697231
  21
-199.55855600000004
+208.25000000000003
  31
 0.0
   0
@@ -7155,15 +7035,15 @@ LINE
   8
 cut
  10
-706.5000000000001
+626.8085560697231
  20
-199.55855600000004
+208.25000000000003
  30
 0.0
  11
-705.5000000000001
+625.8085560697231
  21
-199.55855600000004
+208.25000000000003
  31
 0.0
   0
@@ -7173,15 +7053,15 @@ LINE
   8
 cut
  10
-685.5000000000001
+605.8085560697231
  20
-202.05855600000004
+210.75000000000003
  30
 0.0
  11
-685.5000000000001
+605.8085560697231
  21
-201.058556
+209.75000000000003
  31
 0.0
   0
@@ -7191,15 +7071,15 @@ LINE
   8
 cut
  10
-685.5000000000001
+605.8085560697231
  20
-201.058556
+209.75000000000003
  30
 0.0
  11
-686.5000000000001
+606.8085560697231
  21
-201.058556
+209.75000000000003
  31
 0.0
   0
@@ -7209,15 +7089,15 @@ LINE
   8
 cut
  10
-686.5000000000001
+606.8085560697231
  20
-201.058556
+209.75000000000003
  30
 0.0
  11
-686.5000000000001
+606.8085560697231
  21
-202.05855600000004
+210.75000000000003
  31
 0.0
   0
@@ -7227,15 +7107,15 @@ LINE
   8
 cut
  10
-686.5000000000001
+606.8085560697231
  20
-202.05855600000004
+210.75000000000003
  30
 0.0
  11
-685.5000000000001
+605.8085560697231
  21
-202.05855600000004
+210.75000000000003
  31
 0.0
   0
@@ -7245,15 +7125,15 @@ LINE
   8
 cut
  10
-705.5000000000001
+625.8085560697231
  20
-202.05855600000004
+210.75000000000003
  30
 0.0
  11
-705.5000000000001
+625.8085560697231
  21
-201.058556
+209.75000000000003
  31
 0.0
   0
@@ -7263,15 +7143,15 @@ LINE
   8
 cut
  10
-705.5000000000001
+625.8085560697231
  20
-201.058556
+209.75000000000003
  30
 0.0
  11
-706.5000000000001
+626.8085560697231
  21
-201.058556
+209.75000000000003
  31
 0.0
   0
@@ -7281,15 +7161,15 @@ LINE
   8
 cut
  10
-706.5000000000001
+626.8085560697231
  20
-201.058556
+209.75000000000003
  30
 0.0
  11
-706.5000000000001
+626.8085560697231
  21
-202.05855600000004
+210.75000000000003
  31
 0.0
   0
@@ -7299,15 +7179,15 @@ LINE
   8
 cut
  10
-706.5000000000001
+626.8085560697231
  20
-202.05855600000004
+210.75000000000003
  30
 0.0
  11
-705.5000000000001
+625.8085560697231
  21
-202.05855600000004
+210.75000000000003
  31
 0.0
   0
@@ -7317,15 +7197,15 @@ LINE
   8
 cut
  10
-685.5000000000001
+605.8085560697231
  20
-204.55855600000004
+213.25000000000003
  30
 0.0
  11
-685.5000000000001
+605.8085560697231
  21
-203.558556
+212.25000000000003
  31
 0.0
   0
@@ -7335,15 +7215,15 @@ LINE
   8
 cut
  10
-685.5000000000001
+605.8085560697231
  20
-203.558556
+212.25000000000003
  30
 0.0
  11
-686.5000000000001
+606.8085560697231
  21
-203.558556
+212.25000000000003
  31
 0.0
   0
@@ -7353,15 +7233,15 @@ LINE
   8
 cut
  10
-686.5000000000001
+606.8085560697231
  20
-203.558556
+212.25000000000003
  30
 0.0
  11
-686.5000000000001
+606.8085560697231
  21
-204.55855600000004
+213.25000000000003
  31
 0.0
   0
@@ -7371,15 +7251,15 @@ LINE
   8
 cut
  10
-686.5000000000001
+606.8085560697231
  20
-204.55855600000004
+213.25000000000003
  30
 0.0
  11
-685.5000000000001
+605.8085560697231
  21
-204.55855600000004
+213.25000000000003
  31
 0.0
   0
@@ -7389,15 +7269,15 @@ LINE
   8
 cut
  10
-705.5000000000001
+625.8085560697231
  20
-204.55855600000004
+213.25000000000003
  30
 0.0
  11
-705.5000000000001
+625.8085560697231
  21
-203.558556
+212.25000000000003
  31
 0.0
   0
@@ -7407,15 +7287,15 @@ LINE
   8
 cut
  10
-705.5000000000001
+625.8085560697231
  20
-203.558556
+212.25000000000003
  30
 0.0
  11
-706.5000000000001
+626.8085560697231
  21
-203.558556
+212.25000000000003
  31
 0.0
   0
@@ -7425,15 +7305,15 @@ LINE
   8
 cut
  10
-706.5000000000001
+626.8085560697231
  20
-203.558556
+212.25000000000003
  30
 0.0
  11
-706.5000000000001
+626.8085560697231
  21
-204.55855600000004
+213.25000000000003
  31
 0.0
   0
@@ -7443,15 +7323,15 @@ LINE
   8
 cut
  10
-706.5000000000001
+626.8085560697231
  20
-204.55855600000004
+213.25000000000003
  30
 0.0
  11
-705.5000000000001
+625.8085560697231
  21
-204.55855600000004
+213.25000000000003
  31
 0.0
   0
@@ -7461,15 +7341,15 @@ LINE
   8
 cut
  10
-685.5000000000001
+605.8085560697231
  20
-207.05855600000004
+215.75000000000003
  30
 0.0
  11
-685.5000000000001
+605.8085560697231
  21
-206.05855600000004
+214.75000000000003
  31
 0.0
   0
@@ -7479,15 +7359,15 @@ LINE
   8
 cut
  10
-685.5000000000001
+605.8085560697231
  20
-206.05855600000004
+214.75000000000003
  30
 0.0
  11
-686.5000000000001
+606.8085560697231
  21
-206.05855600000004
+214.75000000000003
  31
 0.0
   0
@@ -7497,15 +7377,15 @@ LINE
   8
 cut
  10
-686.5000000000001
+606.8085560697231
  20
-206.05855600000004
+214.75000000000003
  30
 0.0
  11
-686.5000000000001
+606.8085560697231
  21
-207.05855600000004
+215.75000000000003
  31
 0.0
   0
@@ -7515,15 +7395,15 @@ LINE
   8
 cut
  10
-686.5000000000001
+606.8085560697231
  20
-207.05855600000004
+215.75000000000003
  30
 0.0
  11
-685.5000000000001
+605.8085560697231
  21
-207.05855600000004
+215.75000000000003
  31
 0.0
   0
@@ -7533,15 +7413,15 @@ LINE
   8
 cut
  10
-705.5000000000001
+625.8085560697231
  20
-207.05855600000004
+215.75000000000003
  30
 0.0
  11
-705.5000000000001
+625.8085560697231
  21
-206.05855600000004
+214.75000000000003
  31
 0.0
   0
@@ -7551,15 +7431,15 @@ LINE
   8
 cut
  10
-705.5000000000001
+625.8085560697231
  20
-206.05855600000004
+214.75000000000003
  30
 0.0
  11
-706.5000000000001
+626.8085560697231
  21
-206.05855600000004
+214.75000000000003
  31
 0.0
   0
@@ -7569,15 +7449,15 @@ LINE
   8
 cut
  10
-706.5000000000001
+626.8085560697231
  20
-206.05855600000004
+214.75000000000003
  30
 0.0
  11
-706.5000000000001
+626.8085560697231
  21
-207.05855600000004
+215.75000000000003
  31
 0.0
   0
@@ -7587,15 +7467,15 @@ LINE
   8
 cut
  10
-706.5000000000001
+626.8085560697231
  20
-207.05855600000004
+215.75000000000003
  30
 0.0
  11
-705.5000000000001
+625.8085560697231
  21
-207.05855600000004
+215.75000000000003
  31
 0.0
   0
@@ -7605,15 +7485,15 @@ LINE
   8
 cut
  10
-685.5000000000001
+605.8085560697231
  20
-209.55855600000004
+218.25000000000003
  30
 0.0
  11
-685.5000000000001
+605.8085560697231
  21
-208.55855600000004
+217.25000000000003
  31
 0.0
   0
@@ -7623,15 +7503,15 @@ LINE
   8
 cut
  10
-685.5000000000001
+605.8085560697231
  20
-208.55855600000004
+217.25000000000003
  30
 0.0
  11
-686.5000000000001
+606.8085560697231
  21
-208.55855600000004
+217.25000000000003
  31
 0.0
   0
@@ -7641,15 +7521,15 @@ LINE
   8
 cut
  10
-686.5000000000001
+606.8085560697231
  20
-208.55855600000004
+217.25000000000003
  30
 0.0
  11
-686.5000000000001
+606.8085560697231
  21
-209.55855600000004
+218.25000000000003
  31
 0.0
   0
@@ -7659,15 +7539,15 @@ LINE
   8
 cut
  10
-686.5000000000001
+606.8085560697231
  20
-209.55855600000004
+218.25000000000003
  30
 0.0
  11
-685.5000000000001
+605.8085560697231
  21
-209.55855600000004
+218.25000000000003
  31
 0.0
   0
@@ -7677,15 +7557,15 @@ LINE
   8
 cut
  10
-705.5000000000001
+625.8085560697231
  20
-209.55855600000004
+218.25000000000003
  30
 0.0
  11
-705.5000000000001
+625.8085560697231
  21
-208.55855600000004
+217.25000000000003
  31
 0.0
   0
@@ -7695,15 +7575,15 @@ LINE
   8
 cut
  10
-705.5000000000001
+625.8085560697231
  20
-208.55855600000004
+217.25000000000003
  30
 0.0
  11
-706.5000000000001
+626.8085560697231
  21
-208.55855600000004
+217.25000000000003
  31
 0.0
   0
@@ -7713,15 +7593,15 @@ LINE
   8
 cut
  10
-706.5000000000001
+626.8085560697231
  20
-208.55855600000004
+217.25000000000003
  30
 0.0
  11
-706.5000000000001
+626.8085560697231
  21
-209.55855600000004
+218.25000000000003
  31
 0.0
   0
@@ -7731,15 +7611,15 @@ LINE
   8
 cut
  10
-706.5000000000001
+626.8085560697231
  20
-209.55855600000004
+218.25000000000003
  30
 0.0
  11
-705.5000000000001
+625.8085560697231
  21
-209.55855600000004
+218.25000000000003
  31
 0.0
   0
@@ -7749,15 +7629,15 @@ LINE
   8
 cut
  10
-685.5000000000001
+605.8085560697231
  20
-212.05855600000004
+220.75
  30
 0.0
  11
-685.5000000000001
+605.8085560697231
  21
-211.05855600000004
+219.75000000000003
  31
 0.0
   0
@@ -7767,15 +7647,15 @@ LINE
   8
 cut
  10
-685.5000000000001
+605.8085560697231
  20
-211.05855600000004
+219.75000000000003
  30
 0.0
  11
-686.5000000000001
+606.8085560697231
  21
-211.05855600000004
+219.75000000000003
  31
 0.0
   0
@@ -7785,15 +7665,15 @@ LINE
   8
 cut
  10
-686.5000000000001
+606.8085560697231
  20
-211.05855600000004
+219.75000000000003
  30
 0.0
  11
-686.5000000000001
+606.8085560697231
  21
-212.05855600000004
+220.75
  31
 0.0
   0
@@ -7803,15 +7683,15 @@ LINE
   8
 cut
  10
-686.5000000000001
+606.8085560697231
  20
-212.05855600000004
+220.75
  30
 0.0
  11
-685.5000000000001
+605.8085560697231
  21
-212.05855600000004
+220.75
  31
 0.0
   0
@@ -7821,15 +7701,15 @@ LINE
   8
 cut
  10
-704.5000000000001
+625.8085560697231
  20
-213.05855600000004
+220.75
  30
 0.0
  11
-704.5000000000001
+625.8085560697231
  21
-210.05855600000004
+219.75000000000003
  31
 0.0
   0
@@ -7839,15 +7719,15 @@ LINE
   8
 cut
  10
-704.5000000000001
+625.8085560697231
  20
-210.05855600000004
+219.75000000000003
  30
 0.0
  11
-707.5000000000001
+626.8085560697231
  21
-210.05855600000004
+219.75000000000003
  31
 0.0
   0
@@ -7857,15 +7737,15 @@ LINE
   8
 cut
  10
-707.5000000000001
+626.8085560697231
  20
-210.05855600000004
+219.75000000000003
  30
 0.0
  11
-707.5000000000001
+626.8085560697231
  21
-213.05855600000004
+220.75
  31
 0.0
   0
@@ -7875,15 +7755,15 @@ LINE
   8
 cut
  10
-707.5000000000001
+626.8085560697231
  20
-213.05855600000004
+220.75
  30
 0.0
  11
-704.5000000000001
+625.8085560697231
  21
-213.05855600000004
+220.75
  31
 0.0
   0
@@ -7893,15 +7773,15 @@ LINE
   8
 cut
  10
-700.2500000000001
+605.8085560697231
  20
-170.05855600000004
+223.25000000000003
  30
 0.0
  11
-691.7500000000001
+605.8085560697231
  21
-170.05855600000004
+222.25000000000003
  31
 0.0
   0
@@ -7911,15 +7791,15 @@ LINE
   8
 cut
  10
-691.7500000000001
+605.8085560697231
  20
-170.05855600000004
+222.25000000000003
  30
 0.0
  11
-691.7500000000001
+606.8085560697231
  21
-169.558556
+222.25000000000003
  31
 0.0
   0
@@ -7929,15 +7809,15 @@ LINE
   8
 cut
  10
-691.7500000000001
+606.8085560697231
  20
-169.558556
+222.25000000000003
  30
 0.0
  11
-700.2500000000001
+606.8085560697231
  21
-169.558556
+223.25000000000003
  31
 0.0
   0
@@ -7947,15 +7827,15 @@ LINE
   8
 cut
  10
-700.2500000000001
+606.8085560697231
  20
-169.558556
+223.25000000000003
  30
 0.0
  11
-700.2500000000001
+605.8085560697231
  21
-170.05855600000004
+223.25000000000003
  31
 0.0
   0
@@ -7965,15 +7845,15 @@ LINE
   8
 cut
  10
-691.7500000000001
+625.8085560697231
  20
-217.80855600000004
+223.25000000000003
  30
 0.0
  11
-700.2500000000001
+625.8085560697231
  21
-217.80855600000004
+222.25000000000003
  31
 0.0
   0
@@ -7983,15 +7863,15 @@ LINE
   8
 cut
  10
-700.2500000000001
+625.8085560697231
  20
-217.80855600000004
+222.25000000000003
  30
 0.0
  11
-700.2500000000001
+626.8085560697231
  21
-218.30855600000004
+222.25000000000003
  31
 0.0
   0
@@ -8001,15 +7881,15 @@ LINE
   8
 cut
  10
-700.2500000000001
+626.8085560697231
  20
-218.30855600000004
+222.25000000000003
  30
 0.0
  11
-691.7500000000001
+626.8085560697231
  21
-218.30855600000004
+223.25000000000003
  31
 0.0
   0
@@ -8019,15 +7899,15 @@ LINE
   8
 cut
  10
-691.7500000000001
+626.8085560697231
  20
-218.30855600000004
+223.25000000000003
  30
 0.0
  11
-691.7500000000001
+625.8085560697231
  21
-217.80855600000004
+223.25000000000003
  31
 0.0
   0
@@ -8037,15 +7917,15 @@ LINE
   8
 cut
  10
-723.0000000000001
+605.8085560697231
  20
-213.30855600000004
+225.75000000000003
  30
 0.0
  11
-723.0000000000001
+605.8085560697231
  21
-200.30855600000004
+224.75000000000003
  31
 0.0
   0
@@ -8055,15 +7935,15 @@ LINE
   8
 cut
  10
-723.0000000000001
+605.8085560697231
  20
-200.30855600000004
+224.75000000000003
  30
 0.0
  11
-753.0000000000001
+606.8085560697231
  21
-200.30855600000004
+224.75000000000003
  31
 0.0
   0
@@ -8073,15 +7953,15 @@ LINE
   8
 cut
  10
-753.0000000000001
+606.8085560697231
  20
-200.30855600000004
+224.75000000000003
  30
 0.0
  11
-753.0000000000001
+606.8085560697231
  21
-213.30855600000004
+225.75000000000003
  31
 0.0
   0
@@ -8091,15 +7971,15 @@ LINE
   8
 cut
  10
-753.0000000000001
+606.8085560697231
  20
-213.30855600000004
+225.75000000000003
  30
 0.0
  11
-723.0000000000001
+605.8085560697231
  21
-213.30855600000004
+225.75000000000003
  31
 0.0
   0
@@ -8109,15 +7989,15 @@ LINE
   8
 cut
  10
-730.0681818181819
+625.8085560697231
  20
-167.80855600000004
+225.75000000000003
  30
 0.0
  11
-718.659090909091
+625.8085560697231
  21
-167.80855600000004
+224.75000000000003
  31
 0.0
   0
@@ -8127,15 +8007,15 @@ LINE
   8
 cut
  10
-718.659090909091
+625.8085560697231
  20
-167.80855600000004
+224.75000000000003
  30
 0.0
  11
-718.659090909091
+626.8085560697231
  21
-167.308556
+224.75000000000003
  31
 0.0
   0
@@ -8145,15 +8025,15 @@ LINE
   8
 cut
  10
-718.659090909091
+626.8085560697231
  20
-167.308556
+224.75000000000003
  30
 0.0
  11
-730.0681818181819
+626.8085560697231
  21
-167.308556
+225.75000000000003
  31
 0.0
   0
@@ -8163,15 +8043,15 @@ LINE
   8
 cut
  10
-730.0681818181819
+626.8085560697231
  20
-167.308556
+225.75000000000003
  30
 0.0
  11
-730.0681818181819
+625.8085560697231
  21
-167.80855600000004
+225.75000000000003
  31
 0.0
   0
@@ -8181,15 +8061,15 @@ LINE
   8
 cut
  10
-757.3409090909092
+605.8085560697231
  20
-167.80855600000004
+228.25000000000003
  30
 0.0
  11
-745.9318181818182
+605.8085560697231
  21
-167.80855600000004
+227.25000000000003
  31
 0.0
   0
@@ -8199,15 +8079,15 @@ LINE
   8
 cut
  10
-745.9318181818182
+605.8085560697231
  20
-167.80855600000004
+227.25000000000003
  30
 0.0
  11
-745.9318181818182
+606.8085560697231
  21
-167.308556
+227.25000000000003
  31
 0.0
   0
@@ -8217,15 +8097,15 @@ LINE
   8
 cut
  10
-745.9318181818182
+606.8085560697231
  20
-167.308556
+227.25000000000003
  30
 0.0
  11
-757.3409090909092
+606.8085560697231
  21
-167.308556
+228.25000000000003
  31
 0.0
   0
@@ -8235,15 +8115,15 @@ LINE
   8
 cut
  10
-757.3409090909092
+606.8085560697231
  20
-167.308556
+228.25000000000003
  30
 0.0
  11
-757.3409090909092
+605.8085560697231
  21
-167.80855600000004
+228.25000000000003
  31
 0.0
   0
@@ -8253,15 +8133,15 @@ LINE
   8
 cut
  10
-760.25
+625.8085560697231
  20
-184.74037418181823
+228.25000000000003
  30
 0.0
  11
-760.25
+625.8085560697231
  21
-173.14946509090913
+227.25000000000003
  31
 0.0
   0
@@ -8271,15 +8151,15 @@ LINE
   8
 cut
  10
-760.25
+625.8085560697231
  20
-173.14946509090913
+227.25000000000003
  30
 0.0
  11
-760.75
+626.8085560697231
  21
-173.14946509090913
+227.25000000000003
  31
 0.0
   0
@@ -8289,15 +8169,15 @@ LINE
   8
 cut
  10
-760.75
+626.8085560697231
  20
-173.14946509090913
+227.25000000000003
  30
 0.0
  11
-760.75
+626.8085560697231
  21
-184.74037418181823
+228.25000000000003
  31
 0.0
   0
@@ -8307,15 +8187,15 @@ LINE
   8
 cut
  10
-760.75
+626.8085560697231
  20
-184.74037418181823
+228.25000000000003
  30
 0.0
  11
-760.25
+625.8085560697231
  21
-184.74037418181823
+228.25000000000003
  31
 0.0
   0
@@ -8325,15 +8205,15 @@ LINE
   8
 cut
  10
-760.25
+605.8085560697231
  20
-212.46764690909094
+230.75000000000003
  30
 0.0
  11
-760.25
+605.8085560697231
  21
-200.87673781818185
+229.75
  31
 0.0
   0
@@ -8343,15 +8223,15 @@ LINE
   8
 cut
  10
-760.25
+605.8085560697231
  20
-200.87673781818185
+229.75
  30
 0.0
  11
-760.75
+606.8085560697231
  21
-200.87673781818185
+229.75
  31
 0.0
   0
@@ -8361,15 +8241,15 @@ LINE
   8
 cut
  10
-760.75
+606.8085560697231
  20
-200.87673781818185
+229.75
  30
 0.0
  11
-760.75
+606.8085560697231
  21
-212.46764690909094
+230.75000000000003
  31
 0.0
   0
@@ -8379,15 +8259,15 @@ LINE
   8
 cut
  10
-760.75
+606.8085560697231
  20
-212.46764690909094
+230.75000000000003
  30
 0.0
  11
-760.25
+605.8085560697231
  21
-212.46764690909094
+230.75000000000003
  31
 0.0
   0
@@ -8397,15 +8277,15 @@ LINE
   8
 cut
  10
-600.5
+625.8085560697231
  20
-175.55855600000004
+230.75000000000003
  30
 0.0
  11
-600.5
+625.8085560697231
  21
-172.55855600000004
+229.75
  31
 0.0
   0
@@ -8415,15 +8295,15 @@ LINE
   8
 cut
  10
-600.5
+625.8085560697231
  20
-172.55855600000004
+229.75
  30
 0.0
  11
-603.5000000000001
+626.8085560697231
  21
-172.55855600000004
+229.75
  31
 0.0
   0
@@ -8433,15 +8313,15 @@ LINE
   8
 cut
  10
-603.5000000000001
+626.8085560697231
  20
-172.55855600000004
+229.75
  30
 0.0
  11
-603.5000000000001
+626.8085560697231
  21
-175.55855600000004
+230.75000000000003
  31
 0.0
   0
@@ -8451,15 +8331,15 @@ LINE
   8
 cut
  10
-603.5000000000001
+626.8085560697231
  20
-175.55855600000004
+230.75000000000003
  30
 0.0
  11
-600.5
+625.8085560697231
  21
-175.55855600000004
+230.75000000000003
  31
 0.0
   0
@@ -8469,15 +8349,15 @@ LINE
   8
 cut
  10
-621.5000000000001
+605.8085560697231
  20
-174.55855600000004
+233.25000000000003
  30
 0.0
  11
-621.5000000000001
+605.8085560697231
  21
-173.55855600000004
+232.25000000000003
  31
 0.0
   0
@@ -8487,15 +8367,15 @@ LINE
   8
 cut
  10
-621.5000000000001
+605.8085560697231
  20
-173.55855600000004
+232.25000000000003
  30
 0.0
  11
-622.5000000000001
+606.8085560697231
  21
-173.55855600000004
+232.25000000000003
  31
 0.0
   0
@@ -8505,15 +8385,15 @@ LINE
   8
 cut
  10
-622.5000000000001
+606.8085560697231
  20
-173.55855600000004
+232.25000000000003
  30
 0.0
  11
-622.5000000000001
+606.8085560697231
  21
-174.55855600000004
+233.25000000000003
  31
 0.0
   0
@@ -8523,15 +8403,15 @@ LINE
   8
 cut
  10
-622.5000000000001
+606.8085560697231
  20
-174.55855600000004
+233.25000000000003
  30
 0.0
  11
-621.5000000000001
+605.8085560697231
  21
-174.55855600000004
+233.25000000000003
  31
 0.0
   0
@@ -8541,15 +8421,15 @@ LINE
   8
 cut
  10
-601.5
+625.8085560697231
  20
-177.05855600000004
+233.25000000000003
  30
 0.0
  11
-601.5
+625.8085560697231
  21
-176.058556
+232.25000000000003
  31
 0.0
   0
@@ -8559,15 +8439,15 @@ LINE
   8
 cut
  10
-601.5
+625.8085560697231
  20
-176.058556
+232.25000000000003
  30
 0.0
  11
-602.5000000000001
+626.8085560697231
  21
-176.058556
+232.25000000000003
  31
 0.0
   0
@@ -8577,15 +8457,15 @@ LINE
   8
 cut
  10
-602.5000000000001
+626.8085560697231
  20
-176.058556
+232.25000000000003
  30
 0.0
  11
-602.5000000000001
+626.8085560697231
  21
-177.05855600000004
+233.25000000000003
  31
 0.0
   0
@@ -8595,15 +8475,15 @@ LINE
   8
 cut
  10
-602.5000000000001
+626.8085560697231
  20
-177.05855600000004
+233.25000000000003
  30
 0.0
  11
-601.5
+625.8085560697231
  21
-177.05855600000004
+233.25000000000003
  31
 0.0
   0
@@ -8613,15 +8493,15 @@ LINE
   8
 cut
  10
-621.5000000000001
+605.8085560697231
  20
-177.05855600000004
+235.75000000000003
  30
 0.0
  11
-621.5000000000001
+605.8085560697231
  21
-176.058556
+234.75000000000003
  31
 0.0
   0
@@ -8631,15 +8511,15 @@ LINE
   8
 cut
  10
-621.5000000000001
+605.8085560697231
  20
-176.058556
+234.75000000000003
  30
 0.0
  11
-622.5000000000001
+606.8085560697231
  21
-176.058556
+234.75000000000003
  31
 0.0
   0
@@ -8649,15 +8529,15 @@ LINE
   8
 cut
  10
-622.5000000000001
+606.8085560697231
  20
-176.058556
+234.75000000000003
  30
 0.0
  11
-622.5000000000001
+606.8085560697231
  21
-177.05855600000004
+235.75000000000003
  31
 0.0
   0
@@ -8667,15 +8547,15 @@ LINE
   8
 cut
  10
-622.5000000000001
+606.8085560697231
  20
-177.05855600000004
+235.75000000000003
  30
 0.0
  11
-621.5000000000001
+605.8085560697231
  21
-177.05855600000004
+235.75000000000003
  31
 0.0
   0
@@ -8685,15 +8565,15 @@ LINE
   8
 cut
  10
-601.5
+625.8085560697231
  20
-179.55855600000004
+235.75000000000003
  30
 0.0
  11
-601.5
+625.8085560697231
  21
-178.558556
+234.75000000000003
  31
 0.0
   0
@@ -8703,15 +8583,15 @@ LINE
   8
 cut
  10
-601.5
+625.8085560697231
  20
-178.558556
+234.75000000000003
  30
 0.0
  11
-602.5000000000001
+626.8085560697231
  21
-178.558556
+234.75000000000003
  31
 0.0
   0
@@ -8721,15 +8601,15 @@ LINE
   8
 cut
  10
-602.5000000000001
+626.8085560697231
  20
-178.558556
+234.75000000000003
  30
 0.0
  11
-602.5000000000001
+626.8085560697231
  21
-179.55855600000004
+235.75000000000003
  31
 0.0
   0
@@ -8739,15 +8619,15 @@ LINE
   8
 cut
  10
-602.5000000000001
+626.8085560697231
  20
-179.55855600000004
+235.75000000000003
  30
 0.0
  11
-601.5
+625.8085560697231
  21
-179.55855600000004
+235.75000000000003
  31
 0.0
   0
@@ -8757,15 +8637,15 @@ LINE
   8
 cut
  10
-621.5000000000001
+605.8085560697231
  20
-179.55855600000004
+238.25000000000003
  30
 0.0
  11
-621.5000000000001
+605.8085560697231
  21
-178.558556
+237.25000000000003
  31
 0.0
   0
@@ -8775,15 +8655,15 @@ LINE
   8
 cut
  10
-621.5000000000001
+605.8085560697231
  20
-178.558556
+237.25000000000003
  30
 0.0
  11
-622.5000000000001
+606.8085560697231
  21
-178.558556
+237.25000000000003
  31
 0.0
   0
@@ -8793,15 +8673,15 @@ LINE
   8
 cut
  10
-622.5000000000001
+606.8085560697231
  20
-178.558556
+237.25000000000003
  30
 0.0
  11
-622.5000000000001
+606.8085560697231
  21
-179.55855600000004
+238.25000000000003
  31
 0.0
   0
@@ -8811,15 +8691,15 @@ LINE
   8
 cut
  10
-622.5000000000001
+606.8085560697231
  20
-179.55855600000004
+238.25000000000003
  30
 0.0
  11
-621.5000000000001
+605.8085560697231
  21
-179.55855600000004
+238.25000000000003
  31
 0.0
   0
@@ -8829,15 +8709,15 @@ LINE
   8
 cut
  10
-601.5
+625.8085560697231
  20
-182.05855600000004
+238.25000000000003
  30
 0.0
  11
-601.5
+625.8085560697231
  21
-181.058556
+237.25000000000003
  31
 0.0
   0
@@ -8847,15 +8727,15 @@ LINE
   8
 cut
  10
-601.5
+625.8085560697231
  20
-181.058556
+237.25000000000003
  30
 0.0
  11
-602.5000000000001
+626.8085560697231
  21
-181.058556
+237.25000000000003
  31
 0.0
   0
@@ -8865,15 +8745,15 @@ LINE
   8
 cut
  10
-602.5000000000001
+626.8085560697231
  20
-181.058556
+237.25000000000003
  30
 0.0
  11
-602.5000000000001
+626.8085560697231
  21
-182.05855600000004
+238.25000000000003
  31
 0.0
   0
@@ -8883,15 +8763,15 @@ LINE
   8
 cut
  10
-602.5000000000001
+626.8085560697231
  20
-182.05855600000004
+238.25000000000003
  30
 0.0
  11
-601.5
+625.8085560697231
  21
-182.05855600000004
+238.25000000000003
  31
 0.0
   0
@@ -8901,15 +8781,15 @@ LINE
   8
 cut
  10
-621.5000000000001
+605.8085560697231
  20
-182.05855600000004
+240.75000000000003
  30
 0.0
  11
-621.5000000000001
+605.8085560697231
  21
-181.058556
+239.75000000000003
  31
 0.0
   0
@@ -8919,15 +8799,15 @@ LINE
   8
 cut
  10
-621.5000000000001
+605.8085560697231
  20
-181.058556
+239.75000000000003
  30
 0.0
  11
-622.5000000000001
+606.8085560697231
  21
-181.058556
+239.75000000000003
  31
 0.0
   0
@@ -8937,15 +8817,15 @@ LINE
   8
 cut
  10
-622.5000000000001
+606.8085560697231
  20
-181.058556
+239.75000000000003
  30
 0.0
  11
-622.5000000000001
+606.8085560697231
  21
-182.05855600000004
+240.75000000000003
  31
 0.0
   0
@@ -8955,15 +8835,15 @@ LINE
   8
 cut
  10
-622.5000000000001
+606.8085560697231
  20
-182.05855600000004
+240.75000000000003
  30
 0.0
  11
-621.5000000000001
+605.8085560697231
  21
-182.05855600000004
+240.75000000000003
  31
 0.0
   0
@@ -8973,15 +8853,15 @@ LINE
   8
 cut
  10
-601.5
+625.8085560697231
  20
-184.55855600000004
+240.75000000000003
  30
 0.0
  11
-601.5
+625.8085560697231
  21
-183.55855600000004
+239.75000000000003
  31
 0.0
   0
@@ -8991,15 +8871,15 @@ LINE
   8
 cut
  10
-601.5
+625.8085560697231
  20
-183.55855600000004
+239.75000000000003
  30
 0.0
  11
-602.5000000000001
+626.8085560697231
  21
-183.55855600000004
+239.75000000000003
  31
 0.0
   0
@@ -9009,15 +8889,15 @@ LINE
   8
 cut
  10
-602.5000000000001
+626.8085560697231
  20
-183.55855600000004
+239.75000000000003
  30
 0.0
  11
-602.5000000000001
+626.8085560697231
  21
-184.55855600000004
+240.75000000000003
  31
 0.0
   0
@@ -9027,15 +8907,15 @@ LINE
   8
 cut
  10
-602.5000000000001
+626.8085560697231
  20
-184.55855600000004
+240.75000000000003
  30
 0.0
  11
-601.5
+625.8085560697231
  21
-184.55855600000004
+240.75000000000003
  31
 0.0
   0
@@ -9045,15 +8925,15 @@ LINE
   8
 cut
  10
-621.5000000000001
+605.8085560697231
  20
-184.55855600000004
+243.25000000000003
  30
 0.0
  11
-621.5000000000001
+605.8085560697231
  21
-183.55855600000004
+242.25000000000003
  31
 0.0
   0
@@ -9063,15 +8943,15 @@ LINE
   8
 cut
  10
-621.5000000000001
+605.8085560697231
  20
-183.55855600000004
+242.25000000000003
  30
 0.0
  11
-622.5000000000001
+606.8085560697231
  21
-183.55855600000004
+242.25000000000003
  31
 0.0
   0
@@ -9081,15 +8961,15 @@ LINE
   8
 cut
  10
-622.5000000000001
+606.8085560697231
  20
-183.55855600000004
+242.25000000000003
  30
 0.0
  11
-622.5000000000001
+606.8085560697231
  21
-184.55855600000004
+243.25000000000003
  31
 0.0
   0
@@ -9099,15 +8979,15 @@ LINE
   8
 cut
  10
-622.5000000000001
+606.8085560697231
  20
-184.55855600000004
+243.25000000000003
  30
 0.0
  11
-621.5000000000001
+605.8085560697231
  21
-184.55855600000004
+243.25000000000003
  31
 0.0
   0
@@ -9117,15 +8997,15 @@ LINE
   8
 cut
  10
-601.5
+625.8085560697231
  20
-187.05855600000004
+243.25000000000003
  30
 0.0
  11
-601.5
+625.8085560697231
  21
-186.05855600000004
+242.25000000000003
  31
 0.0
   0
@@ -9135,15 +9015,15 @@ LINE
   8
 cut
  10
-601.5
+625.8085560697231
  20
-186.05855600000004
+242.25000000000003
  30
 0.0
  11
-602.5000000000001
+626.8085560697231
  21
-186.05855600000004
+242.25000000000003
  31
 0.0
   0
@@ -9153,15 +9033,15 @@ LINE
   8
 cut
  10
-602.5000000000001
+626.8085560697231
  20
-186.05855600000004
+242.25000000000003
  30
 0.0
  11
-602.5000000000001
+626.8085560697231
  21
-187.05855600000004
+243.25000000000003
  31
 0.0
   0
@@ -9171,15 +9051,15 @@ LINE
   8
 cut
  10
-602.5000000000001
+626.8085560697231
  20
-187.05855600000004
+243.25000000000003
  30
 0.0
  11
-601.5
+625.8085560697231
  21
-187.05855600000004
+243.25000000000003
  31
 0.0
   0
@@ -9189,15 +9069,15 @@ LINE
   8
 cut
  10
-621.5000000000001
+605.8085560697231
  20
-187.05855600000004
+245.75000000000003
  30
 0.0
  11
-621.5000000000001
+605.8085560697231
  21
-186.05855600000004
+244.75000000000003
  31
 0.0
   0
@@ -9207,15 +9087,15 @@ LINE
   8
 cut
  10
-621.5000000000001
+605.8085560697231
  20
-186.05855600000004
+244.75000000000003
  30
 0.0
  11
-622.5000000000001
+606.8085560697231
  21
-186.05855600000004
+244.75000000000003
  31
 0.0
   0
@@ -9225,15 +9105,15 @@ LINE
   8
 cut
  10
-622.5000000000001
+606.8085560697231
  20
-186.05855600000004
+244.75000000000003
  30
 0.0
  11
-622.5000000000001
+606.8085560697231
  21
-187.05855600000004
+245.75000000000003
  31
 0.0
   0
@@ -9243,15 +9123,15 @@ LINE
   8
 cut
  10
-622.5000000000001
+606.8085560697231
  20
-187.05855600000004
+245.75000000000003
  30
 0.0
  11
-621.5000000000001
+605.8085560697231
  21
-187.05855600000004
+245.75000000000003
  31
 0.0
   0
@@ -9261,15 +9141,15 @@ LINE
   8
 cut
  10
-601.5
+624.8085560697231
  20
-189.55855600000004
+246.75000000000003
  30
 0.0
  11
-601.5
+624.8085560697231
  21
-188.55855600000004
+243.75000000000003
  31
 0.0
   0
@@ -9279,15 +9159,15 @@ LINE
   8
 cut
  10
-601.5
+624.8085560697231
  20
-188.55855600000004
+243.75000000000003
  30
 0.0
  11
-602.5000000000001
+627.8085560697231
  21
-188.55855600000004
+243.75000000000003
  31
 0.0
   0
@@ -9297,15 +9177,15 @@ LINE
   8
 cut
  10
-602.5000000000001
+627.8085560697231
  20
-188.55855600000004
+243.75000000000003
  30
 0.0
  11
-602.5000000000001
+627.8085560697231
  21
-189.55855600000004
+246.75000000000003
  31
 0.0
   0
@@ -9315,15 +9195,15 @@ LINE
   8
 cut
  10
-602.5000000000001
+627.8085560697231
  20
-189.55855600000004
+246.75000000000003
  30
 0.0
  11
-601.5
+624.8085560697231
  21
-189.55855600000004
+246.75000000000003
  31
 0.0
   0
@@ -9333,15 +9213,15 @@ LINE
   8
 cut
  10
-621.5000000000001
+620.5585560697231
  20
-189.55855600000004
+203.75000000000003
  30
 0.0
  11
-621.5000000000001
+612.0585560697231
  21
-188.55855600000004
+203.75000000000003
  31
 0.0
   0
@@ -9351,15 +9231,15 @@ LINE
   8
 cut
  10
-621.5000000000001
+612.0585560697231
  20
-188.55855600000004
+203.75000000000003
  30
 0.0
  11
-622.5000000000001
+612.0585560697231
  21
-188.55855600000004
+203.25000000000003
  31
 0.0
   0
@@ -9369,15 +9249,15 @@ LINE
   8
 cut
  10
-622.5000000000001
+612.0585560697231
  20
-188.55855600000004
+203.25000000000003
  30
 0.0
  11
-622.5000000000001
+620.5585560697231
  21
-189.55855600000004
+203.25000000000003
  31
 0.0
   0
@@ -9387,15 +9267,15 @@ LINE
   8
 cut
  10
-622.5000000000001
+620.5585560697231
  20
-189.55855600000004
+203.25000000000003
  30
 0.0
  11
-621.5000000000001
+620.5585560697231
  21
-189.55855600000004
+203.75000000000003
  31
 0.0
   0
@@ -9405,15 +9285,15 @@ LINE
   8
 cut
  10
-601.5
+612.0585560697231
  20
-192.058556
+251.50000000000003
  30
 0.0
  11
-601.5
+620.5585560697231
  21
-191.05855600000004
+251.50000000000003
  31
 0.0
   0
@@ -9423,15 +9303,15 @@ LINE
   8
 cut
  10
-601.5
+620.5585560697231
  20
-191.05855600000004
+251.50000000000003
  30
 0.0
  11
-602.5000000000001
+620.5585560697231
  21
-191.05855600000004
+252.00000000000003
  31
 0.0
   0
@@ -9441,15 +9321,15 @@ LINE
   8
 cut
  10
-602.5000000000001
+620.5585560697231
  20
-191.05855600000004
+252.00000000000003
  30
 0.0
  11
-602.5000000000001
+612.0585560697231
  21
-192.058556
+252.00000000000003
  31
 0.0
   0
@@ -9459,15 +9339,15 @@ LINE
   8
 cut
  10
-602.5000000000001
+612.0585560697231
  20
-192.058556
+252.00000000000003
  30
 0.0
  11
-601.5
+612.0585560697231
  21
-192.058556
+251.50000000000003
  31
 0.0
   0
@@ -9477,15 +9357,15 @@ LINE
   8
 cut
  10
-621.5000000000001
+643.3085560697231
  20
-192.058556
+247.00000000000003
  30
 0.0
  11
-621.5000000000001
+643.3085560697231
  21
-191.05855600000004
+234.00000000000003
  31
 0.0
   0
@@ -9495,15 +9375,15 @@ LINE
   8
 cut
  10
-621.5000000000001
+643.3085560697231
  20
-191.05855600000004
+234.00000000000003
  30
 0.0
  11
-622.5000000000001
+673.3085560697231
  21
-191.05855600000004
+234.00000000000003
  31
 0.0
   0
@@ -9513,15 +9393,15 @@ LINE
   8
 cut
  10
-622.5000000000001
+673.3085560697231
  20
-191.05855600000004
+234.00000000000003
  30
 0.0
  11
-622.5000000000001
+673.3085560697231
  21
-192.058556
+247.00000000000003
  31
 0.0
   0
@@ -9531,15 +9411,15 @@ LINE
   8
 cut
  10
-622.5000000000001
+673.3085560697231
  20
-192.058556
+247.00000000000003
  30
 0.0
  11
-621.5000000000001
+643.3085560697231
  21
-192.058556
+247.00000000000003
  31
 0.0
   0
@@ -9549,15 +9429,15 @@ LINE
   8
 cut
  10
-601.5
+650.3767378879048
  20
-194.558556
+201.50000000000003
  30
 0.0
  11
-601.5
+638.967646978814
  21
-193.55855600000004
+201.50000000000003
  31
 0.0
   0
@@ -9567,15 +9447,15 @@ LINE
   8
 cut
  10
-601.5
+638.967646978814
  20
-193.55855600000004
+201.50000000000003
  30
 0.0
  11
-602.5000000000001
+638.967646978814
  21
-193.55855600000004
+201.00000000000003
  31
 0.0
   0
@@ -9585,15 +9465,15 @@ LINE
   8
 cut
  10
-602.5000000000001
+638.967646978814
  20
-193.55855600000004
+201.00000000000003
  30
 0.0
  11
-602.5000000000001
+650.3767378879048
  21
-194.558556
+201.00000000000003
  31
 0.0
   0
@@ -9603,15 +9483,15 @@ LINE
   8
 cut
  10
-602.5000000000001
+650.3767378879048
  20
-194.558556
+201.00000000000003
  30
 0.0
  11
-601.5
+650.3767378879048
  21
-194.558556
+201.50000000000003
  31
 0.0
   0
@@ -9621,15 +9501,15 @@ LINE
   8
 cut
  10
-621.5000000000001
+677.6494651606322
  20
-194.558556
+201.50000000000003
  30
 0.0
  11
-621.5000000000001
+666.2403742515412
  21
-193.55855600000004
+201.50000000000003
  31
 0.0
   0
@@ -9639,15 +9519,15 @@ LINE
   8
 cut
  10
-621.5000000000001
+666.2403742515412
  20
-193.55855600000004
+201.50000000000003
  30
 0.0
  11
-622.5000000000001
+666.2403742515412
  21
-193.55855600000004
+201.00000000000003
  31
 0.0
   0
@@ -9657,15 +9537,15 @@ LINE
   8
 cut
  10
-622.5000000000001
+666.2403742515412
  20
-193.55855600000004
+201.00000000000003
  30
 0.0
  11
-622.5000000000001
+677.6494651606322
  21
-194.558556
+201.00000000000003
  31
 0.0
   0
@@ -9675,15 +9555,15 @@ LINE
   8
 cut
  10
-622.5000000000001
+677.6494651606322
  20
-194.558556
+201.00000000000003
  30
 0.0
  11
-621.5000000000001
+677.6494651606322
  21
-194.558556
+201.50000000000003
  31
 0.0
   0
@@ -9693,15 +9573,15 @@ LINE
   8
 cut
  10
-601.5
+680.558556069723
  20
-197.05855600000004
+218.43181818181822
  30
 0.0
  11
-601.5
+680.558556069723
  21
-196.05855600000004
+206.84090909090912
  31
 0.0
   0
@@ -9711,15 +9591,15 @@ LINE
   8
 cut
  10
-601.5
+680.558556069723
  20
-196.05855600000004
+206.84090909090912
  30
 0.0
  11
-602.5000000000001
+681.058556069723
  21
-196.05855600000004
+206.84090909090912
  31
 0.0
   0
@@ -9729,15 +9609,15 @@ LINE
   8
 cut
  10
-602.5000000000001
+681.058556069723
  20
-196.05855600000004
+206.84090909090912
  30
 0.0
  11
-602.5000000000001
+681.058556069723
  21
-197.05855600000004
+218.43181818181822
  31
 0.0
   0
@@ -9747,15 +9627,15 @@ LINE
   8
 cut
  10
-602.5000000000001
+681.058556069723
  20
-197.05855600000004
+218.43181818181822
  30
 0.0
  11
-601.5
+680.558556069723
  21
-197.05855600000004
+218.43181818181822
  31
 0.0
   0
@@ -9765,15 +9645,15 @@ LINE
   8
 cut
  10
-621.5000000000001
+680.558556069723
  20
-197.05855600000004
+246.15909090909093
  30
 0.0
  11
-621.5000000000001
+680.558556069723
  21
-196.05855600000004
+234.5681818181818
  31
 0.0
   0
@@ -9783,15 +9663,15 @@ LINE
   8
 cut
  10
-621.5000000000001
+680.558556069723
  20
-196.05855600000004
+234.5681818181818
  30
 0.0
  11
-622.5000000000001
+681.058556069723
  21
-196.05855600000004
+234.5681818181818
  31
 0.0
   0
@@ -9801,15 +9681,15 @@ LINE
   8
 cut
  10
-622.5000000000001
+681.058556069723
  20
-196.05855600000004
+234.5681818181818
  30
 0.0
  11
-622.5000000000001
+681.058556069723
  21
-197.05855600000004
+246.15909090909093
  31
 0.0
   0
@@ -9819,15 +9699,15 @@ LINE
   8
 cut
  10
-622.5000000000001
+681.058556069723
  20
-197.05855600000004
+246.15909090909093
  30
 0.0
  11
-621.5000000000001
+680.558556069723
  21
-197.05855600000004
+246.15909090909093
  31
 0.0
   0
@@ -9837,15 +9717,15 @@ LINE
   8
 cut
  10
-601.5
+520.8085560697231
  20
-199.55855600000004
+209.25
  30
 0.0
  11
-601.5
+520.8085560697231
  21
-198.55855600000004
+206.25000000000003
  31
 0.0
   0
@@ -9855,15 +9735,15 @@ LINE
   8
 cut
  10
-601.5
+520.8085560697231
  20
-198.55855600000004
+206.25000000000003
  30
 0.0
  11
-602.5000000000001
+523.8085560697231
  21
-198.55855600000004
+206.25000000000003
  31
 0.0
   0
@@ -9873,15 +9753,15 @@ LINE
   8
 cut
  10
-602.5000000000001
+523.8085560697231
  20
-198.55855600000004
+206.25000000000003
  30
 0.0
  11
-602.5000000000001
+523.8085560697231
  21
-199.55855600000004
+209.25
  31
 0.0
   0
@@ -9891,15 +9771,15 @@ LINE
   8
 cut
  10
-602.5000000000001
+523.8085560697231
  20
-199.55855600000004
+209.25
  30
 0.0
  11
-601.5
+520.8085560697231
  21
-199.55855600000004
+209.25
  31
 0.0
   0
@@ -9909,15 +9789,15 @@ LINE
   8
 cut
  10
-621.5000000000001
+541.8085560697231
  20
-199.55855600000004
+208.25000000000003
  30
 0.0
  11
-621.5000000000001
+541.8085560697231
  21
-198.55855600000004
+207.25000000000003
  31
 0.0
   0
@@ -9927,15 +9807,15 @@ LINE
   8
 cut
  10
-621.5000000000001
+541.8085560697231
  20
-198.55855600000004
+207.25000000000003
  30
 0.0
  11
-622.5000000000001
+542.8085560697231
  21
-198.55855600000004
+207.25000000000003
  31
 0.0
   0
@@ -9945,15 +9825,15 @@ LINE
   8
 cut
  10
-622.5000000000001
+542.8085560697231
  20
-198.55855600000004
+207.25000000000003
  30
 0.0
  11
-622.5000000000001
+542.8085560697231
  21
-199.55855600000004
+208.25000000000003
  31
 0.0
   0
@@ -9963,15 +9843,15 @@ LINE
   8
 cut
  10
-622.5000000000001
+542.8085560697231
  20
-199.55855600000004
+208.25000000000003
  30
 0.0
  11
-621.5000000000001
+541.8085560697231
  21
-199.55855600000004
+208.25000000000003
  31
 0.0
   0
@@ -9981,15 +9861,15 @@ LINE
   8
 cut
  10
-601.5
+521.808556069723
  20
-202.05855600000004
+210.75000000000003
  30
 0.0
  11
-601.5
+521.808556069723
  21
-201.058556
+209.75000000000003
  31
 0.0
   0
@@ -9999,15 +9879,15 @@ LINE
   8
 cut
  10
-601.5
+521.808556069723
  20
-201.058556
+209.75000000000003
  30
 0.0
  11
-602.5000000000001
+522.808556069723
  21
-201.058556
+209.75000000000003
  31
 0.0
   0
@@ -10017,15 +9897,15 @@ LINE
   8
 cut
  10
-602.5000000000001
+522.808556069723
  20
-201.058556
+209.75000000000003
  30
 0.0
  11
-602.5000000000001
+522.808556069723
  21
-202.05855600000004
+210.75000000000003
  31
 0.0
   0
@@ -10035,15 +9915,15 @@ LINE
   8
 cut
  10
-602.5000000000001
+522.808556069723
  20
-202.05855600000004
+210.75000000000003
  30
 0.0
  11
-601.5
+521.808556069723
  21
-202.05855600000004
+210.75000000000003
  31
 0.0
   0
@@ -10053,15 +9933,15 @@ LINE
   8
 cut
  10
-621.5000000000001
+541.8085560697231
  20
-202.05855600000004
+210.75000000000003
  30
 0.0
  11
-621.5000000000001
+541.8085560697231
  21
-201.058556
+209.75000000000003
  31
 0.0
   0
@@ -10071,15 +9951,15 @@ LINE
   8
 cut
  10
-621.5000000000001
+541.8085560697231
  20
-201.058556
+209.75000000000003
  30
 0.0
  11
-622.5000000000001
+542.8085560697231
  21
-201.058556
+209.75000000000003
  31
 0.0
   0
@@ -10089,15 +9969,15 @@ LINE
   8
 cut
  10
-622.5000000000001
+542.8085560697231
  20
-201.058556
+209.75000000000003
  30
 0.0
  11
-622.5000000000001
+542.8085560697231
  21
-202.05855600000004
+210.75000000000003
  31
 0.0
   0
@@ -10107,15 +9987,15 @@ LINE
   8
 cut
  10
-622.5000000000001
+542.8085560697231
  20
-202.05855600000004
+210.75000000000003
  30
 0.0
  11
-621.5000000000001
+541.8085560697231
  21
-202.05855600000004
+210.75000000000003
  31
 0.0
   0
@@ -10125,15 +10005,15 @@ LINE
   8
 cut
  10
-601.5
+521.808556069723
  20
-204.55855600000004
+213.25000000000003
  30
 0.0
  11
-601.5
+521.808556069723
  21
-203.558556
+212.25000000000003
  31
 0.0
   0
@@ -10143,15 +10023,15 @@ LINE
   8
 cut
  10
-601.5
+521.808556069723
  20
-203.558556
+212.25000000000003
  30
 0.0
  11
-602.5000000000001
+522.808556069723
  21
-203.558556
+212.25000000000003
  31
 0.0
   0
@@ -10161,15 +10041,15 @@ LINE
   8
 cut
  10
-602.5000000000001
+522.808556069723
  20
-203.558556
+212.25000000000003
  30
 0.0
  11
-602.5000000000001
+522.808556069723
  21
-204.55855600000004
+213.25000000000003
  31
 0.0
   0
@@ -10179,15 +10059,15 @@ LINE
   8
 cut
  10
-602.5000000000001
+522.808556069723
  20
-204.55855600000004
+213.25000000000003
  30
 0.0
  11
-601.5
+521.808556069723
  21
-204.55855600000004
+213.25000000000003
  31
 0.0
   0
@@ -10197,15 +10077,15 @@ LINE
   8
 cut
  10
-621.5000000000001
+541.8085560697231
  20
-204.55855600000004
+213.25000000000003
  30
 0.0
  11
-621.5000000000001
+541.8085560697231
  21
-203.558556
+212.25000000000003
  31
 0.0
   0
@@ -10215,15 +10095,15 @@ LINE
   8
 cut
  10
-621.5000000000001
+541.8085560697231
  20
-203.558556
+212.25000000000003
  30
 0.0
  11
-622.5000000000001
+542.8085560697231
  21
-203.558556
+212.25000000000003
  31
 0.0
   0
@@ -10233,15 +10113,15 @@ LINE
   8
 cut
  10
-622.5000000000001
+542.8085560697231
  20
-203.558556
+212.25000000000003
  30
 0.0
  11
-622.5000000000001
+542.8085560697231
  21
-204.55855600000004
+213.25000000000003
  31
 0.0
   0
@@ -10251,15 +10131,15 @@ LINE
   8
 cut
  10
-622.5000000000001
+542.8085560697231
  20
-204.55855600000004
+213.25000000000003
  30
 0.0
  11
-621.5000000000001
+541.8085560697231
  21
-204.55855600000004
+213.25000000000003
  31
 0.0
   0
@@ -10269,15 +10149,15 @@ LINE
   8
 cut
  10
-601.5
+521.808556069723
  20
-207.05855600000004
+215.75000000000003
  30
 0.0
  11
-601.5
+521.808556069723
  21
-206.05855600000004
+214.75000000000003
  31
 0.0
   0
@@ -10287,15 +10167,15 @@ LINE
   8
 cut
  10
-601.5
+521.808556069723
  20
-206.05855600000004
+214.75000000000003
  30
 0.0
  11
-602.5000000000001
+522.808556069723
  21
-206.05855600000004
+214.75000000000003
  31
 0.0
   0
@@ -10305,15 +10185,15 @@ LINE
   8
 cut
  10
-602.5000000000001
+522.808556069723
  20
-206.05855600000004
+214.75000000000003
  30
 0.0
  11
-602.5000000000001
+522.808556069723
  21
-207.05855600000004
+215.75000000000003
  31
 0.0
   0
@@ -10323,15 +10203,15 @@ LINE
   8
 cut
  10
-602.5000000000001
+522.808556069723
  20
-207.05855600000004
+215.75000000000003
  30
 0.0
  11
-601.5
+521.808556069723
  21
-207.05855600000004
+215.75000000000003
  31
 0.0
   0
@@ -10341,15 +10221,15 @@ LINE
   8
 cut
  10
-621.5000000000001
+541.8085560697231
  20
-207.05855600000004
+215.75000000000003
  30
 0.0
  11
-621.5000000000001
+541.8085560697231
  21
-206.05855600000004
+214.75000000000003
  31
 0.0
   0
@@ -10359,15 +10239,15 @@ LINE
   8
 cut
  10
-621.5000000000001
+541.8085560697231
  20
-206.05855600000004
+214.75000000000003
  30
 0.0
  11
-622.5000000000001
+542.8085560697231
  21
-206.05855600000004
+214.75000000000003
  31
 0.0
   0
@@ -10377,15 +10257,15 @@ LINE
   8
 cut
  10
-622.5000000000001
+542.8085560697231
  20
-206.05855600000004
+214.75000000000003
  30
 0.0
  11
-622.5000000000001
+542.8085560697231
  21
-207.05855600000004
+215.75000000000003
  31
 0.0
   0
@@ -10395,15 +10275,15 @@ LINE
   8
 cut
  10
-622.5000000000001
+542.8085560697231
  20
-207.05855600000004
+215.75000000000003
  30
 0.0
  11
-621.5000000000001
+541.8085560697231
  21
-207.05855600000004
+215.75000000000003
  31
 0.0
   0
@@ -10413,15 +10293,15 @@ LINE
   8
 cut
  10
-601.5
+521.808556069723
  20
-209.55855600000004
+218.25000000000003
  30
 0.0
  11
-601.5
+521.808556069723
  21
-208.55855600000004
+217.25000000000003
  31
 0.0
   0
@@ -10431,15 +10311,15 @@ LINE
   8
 cut
  10
-601.5
+521.808556069723
  20
-208.55855600000004
+217.25000000000003
  30
 0.0
  11
-602.5000000000001
+522.808556069723
  21
-208.55855600000004
+217.25000000000003
  31
 0.0
   0
@@ -10449,15 +10329,15 @@ LINE
   8
 cut
  10
-602.5000000000001
+522.808556069723
  20
-208.55855600000004
+217.25000000000003
  30
 0.0
  11
-602.5000000000001
+522.808556069723
  21
-209.55855600000004
+218.25000000000003
  31
 0.0
   0
@@ -10467,15 +10347,15 @@ LINE
   8
 cut
  10
-602.5000000000001
+522.808556069723
  20
-209.55855600000004
+218.25000000000003
  30
 0.0
  11
-601.5
+521.808556069723
  21
-209.55855600000004
+218.25000000000003
  31
 0.0
   0
@@ -10485,15 +10365,15 @@ LINE
   8
 cut
  10
-621.5000000000001
+541.8085560697231
  20
-209.55855600000004
+218.25000000000003
  30
 0.0
  11
-621.5000000000001
+541.8085560697231
  21
-208.55855600000004
+217.25000000000003
  31
 0.0
   0
@@ -10503,15 +10383,15 @@ LINE
   8
 cut
  10
-621.5000000000001
+541.8085560697231
  20
-208.55855600000004
+217.25000000000003
  30
 0.0
  11
-622.5000000000001
+542.8085560697231
  21
-208.55855600000004
+217.25000000000003
  31
 0.0
   0
@@ -10521,15 +10401,15 @@ LINE
   8
 cut
  10
-622.5000000000001
+542.8085560697231
  20
-208.55855600000004
+217.25000000000003
  30
 0.0
  11
-622.5000000000001
+542.8085560697231
  21
-209.55855600000004
+218.25000000000003
  31
 0.0
   0
@@ -10539,15 +10419,15 @@ LINE
   8
 cut
  10
-622.5000000000001
+542.8085560697231
  20
-209.55855600000004
+218.25000000000003
  30
 0.0
  11
-621.5000000000001
+541.8085560697231
  21
-209.55855600000004
+218.25000000000003
  31
 0.0
   0
@@ -10557,15 +10437,15 @@ LINE
   8
 cut
  10
-601.5
+521.808556069723
  20
-212.05855600000004
+220.75
  30
 0.0
  11
-601.5
+521.808556069723
  21
-211.05855600000004
+219.75000000000003
  31
 0.0
   0
@@ -10575,15 +10455,15 @@ LINE
   8
 cut
  10
-601.5
+521.808556069723
  20
-211.05855600000004
+219.75000000000003
  30
 0.0
  11
-602.5000000000001
+522.808556069723
  21
-211.05855600000004
+219.75000000000003
  31
 0.0
   0
@@ -10593,15 +10473,15 @@ LINE
   8
 cut
  10
-602.5000000000001
+522.808556069723
  20
-211.05855600000004
+219.75000000000003
  30
 0.0
  11
-602.5000000000001
+522.808556069723
  21
-212.05855600000004
+220.75
  31
 0.0
   0
@@ -10611,15 +10491,15 @@ LINE
   8
 cut
  10
-602.5000000000001
+522.808556069723
  20
-212.05855600000004
+220.75
  30
 0.0
  11
-601.5
+521.808556069723
  21
-212.05855600000004
+220.75
  31
 0.0
   0
@@ -10629,15 +10509,15 @@ LINE
   8
 cut
  10
-620.5000000000001
+541.8085560697231
  20
-213.05855600000004
+220.75
  30
 0.0
  11
-620.5000000000001
+541.8085560697231
  21
-210.05855600000004
+219.75000000000003
  31
 0.0
   0
@@ -10647,15 +10527,15 @@ LINE
   8
 cut
  10
-620.5000000000001
+541.8085560697231
  20
-210.05855600000004
+219.75000000000003
  30
 0.0
  11
-623.5000000000001
+542.8085560697231
  21
-210.05855600000004
+219.75000000000003
  31
 0.0
   0
@@ -10665,15 +10545,15 @@ LINE
   8
 cut
  10
-623.5000000000001
+542.8085560697231
  20
-210.05855600000004
+219.75000000000003
  30
 0.0
  11
-623.5000000000001
+542.8085560697231
  21
-213.05855600000004
+220.75
  31
 0.0
   0
@@ -10683,15 +10563,15 @@ LINE
   8
 cut
  10
-623.5000000000001
+542.8085560697231
  20
-213.05855600000004
+220.75
  30
 0.0
  11
-620.5000000000001
+541.8085560697231
  21
-213.05855600000004
+220.75
  31
 0.0
   0
@@ -10701,15 +10581,15 @@ LINE
   8
 cut
  10
-616.2500000000001
+521.808556069723
  20
-170.05855600000004
+223.25000000000003
  30
 0.0
  11
-607.7500000000001
+521.808556069723
  21
-170.05855600000004
+222.25000000000003
  31
 0.0
   0
@@ -10719,15 +10599,15 @@ LINE
   8
 cut
  10
-607.7500000000001
+521.808556069723
  20
-170.05855600000004
+222.25000000000003
  30
 0.0
  11
-607.7500000000001
+522.808556069723
  21
-169.558556
+222.25000000000003
  31
 0.0
   0
@@ -10737,15 +10617,15 @@ LINE
   8
 cut
  10
-607.7500000000001
+522.808556069723
  20
-169.558556
+222.25000000000003
  30
 0.0
  11
-616.2500000000001
+522.808556069723
  21
-169.558556
+223.25000000000003
  31
 0.0
   0
@@ -10755,15 +10635,15 @@ LINE
   8
 cut
  10
-616.2500000000001
+522.808556069723
  20
-169.558556
+223.25000000000003
  30
 0.0
  11
-616.2500000000001
+521.808556069723
  21
-170.05855600000004
+223.25000000000003
  31
 0.0
   0
@@ -10773,15 +10653,15 @@ LINE
   8
 cut
  10
-607.7500000000001
+541.8085560697231
  20
-217.80855600000004
+223.25000000000003
  30
 0.0
  11
-616.2500000000001
+541.8085560697231
  21
-217.80855600000004
+222.25000000000003
  31
 0.0
   0
@@ -10791,15 +10671,15 @@ LINE
   8
 cut
  10
-616.2500000000001
+541.8085560697231
  20
-217.80855600000004
+222.25000000000003
  30
 0.0
  11
-616.2500000000001
+542.8085560697231
  21
-218.30855600000004
+222.25000000000003
  31
 0.0
   0
@@ -10809,15 +10689,15 @@ LINE
   8
 cut
  10
-616.2500000000001
+542.8085560697231
  20
-218.30855600000004
+222.25000000000003
  30
 0.0
  11
-607.7500000000001
+542.8085560697231
  21
-218.30855600000004
+223.25000000000003
  31
 0.0
   0
@@ -10827,15 +10707,15 @@ LINE
   8
 cut
  10
-607.7500000000001
+542.8085560697231
  20
-218.30855600000004
+223.25000000000003
  30
 0.0
  11
-607.7500000000001
+541.8085560697231
  21
-217.80855600000004
+223.25000000000003
  31
 0.0
   0
@@ -10845,15 +10725,15 @@ LINE
   8
 cut
  10
-592.5
+521.808556069723
  20
-173.39946509090913
+225.75000000000003
  30
 0.0
  11
-597.5000000000001
+521.808556069723
  21
-173.39946509090913
+224.75000000000003
  31
 0.0
   0
@@ -10863,15 +10743,15 @@ LINE
   8
 cut
  10
-597.5000000000001
+521.808556069723
  20
-173.39946509090913
+224.75000000000003
  30
 0.0
  11
-597.5000000000001
+522.808556069723
  21
-184.49037418181823
+224.75000000000003
  31
 0.0
   0
@@ -10881,15 +10761,15 @@ LINE
   8
 cut
  10
-597.5000000000001
+522.808556069723
  20
-184.49037418181823
+224.75000000000003
  30
 0.0
  11
-592.5
+522.808556069723
  21
-184.49037418181823
+225.75000000000003
  31
 0.0
   0
@@ -10899,15 +10779,15 @@ LINE
   8
 cut
  10
-592.5
+522.808556069723
  20
-201.12673781818185
+225.75000000000003
  30
 0.0
  11
-597.5000000000001
+521.808556069723
  21
-201.12673781818185
+225.75000000000003
  31
 0.0
   0
@@ -10917,15 +10797,15 @@ LINE
   8
 cut
  10
-597.5000000000001
+541.8085560697231
  20
-201.12673781818185
+225.75000000000003
  30
 0.0
  11
-597.5000000000001
+541.8085560697231
  21
-212.21764690909094
+224.75000000000003
  31
 0.0
   0
@@ -10935,15 +10815,15 @@ LINE
   8
 cut
  10
-597.5000000000001
+541.8085560697231
  20
-212.21764690909094
+224.75000000000003
  30
 0.0
  11
-592.5
+542.8085560697231
  21
-212.21764690909094
+224.75000000000003
  31
 0.0
   0
@@ -10953,15 +10833,15 @@ LINE
   8
 cut
  10
-617.7500000000001
+542.8085560697231
  20
-146.308556
+224.75000000000003
  30
 0.0
  11
-621.2500000000001
+542.8085560697231
  21
-146.308556
+225.75000000000003
  31
 0.0
   0
@@ -10971,15 +10851,15 @@ LINE
   8
 cut
  10
-621.2500000000001
+542.8085560697231
  20
-146.308556
+225.75000000000003
  30
 0.0
  11
-621.2500000000001
+541.8085560697231
  21
-154.30855600000004
+225.75000000000003
  31
 0.0
   0
@@ -10989,115 +10869,105 @@ LINE
   8
 cut
  10
-621.2500000000001
+521.808556069723
  20
-154.30855600000004
+228.25000000000003
  30
 0.0
  11
-617.7500000000001
+521.808556069723
  21
-154.30855600000004
+227.25000000000003
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
-90
+cut
  10
-850.733401821533
+521.808556069723
  20
-100.30855600000002
+227.25000000000003
  30
 0.0
  11
-850.733401821533
+522.808556069723
  21
-200.30855600000004
+227.25000000000003
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
-90
+cut
  10
-800.7334018215329
+522.808556069723
  20
-100.30855600000002
+227.25000000000003
  30
 0.0
  11
-800.7334018215329
+522.808556069723
  21
-200.30855600000004
+228.25000000000003
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
-21.801409486351815
+cut
  10
-825.733401821533
+522.808556069723
  20
-100.30855600000002
+228.25000000000003
  30
 0.0
  11
-800.7334018215329
+521.808556069723
  21
-100.30855600000002
+228.25000000000003
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
-21.801409486351815
+cut
  10
-850.733401821533
+541.8085560697231
  20
-100.30855600000002
+228.25000000000003
  30
 0.0
  11
-825.733401821533
+541.8085560697231
  21
-100.30855600000002
+227.25000000000003
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
-80.43938360731835
+cut
  10
-825.733401821533
+541.8085560697231
  20
-46.45690792865498
+227.25000000000003
  30
 0.0
  11
-800.7334018215329
+542.8085560697231
  21
-100.30855600000002
+227.25000000000003
  31
 0.0
   0
@@ -11107,15 +10977,15 @@ LINE
   8
 cut
  10
-792.2466086902074
+542.8085560697231
  20
-80.42847270018157
+227.25000000000003
  30
 0.0
  11
-786.4900052558701
+542.8085560697231
  21
-86.2684116177914
+228.25000000000003
  31
 0.0
   0
@@ -11125,55 +10995,51 @@ LINE
   8
 cut
  10
-825.733401821533
+542.8085560697231
  20
-46.456907928654964
+228.25000000000003
  30
 0.0
  11
-792.2466086902074
+541.8085560697231
  21
-80.42847270018157
+228.25000000000003
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
-180
+cut
  10
-800.7334018215329
+521.808556069723
  20
-100.30855600000002
+230.75000000000003
  30
 0.0
  11
-786.4900052558701
+521.808556069723
  21
-86.2684116177914
+229.75
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
--180
+cut
  10
-800.7334018215329
+521.808556069723
  20
-100.30855600000002
+229.75
  30
 0.0
  11
-780.733401821533
+522.808556069723
  21
-92.10835053540121
+229.75
  31
 0.0
   0
@@ -11183,55 +11049,51 @@ LINE
   8
 cut
  10
-786.4900052558701
+522.808556069723
  20
-86.2684116177914
+229.75
  30
 0.0
  11
-780.733401821533
+522.808556069723
  21
-92.10835053540121
+230.75000000000003
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
--174
+cut
  10
-780.733401821533
+522.808556069723
  20
-100.30855600000002
+230.75000000000003
  30
 0.0
  11
-780.733401821533
+521.808556069723
  21
-92.10835053540121
+230.75000000000003
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
-26.565051177077976
+cut
  10
-800.7334018215329
+541.8085560697231
  20
-100.30855600000002
+230.75000000000003
  30
 0.0
  11
-780.733401821533
+541.8085560697231
  21
-100.30855600000002
+229.75
  31
 0.0
   0
@@ -11241,15 +11103,15 @@ LINE
   8
 cut
  10
-778.0000000000001
+541.8085560697231
  20
-100.30855600000002
+229.75
  30
 0.0
  11
-780.733401821533
+542.8085560697231
  21
-100.30855600000002
+229.75
  31
 0.0
   0
@@ -11259,15 +11121,15 @@ LINE
   8
 cut
  10
-778.0000000000001
+542.8085560697231
  20
-92.10835053540121
+229.75
  30
 0.0
  11
-778.0000000000001
+542.8085560697231
  21
-100.30855600000002
+230.75000000000003
  31
 0.0
   0
@@ -11277,15 +11139,15 @@ LINE
   8
 cut
  10
-780.733401821533
+542.8085560697231
  20
-92.10835053540121
+230.75000000000003
  30
 0.0
  11
-778.0000000000001
+541.8085560697231
  21
-92.10835053540121
+230.75000000000003
  31
 0.0
   0
@@ -11295,75 +11157,69 @@ LINE
   8
 cut
  10
-780.733401821533
+521.808556069723
  20
-100.30855600000002
+233.25000000000003
  30
 0.0
  11
-780.733401821533
+521.808556069723
  21
-200.30855600000004
+232.25000000000003
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
-26.565051177077976
+cut
  10
-780.733401821533
+521.808556069723
  20
-200.30855600000004
+232.25000000000003
  30
 0.0
  11
-800.7334018215329
+522.808556069723
  21
-200.30855600000004
+232.25000000000003
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
--180
+cut
  10
-780.733401821533
+522.808556069723
  20
-208.50876146459882
+232.25000000000003
  30
 0.0
  11
-800.7334018215329
+522.808556069723
  21
-200.30855600000004
+233.25000000000003
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
--174
+cut
  10
-780.733401821533
+522.808556069723
  20
-208.50876146459882
+233.25000000000003
  30
 0.0
  11
-780.733401821533
+521.808556069723
  21
-200.30855600000004
+233.25000000000003
  31
 0.0
   0
@@ -11373,55 +11229,51 @@ LINE
   8
 cut
  10
-780.733401821533
+541.8085560697231
  20
-208.50876146459882
+233.25000000000003
  30
 0.0
  11
-786.4900052558701
+541.8085560697231
  21
-214.34870038220865
+232.25000000000003
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
-180
+cut
  10
-786.4900052558701
+541.8085560697231
  20
-214.34870038220865
+232.25000000000003
  30
 0.0
  11
-800.7334018215329
+542.8085560697231
  21
-200.30855600000004
+232.25000000000003
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
-80.43938360731835
+cut
  10
-825.733401821533
+542.8085560697231
  20
-254.16020407134508
+232.25000000000003
  30
 0.0
  11
-800.7334018215329
+542.8085560697231
  21
-200.30855600000004
+233.25000000000003
  31
 0.0
   0
@@ -11431,15 +11283,15 @@ LINE
   8
 cut
  10
-792.2466086902074
+542.8085560697231
  20
-220.18863929981848
+233.25000000000003
  30
 0.0
  11
-825.733401821533
+541.8085560697231
  21
-254.16020407134508
+233.25000000000003
  31
 0.0
   0
@@ -11449,75 +11301,69 @@ LINE
   8
 cut
  10
-786.4900052558701
+521.808556069723
  20
-214.34870038220865
+235.75000000000003
  30
 0.0
  11
-792.2466086902074
+521.808556069723
  21
-220.18863929981848
+234.75000000000003
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
-21.801409486351815
+cut
  10
-800.7334018215329
+521.808556069723
  20
-200.30855600000004
+234.75000000000003
  30
 0.0
  11
-825.733401821533
+522.808556069723
  21
-200.30855600000004
+234.75000000000003
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
-21.801409486351815
+cut
  10
-825.733401821533
+522.808556069723
  20
-200.30855600000004
+234.75000000000003
  30
 0.0
  11
-850.733401821533
+522.808556069723
  21
-200.308556
+235.75000000000003
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
-80.43938360731835
+cut
  10
-825.733401821533
+522.808556069723
  20
-254.16020407134508
+235.75000000000003
  30
 0.0
  11
-850.733401821533
+521.808556069723
  21
-200.308556
+235.75000000000003
  31
 0.0
   0
@@ -11527,15 +11373,15 @@ LINE
   8
 cut
  10
-859.2201949528585
+541.8085560697231
  20
-220.18863929981845
+235.75000000000003
  30
 0.0
  11
-864.9767983871958
+541.8085560697231
  21
-214.34870038220865
+234.75000000000003
  31
 0.0
   0
@@ -11545,55 +11391,51 @@ LINE
   8
 cut
  10
-825.733401821533
+541.8085560697231
  20
-254.16020407134508
+234.75000000000003
  30
 0.0
  11
-859.2201949528585
+542.8085560697231
  21
-220.18863929981845
+234.75000000000003
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
-180
+cut
  10
-850.733401821533
+542.8085560697231
  20
-200.30855600000004
+234.75000000000003
  30
 0.0
  11
-864.9767983871958
+542.8085560697231
  21
-214.34870038220865
+235.75000000000003
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
--180
+cut
  10
-850.733401821533
+542.8085560697231
  20
-200.308556
+235.75000000000003
  30
 0.0
  11
-870.733401821533
+541.8085560697231
  21
-208.5087614645988
+235.75000000000003
  31
 0.0
   0
@@ -11603,55 +11445,51 @@ LINE
   8
 cut
  10
-864.9767983871958
+521.808556069723
  20
-214.34870038220865
+238.25000000000003
  30
 0.0
  11
-870.733401821533
+521.808556069723
  21
-208.5087614645988
+237.25000000000003
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
--174
+cut
  10
-870.733401821533
+521.808556069723
  20
-200.308556
+237.25000000000003
  30
 0.0
  11
-870.733401821533
+522.808556069723
  21
-208.5087614645988
+237.25000000000003
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
-26.565051177077976
+cut
  10
-850.733401821533
+522.808556069723
  20
-200.308556
+237.25000000000003
  30
 0.0
  11
-870.733401821533
+522.808556069723
  21
-200.308556
+238.25000000000003
  31
 0.0
   0
@@ -11661,15 +11499,15 @@ LINE
   8
 cut
  10
-873.4668036430659
+522.808556069723
  20
-200.30855599999998
+238.25000000000003
  30
 0.0
  11
-870.733401821533
+521.808556069723
  21
-200.30855599999998
+238.25000000000003
  31
 0.0
   0
@@ -11679,15 +11517,15 @@ LINE
   8
 cut
  10
-873.4668036430659
+541.8085560697231
  20
-208.5087614645988
+238.25000000000003
  30
 0.0
  11
-873.4668036430659
+541.8085560697231
  21
-200.30855599999998
+237.25000000000003
  31
 0.0
   0
@@ -11697,15 +11535,15 @@ LINE
   8
 cut
  10
-870.733401821533
+541.8085560697231
  20
-208.5087614645988
+237.25000000000003
  30
 0.0
  11
-873.4668036430659
+542.8085560697231
  21
-208.5087614645988
+237.25000000000003
  31
 0.0
   0
@@ -11715,75 +11553,69 @@ LINE
   8
 cut
  10
-870.733401821533
+542.8085560697231
  20
-200.308556
+237.25000000000003
  30
 0.0
  11
-870.733401821533
+542.8085560697231
  21
-100.30855600000002
+238.25000000000003
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
-26.565051177077976
+cut
  10
-870.733401821533
+542.8085560697231
  20
-100.30855600000002
+238.25000000000003
  30
 0.0
  11
-850.733401821533
+541.8085560697231
  21
-100.30855600000002
+238.25000000000003
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
--180
+cut
  10
-870.7334018215329
+521.808556069723
  20
-92.10835053540121
+240.75000000000003
  30
 0.0
  11
-850.733401821533
+521.808556069723
  21
-100.30855600000002
+239.75000000000003
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
--174
+cut
  10
-870.7334018215329
+521.808556069723
  20
-92.10835053540121
+239.75000000000003
  30
 0.0
  11
-870.7334018215329
+522.808556069723
  21
-100.30855600000002
+239.75000000000003
  31
 0.0
   0
@@ -11793,55 +11625,51 @@ LINE
   8
 cut
  10
-870.7334018215329
+522.808556069723
  20
-92.10835053540121
+239.75000000000003
  30
 0.0
  11
-864.9767983871958
+522.808556069723
  21
-86.2684116177914
+240.75000000000003
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
-180
+cut
  10
-864.9767983871958
+522.808556069723
  20
-86.2684116177914
+240.75000000000003
  30
 0.0
  11
-850.733401821533
+521.808556069723
  21
-100.30855600000002
+240.75000000000003
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
-80.43938360731835
+cut
  10
-825.7334018215329
+541.8085560697231
  20
-46.45690792865502
+240.75000000000003
  30
 0.0
  11
-850.733401821533
+541.8085560697231
  21
-100.30855600000004
+239.75000000000003
  31
 0.0
   0
@@ -11851,15 +11679,15 @@ LINE
   8
 cut
  10
-859.2201949528585
+541.8085560697231
  20
-80.42847270018159
+239.75000000000003
  30
 0.0
  11
-825.7334018215329
+542.8085560697231
  21
-46.45690792865502
+239.75000000000003
  31
 0.0
   0
@@ -11869,15 +11697,15 @@ LINE
   8
 cut
  10
-864.9767983871958
+542.8085560697231
  20
-86.26841161779141
+239.75000000000003
  30
 0.0
  11
-859.2201949528585
+542.8085560697231
  21
-80.42847270018159
+240.75000000000003
  31
 0.0
   0
@@ -11887,15 +11715,15 @@ LINE
   8
 cut
  10
-873.4668036430659
+542.8085560697231
  20
-92.10835053540121
+240.75000000000003
  30
 0.0
  11
-870.733401821533
+541.8085560697231
  21
-92.10835053540121
+240.75000000000003
  31
 0.0
   0
@@ -11905,15 +11733,15 @@ LINE
   8
 cut
  10
-873.4668036430659
+521.808556069723
  20
-100.30855600000002
+243.25000000000003
  30
 0.0
  11
-873.4668036430659
+521.808556069723
  21
-92.10835053540121
+242.25000000000003
  31
 0.0
   0
@@ -11923,15 +11751,15 @@ LINE
   8
 cut
  10
-870.733401821533
+521.808556069723
  20
-100.30855600000002
+242.25000000000003
  30
 0.0
  11
-873.4668036430659
+522.808556069723
  21
-100.30855600000002
+242.25000000000003
  31
 0.0
   0
@@ -11941,15 +11769,15 @@ LINE
   8
 cut
  10
-778.0000000000001
+522.808556069723
  20
-208.50876146459882
+242.25000000000003
  30
 0.0
  11
-780.733401821533
+522.808556069723
  21
-208.50876146459882
+243.25000000000003
  31
 0.0
   0
@@ -11959,15 +11787,15 @@ LINE
   8
 cut
  10
-778.0000000000001
+522.808556069723
  20
-200.30855600000004
+243.25000000000003
  30
 0.0
  11
-778.0000000000001
+521.808556069723
  21
-208.50876146459882
+243.25000000000003
  31
 0.0
   0
@@ -11977,15 +11805,15 @@ LINE
   8
 cut
  10
-780.733401821533
+541.8085560697231
  20
-200.30855600000004
+243.25000000000003
  30
 0.0
  11
-778.0000000000001
+541.8085560697231
  21
-200.30855600000004
+242.25000000000003
  31
 0.0
   0
@@ -11995,15 +11823,15 @@ LINE
   8
 cut
  10
-792.1412698700124
+541.8085560697231
  20
-83.81172921234263
+242.25000000000003
  30
 0.0
  11
-789.8713984490114
+542.8085560697231
  21
-86.11446043235414
+242.25000000000003
  31
 0.0
   0
@@ -12013,15 +11841,15 @@ LINE
   8
 cut
  10
-789.8713984490114
+542.8085560697231
  20
-86.11446043235414
+242.25000000000003
  30
 0.0
  11
-789.5153135348698
+542.8085560697231
  21
-85.76345682279894
+243.25000000000003
  31
 0.0
   0
@@ -12031,15 +11859,15 @@ LINE
   8
 cut
  10
-789.5153135348698
+542.8085560697231
  20
-85.76345682279894
+243.25000000000003
  30
 0.0
  11
-791.7851849558709
+541.8085560697231
  21
-83.46072560278743
+243.25000000000003
  31
 0.0
   0
@@ -12049,15 +11877,15 @@ LINE
   8
 cut
  10
-791.7851849558709
+521.808556069723
  20
-83.46072560278743
+245.75000000000003
  30
 0.0
  11
-792.1412698700124
+521.808556069723
  21
-83.81172921234263
+244.75000000000003
  31
 0.0
   0
@@ -12067,15 +11895,15 @@ LINE
   8
 cut
  10
-778.6833504553833
+521.808556069723
  20
-94.84175235693415
+244.75000000000003
  30
 0.0
  11
-780.0500513661498
+522.808556069723
  21
-94.84175235693415
+244.75000000000003
  31
 0.0
   0
@@ -12085,15 +11913,15 @@ LINE
   8
 cut
  10
-780.0500513661498
+522.808556069723
  20
-94.84175235693415
+244.75000000000003
  30
 0.0
  11
-780.0500513661498
+522.808556069723
  21
-97.57515417846707
+245.75000000000003
  31
 0.0
   0
@@ -12103,15 +11931,15 @@ LINE
   8
 cut
  10
-780.0500513661498
+522.808556069723
  20
-97.57515417846707
+245.75000000000003
  30
 0.0
  11
-778.6833504553833
+521.808556069723
  21
-97.57515417846707
+245.75000000000003
  31
 0.0
   0
@@ -12121,15 +11949,15 @@ LINE
   8
 cut
  10
-789.8713984490114
+540.808556069723
  20
-214.50265156764593
+246.75000000000003
  30
 0.0
  11
-792.1412698700124
+540.808556069723
  21
-216.8053827876574
+243.75000000000003
  31
 0.0
   0
@@ -12139,15 +11967,15 @@ LINE
   8
 cut
  10
-792.1412698700124
+540.808556069723
  20
-216.8053827876574
+243.75000000000003
  30
 0.0
  11
-791.7851849558709
+543.8085560697231
  21
-217.15638639721263
+243.75000000000003
  31
 0.0
   0
@@ -12157,15 +11985,15 @@ LINE
   8
 cut
  10
-791.7851849558709
+543.8085560697231
  20
-217.15638639721263
+243.75000000000003
  30
 0.0
  11
-789.5153135348698
+543.8085560697231
  21
-214.85365517720115
+246.75000000000003
  31
 0.0
   0
@@ -12175,15 +12003,15 @@ LINE
   8
 cut
  10
-789.5153135348698
+543.8085560697231
  20
-214.85365517720115
+246.75000000000003
  30
 0.0
  11
-789.8713984490114
+540.808556069723
  21
-214.50265156764593
+246.75000000000003
  31
 0.0
   0
@@ -12193,15 +12021,15 @@ LINE
   8
 cut
  10
-859.3255337730535
+536.558556069723
  20
-216.8053827876574
+203.75000000000003
  30
 0.0
  11
-861.5954051940545
+528.0585560697231
  21
-214.50265156764587
+203.75000000000003
  31
 0.0
   0
@@ -12211,15 +12039,15 @@ LINE
   8
 cut
  10
-861.5954051940545
+528.0585560697231
  20
-214.50265156764587
+203.75000000000003
  30
 0.0
  11
-861.951490108196
+528.0585560697231
  21
-214.8536551772011
+203.25000000000003
  31
 0.0
   0
@@ -12229,15 +12057,15 @@ LINE
   8
 cut
  10
-861.951490108196
+528.0585560697231
  20
-214.8536551772011
+203.25000000000003
  30
 0.0
  11
-859.681618687195
+536.558556069723
  21
-217.1563863972126
+203.25000000000003
  31
 0.0
   0
@@ -12247,15 +12075,15 @@ LINE
   8
 cut
  10
-859.681618687195
+536.558556069723
  20
-217.1563863972126
+203.25000000000003
  30
 0.0
  11
-859.3255337730535
+536.558556069723
  21
-216.8053827876574
+203.75000000000003
  31
 0.0
   0
@@ -12265,15 +12093,15 @@ LINE
   8
 cut
  10
-872.7834531876827
+528.0585560697231
  20
-205.77535964306585
+251.50000000000003
  30
 0.0
  11
-871.4167522769161
+536.558556069723
  21
-205.77535964306585
+251.50000000000003
  31
 0.0
   0
@@ -12283,15 +12111,15 @@ LINE
   8
 cut
  10
-871.4167522769161
+536.558556069723
  20
-205.77535964306585
+251.50000000000003
  30
 0.0
  11
-871.4167522769161
+536.558556069723
  21
-203.04195782153292
+252.00000000000003
  31
 0.0
   0
@@ -12301,15 +12129,15 @@ LINE
   8
 cut
  10
-871.4167522769161
+536.558556069723
  20
-203.04195782153292
+252.00000000000003
  30
 0.0
  11
-872.7834531876827
+528.0585560697231
  21
-203.04195782153292
+252.00000000000003
  31
 0.0
   0
@@ -12319,15 +12147,15 @@ LINE
   8
 cut
  10
-861.5954051940544
+528.0585560697231
  20
-86.11446043235415
+252.00000000000003
  30
 0.0
  11
-859.3255337730535
+528.0585560697231
  21
-83.81172921234264
+251.50000000000003
  31
 0.0
   0
@@ -12337,15 +12165,15 @@ LINE
   8
 cut
  10
-859.3255337730535
+512.808556069723
  20
-83.81172921234264
+207.09090909090912
  30
 0.0
  11
-859.681618687195
+517.808556069723
  21
-83.46072560278743
+207.09090909090912
  31
 0.0
   0
@@ -12355,15 +12183,15 @@ LINE
   8
 cut
  10
-859.681618687195
+517.808556069723
  20
-83.46072560278743
+207.09090909090912
  30
 0.0
  11
-861.951490108196
+517.808556069723
  21
-85.76345682279894
+218.1818181818182
  31
 0.0
   0
@@ -12373,15 +12201,15 @@ LINE
   8
 cut
  10
-861.951490108196
+517.808556069723
  20
-85.76345682279894
+218.1818181818182
  30
 0.0
  11
-861.5954051940544
+512.808556069723
  21
-86.11446043235415
+218.1818181818182
  31
 0.0
   0
@@ -12391,15 +12219,15 @@ LINE
   8
 cut
  10
-872.7834531876827
+512.808556069723
  20
-97.57515417846707
+234.81818181818184
  30
 0.0
  11
-871.4167522769161
+517.808556069723
  21
-97.57515417846707
+234.81818181818184
  31
 0.0
   0
@@ -12409,15 +12237,15 @@ LINE
   8
 cut
  10
-871.4167522769161
+517.808556069723
  20
-97.57515417846707
+234.81818181818184
  30
 0.0
  11
-871.4167522769161
+517.808556069723
  21
-94.84175235693415
+245.90909090909093
  31
 0.0
   0
@@ -12427,15 +12255,15 @@ LINE
   8
 cut
  10
-871.4167522769161
+517.808556069723
  20
-94.84175235693415
+245.90909090909093
  30
 0.0
  11
-872.7834531876827
+512.808556069723
  21
-94.84175235693415
+245.90909090909093
  31
 0.0
   0
@@ -12445,15 +12273,15 @@ LINE
   8
 cut
  10
-778.6833504553833
+538.0585560697231
  20
-203.04195782153298
+180.0
  30
 0.0
  11
-780.0500513661498
+541.5585560697231
  21
-203.04195782153298
+180.0
  31
 0.0
   0
@@ -12463,15 +12291,15 @@ LINE
   8
 cut
  10
-780.0500513661498
+541.5585560697231
  20
-203.04195782153298
+180.0
  30
 0.0
  11
-780.0500513661498
+541.5585560697231
  21
-205.7753596430659
+188.00000000000003
  31
 0.0
   0
@@ -12481,15 +12309,15 @@ LINE
   8
 cut
  10
-780.0500513661498
+541.5585560697231
  20
-205.7753596430659
+188.00000000000003
  30
 0.0
  11
-778.6833504553833
+538.0585560697231
  21
-205.7753596430659
+188.00000000000003
  31
 0.0
   0
diff --git a/rocolib/output/BoatWithServoStackBattery/graph-autofold-graph.dxf b/rocolib/output/BoatWithServoStackBattery/graph-autofold-graph.dxf
index 28676372b9ddfb0abcf15b448390ba010a040c45..0b6e553daf44b36710fa232908ac7670b6b545ec 100644
--- a/rocolib/output/BoatWithServoStackBattery/graph-autofold-graph.dxf
+++ b/rocolib/output/BoatWithServoStackBattery/graph-autofold-graph.dxf
@@ -938,110 +938,82 @@ MVIEW
 }
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
 0
  10
-228.00000000000003
+280.00000000000006
  20
-150.30855600000004
+70.00000000000001
  30
 0.0
  11
-228.00000000000003
+280.00000000000006
  21
-150.30855600000004
+298.00000000000006
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
 0
  10
-0.0
+190.00000000000003
  20
-150.30855600000004
+70.00000000000001
  30
 0.0
  11
-228.00000000000003
+190.00000000000003
  21
-150.30855600000004
- 31
-0.0
-  0
-LINE
- 62
-5
-  8
-0
- 10
-0.0
- 20
-150.30855600000004
- 30
-0.0
- 11
-0.0
- 21
-150.30855600000004
+298.00000000000006
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
 0
  10
-0.0
+235.00000000000003
  20
-140.30855600000004
+70.00000000000001
  30
 0.0
  11
-0.0
+190.00000000000003
  21
-150.30855600000004
- 31
-0.0
-  0
-LINE
- 62
-5
-  8
-0
- 10
-60.00000000000001
- 20
-140.30855600000004
- 30
-0.0
- 11
-0.0
- 21
-140.30855600000004
+70.00000000000001
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
 0
  10
-60.00000000000001
+280.00000000000006
  20
-150.30855600000004
+70.00000000000001
  30
 0.0
  11
-60.00000000000001
+235.00000000000003
  21
-140.30855600000004
+70.00000000000001
  31
 0.0
   0
@@ -1051,15 +1023,15 @@ LINE
   8
 0
  10
-133.00000000000003
+260.0
  20
-150.30855600000004
+-2.8421709430404014e-14
  30
 0.0
  11
-60.00000000000001
+190.00000000000003
  21
-150.30855600000004
+-2.8421709430404014e-14
  31
 0.0
   0
@@ -1069,51 +1041,55 @@ LINE
   8
 0
  10
-167.00000000000003
+235.00000000000003
  20
-150.30855600000004
+-2.8421709430404014e-14
  30
 0.0
  11
-157.0
+260.0
  21
-150.30855600000004
+-2.8421709430404014e-14
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
 0
  10
-228.00000000000003
+190.00000000000003
  20
-150.30855600000004
+70.0
  30
 0.0
  11
-228.00000000000003
+190.00000000000003
  21
-150.30855600000004
+-2.8421709430404014e-14
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
 0
  10
-60.00000000000001
+190.00000000000003
  20
-150.30855600000004
+70.0
  30
 0.0
  11
-60.00000000000001
+120.00000000000003
  21
-150.30855600000004
+-2.8421709430404014e-14
  31
 0.0
   0
@@ -1123,15 +1099,15 @@ LINE
   8
 0
  10
-157.0
+190.00000000000003
  20
-150.30855600000004
+-2.8421709430404014e-14
  30
 0.0
  11
-157.0
+120.00000000000003
  21
-116.30855600000002
+-2.8421709430404014e-14
  31
 0.0
   0
@@ -1143,33 +1119,15 @@ DOTTED
   8
 0
  10
-133.00000000000003
+120.00000000000001
  20
-116.30855600000002
+70.0
  30
 0.0
  11
-133.00000000000003
+120.00000000000001
  21
-150.30855600000004
- 31
-0.0
-  0
-LINE
- 62
-5
-  8
-0
- 10
-133.00000000000003
- 20
-80.30855600000002
- 30
 0.0
- 11
-133.00000000000003
- 21
-116.30855600000002
  31
 0.0
   0
@@ -1181,15 +1139,15 @@ DOTTED
   8
 0
  10
-133.00000000000003
+190.00000000000003
  20
-80.30855600000002
+70.00000000000001
  30
 0.0
  11
-157.0
+120.00000000000001
  21
-80.30855600000002
+70.0
  31
 0.0
   0
@@ -1199,15 +1157,15 @@ LINE
   8
 0
  10
-157.0
+96.66666666666666
  20
-116.30855600000002
+70.0
  30
 0.0
  11
-157.0
+120.00000000000001
  21
-80.30855600000002
+70.0
  31
 0.0
   0
@@ -1217,33 +1175,15 @@ LINE
   8
 0
  10
-157.0
+96.66666666666669
  20
-80.30855600000002
- 30
-0.0
- 11
-157.0
- 21
-35.30855600000002
- 31
 0.0
-  0
-LINE
- 62
-5
-  8
-0
- 10
-133.00000000000003
- 20
-35.30855600000002
  30
 0.0
  11
-133.00000000000003
+96.66666666666666
  21
-80.30855600000002
+70.0
  31
 0.0
   0
@@ -1253,69 +1193,75 @@ LINE
   8
 0
  10
-133.00000000000003
+120.00000000000003
  20
-30.308556000000017
+0.0
  30
 0.0
  11
-133.00000000000003
+96.66666666666669
  21
-35.30855600000002
+0.0
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
 0
  10
-157.0
+120.0
  20
-30.308556000000017
+298.00000000000006
  30
 0.0
  11
-133.00000000000003
+190.00000000000003
  21
-30.308556000000017
+298.00000000000006
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
 0
  10
-157.0
+119.99999999999999
  20
-35.30855600000002
+368.00000000000006
  30
 0.0
  11
-157.0
+190.00000000000003
  21
-30.308556000000017
+298.00000000000006
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
 0
  10
-133.00000000000003
+119.99999999999999
  20
-116.30855600000002
+368.00000000000006
  30
 0.0
  11
-113.00000000000001
+120.0
  21
-116.30855600000002
+298.00000000000006
  31
 0.0
   0
@@ -1325,15 +1271,15 @@ LINE
   8
 0
  10
-113.00000000000001
+119.99999999999999
  20
-150.30855600000004
+368.00000000000006
  30
 0.0
  11
-133.00000000000003
+190.0
  21
-150.30855600000004
+368.00000000000006
  31
 0.0
   0
@@ -1345,15 +1291,15 @@ DOTTED
   8
 0
  10
-113.00000000000001
+190.0
  20
-116.30855600000002
+368.00000000000006
  30
 0.0
  11
-113.00000000000001
+190.00000000000003
  21
-150.30855600000004
+298.00000000000006
  31
 0.0
   0
@@ -1363,15 +1309,15 @@ LINE
   8
 0
  10
-113.00000000000001
+259.99999999999994
  20
-116.30855600000002
+368.00000000000006
  30
 0.0
  11
-89.00000000000001
+235.0
  21
-116.30855600000002
+368.00000000000006
  31
 0.0
   0
@@ -1381,15 +1327,15 @@ LINE
   8
 0
  10
-89.00000000000001
+190.0
  20
-150.30855600000004
+368.00000000000006
  30
 0.0
  11
-113.00000000000001
+259.99999999999994
  21
-150.30855600000004
+368.00000000000006
  31
 0.0
   0
@@ -1401,51 +1347,15 @@ DOTTED
   8
 0
  10
-89.00000000000001
+190.00000000000003
  20
-116.30855600000002
+298.00000000000006
  30
 0.0
  11
-89.00000000000001
+235.00000000000003
  21
-150.30855600000004
- 31
-0.0
-  0
-LINE
- 62
-5
-  8
-0
- 10
-89.00000000000001
- 20
-116.30855600000002
- 30
-0.0
- 11
-69.00000000000001
- 21
-116.30855600000002
- 31
-0.0
-  0
-LINE
- 62
-5
-  8
-0
- 10
-69.00000000000001
- 20
-150.30855600000004
- 30
-0.0
- 11
-89.00000000000001
- 21
-150.30855600000004
+298.00000000000006
  31
 0.0
   0
@@ -1457,15 +1367,15 @@ DOTTED
   8
 0
  10
-69.00000000000001
+235.00000000000003
  20
-150.30855600000004
+298.00000000000006
  30
 0.0
  11
-69.00000000000001
+280.00000000000006
  21
-116.30855600000002
+298.00000000000006
  31
 0.0
   0
@@ -1475,15 +1385,15 @@ LINE
   8
 0
  10
-59.00000000000001
+210.00000000000003
  20
-150.30855600000004
+368.00000000000006
  30
 0.0
  11
-69.00000000000001
+280.00000000000006
  21
-150.30855600000004
+368.00000000000006
  31
 0.0
   0
@@ -1493,33 +1403,35 @@ LINE
   8
 0
  10
-59.00000000000001
+235.0
  20
-116.30855600000002
+368.00000000000006
  30
 0.0
  11
-59.00000000000001
+210.00000000000003
  21
-150.30855600000004
+368.00000000000006
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
 0
  10
-69.00000000000001
+280.00000000000006
  20
-116.30855600000002
+298.00000000000006
  30
 0.0
  11
-59.00000000000001
+280.00000000000006
  21
-116.30855600000002
+368.00000000000006
  31
 0.0
   0
@@ -1531,15 +1443,15 @@ DOTTED
   8
 0
  10
-167.00000000000003
+280.00000000000006
  20
-114.16993400081472
+298.00000000000006
  30
 0.0
  11
-228.00000000000003
+350.0
  21
-114.16993400081472
+368.00000000000006
  31
 0.0
   0
@@ -1549,33 +1461,35 @@ LINE
   8
 0
  10
-228.00000000000003
+280.00000000000006
  20
-150.30855600000004
+368.00000000000006
  30
 0.0
  11
-228.00000000000003
+350.0
  21
-114.16993400081472
+368.00000000000006
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
 0
  10
-167.00000000000003
+350.0
  20
-114.16993400081472
+298.0000000000001
  30
 0.0
  11
-167.00000000000003
+350.0
  21
-150.30855600000004
+368.00000000000006
  31
 0.0
   0
@@ -1587,35 +1501,33 @@ DOTTED
   8
 0
  10
-228.00000000000003
+280.00000000000006
  20
-90.16993400081472
+298.00000000000006
  30
 0.0
  11
-167.00000000000003
+350.0
  21
-90.16993400081472
+298.0000000000001
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
 0
  10
-228.00000000000003
+373.3333333333333
  20
-90.16993400081472
+298.0000000000001
  30
 0.0
  11
-228.00000000000003
+350.0
  21
-114.16993400081472
+298.0000000000001
  31
 0.0
   0
@@ -1625,15 +1537,15 @@ LINE
   8
 0
  10
-167.00000000000003
+373.33333333333326
  20
-54.03131200162941
+368.00000000000006
  30
 0.0
  11
-167.00000000000003
+373.3333333333333
  21
-90.16993400081473
+298.0000000000001
  31
 0.0
   0
@@ -1643,69 +1555,75 @@ LINE
   8
 0
  10
-228.00000000000003
+349.99999999999994
  20
-90.16993400081473
+368.00000000000006
  30
 0.0
  11
-228.00000000000003
+373.33333333333326
  21
-54.03131200162941
+368.00000000000006
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
 0
  10
-167.00000000000003
+350.00000000000006
  20
-44.03131200162941
+70.0
  30
 0.0
  11
-167.00000000000003
+280.0000000000001
  21
-54.03131200162941
+69.99999999999997
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
 0
  10
-228.00000000000003
+350.00000000000006
  20
-44.03131200162941
+-2.8421709430404014e-14
  30
 0.0
  11
-167.00000000000003
+280.0000000000001
  21
-44.03131200162941
+69.99999999999996
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
 0
  10
-228.00000000000003
+350.00000000000006
  20
-54.03131200162941
+-2.8421709430404014e-14
  30
 0.0
  11
-228.00000000000003
+350.00000000000006
  21
-44.03131200162941
+69.99999999999999
  31
 0.0
   0
@@ -1715,33 +1633,35 @@ LINE
   8
 0
  10
-238.00000000000003
+350.00000000000006
  20
-90.16993400081472
+-2.8421709430404014e-14
  30
 0.0
  11
-228.00000000000003
+280.00000000000017
  21
-90.16993400081472
+-5.684341886080803e-14
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
 0
  10
-238.00000000000003
+280.00000000000017
  20
-114.16993400081472
+-5.684341886080803e-14
  30
 0.0
  11
-238.00000000000003
+280.0000000000001
  21
-90.16993400081472
+69.99999999999997
  31
 0.0
   0
@@ -1751,15 +1671,15 @@ LINE
   8
 0
  10
-228.00000000000003
+210.0000000000001
  20
-114.16993400081472
+-1.1368683772161605e-13
  30
 0.0
  11
-238.00000000000003
+235.00000000000009
  21
-114.16993400081472
+-8.526512829121203e-14
  31
 0.0
   0
@@ -1769,15 +1689,15 @@ LINE
   8
 0
  10
-157.0
+280.0000000000001
  20
-114.16993400081472
+-5.684341886080803e-14
  30
 0.0
  11
-167.00000000000003
+210.0000000000001
  21
-114.16993400081472
+-1.1368683772161605e-13
  31
 0.0
   0
@@ -1787,15 +1707,15 @@ LINE
   8
 0
  10
-157.0
+373.33333333333337
  20
-90.16993400081472
+0.0
  30
 0.0
  11
-157.0
+350.00000000000006
  21
-114.16993400081472
+0.0
  31
 0.0
   0
@@ -1805,15 +1725,15 @@ LINE
   8
 0
  10
-167.00000000000003
+373.33333333333337
  20
-90.16993400081472
+70.00000000000003
  30
 0.0
  11
-157.0
+373.33333333333337
  21
-90.16993400081472
+0.0
  31
 0.0
   0
@@ -1823,15 +1743,15 @@ LINE
   8
 0
  10
-40.00000000000001
+350.00000000000006
  20
-142.80855600000004
+70.00000000000001
  30
 0.0
  11
-45.0
+373.33333333333337
  21
-142.80855600000004
+70.00000000000003
  31
 0.0
   0
@@ -1841,15 +1761,15 @@ LINE
   8
 0
  10
-45.0
+350.0
  20
-142.80855600000004
+298.0000000000001
  30
 0.0
  11
-40.00000000000001
+350.0
  21
-147.80855600000004
+298.0000000000001
  31
 0.0
   0
@@ -1859,15 +1779,15 @@ LINE
   8
 0
  10
-40.00000000000001
+350.00000000000006
  20
-147.80855600000004
+70.0
  30
 0.0
  11
-20.000000000000004
+350.00000000000006
  21
-147.80855600000004
+70.0
  31
 0.0
   0
@@ -1877,15 +1797,15 @@ LINE
   8
 0
  10
-20.000000000000004
+350.0
  20
-147.80855600000004
+131.0
  30
 0.0
  11
-15.000000000000002
+350.00000000000006
  21
-142.80855600000004
+70.0
  31
 0.0
   0
@@ -1895,15 +1815,15 @@ LINE
   8
 0
  10
-15.000000000000002
+350.0
  20
-142.80855600000004
+141.0
  30
 0.0
  11
-20.000000000000004
+350.0
  21
-142.80855600000004
+131.0
  31
 0.0
   0
@@ -1913,15 +1833,15 @@ LINE
   8
 0
  10
-149.25000000000003
+350.0
  20
-139.2252226666667
+238.00000000000003
  30
 0.0
  11
-149.25000000000003
+350.0
  21
-127.39188933333337
+165.00000000000003
  31
 0.0
   0
@@ -1931,15 +1851,15 @@ LINE
   8
 0
  10
-149.25000000000003
+350.0
  20
-127.39188933333337
+238.00000000000003
  30
 0.0
  11
-149.75
+350.0
  21
-127.39188933333337
+238.00000000000003
  31
 0.0
   0
@@ -1949,15 +1869,15 @@ LINE
   8
 0
  10
-149.75
+350.00000000000006
  20
-127.39188933333337
+70.0
  30
 0.0
  11
-149.75
+350.00000000000006
  21
-139.2252226666667
+70.0
  31
 0.0
   0
@@ -1967,33 +1887,35 @@ LINE
   8
 0
  10
-149.75
+384.00000000000006
  20
-139.2252226666667
+141.0
  30
 0.0
  11
-149.25000000000003
+350.0
  21
-139.2252226666667
+141.0
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
 0
  10
-149.00000000000003
+350.0
  20
-31.558556000000014
+165.00000000000003
  30
 0.0
  11
-151.50000000000003
+384.00000000000006
  21
-31.558556000000014
+165.00000000000006
  31
 0.0
   0
@@ -2003,33 +1925,35 @@ LINE
   8
 0
  10
-151.50000000000003
+420.00000000000006
  20
-31.558556000000014
+141.00000000000003
  30
 0.0
  11
-149.00000000000003
+384.00000000000006
  21
-34.05855600000001
+141.0
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
 0
  10
-149.00000000000003
+420.00000000000006
  20
-34.05855600000001
+141.00000000000003
  30
 0.0
  11
-141.0
+420.00000000000006
  21
-34.05855600000001
+165.00000000000006
  31
 0.0
   0
@@ -2039,15 +1963,15 @@ LINE
   8
 0
  10
-141.0
+384.00000000000006
  20
-34.05855600000001
+165.00000000000006
  30
 0.0
  11
-138.5
+420.00000000000006
  21
-31.558556000000014
+165.00000000000006
  31
 0.0
   0
@@ -2057,15 +1981,15 @@ LINE
   8
 0
  10
-138.5
+420.00000000000006
  20
-31.558556000000014
+165.00000000000006
  30
 0.0
  11
-141.0
+465.00000000000006
  21
-31.558556000000014
+165.00000000000009
  31
 0.0
   0
@@ -2075,15 +1999,15 @@ LINE
   8
 0
  10
-114.00000000000001
+465.00000000000006
  20
-127.30855600000004
+141.00000000000006
  30
 0.0
  11
-118.00000000000001
+420.00000000000006
  21
-127.30855600000004
+141.00000000000003
  31
 0.0
   0
@@ -2093,15 +2017,15 @@ LINE
   8
 0
  10
-118.00000000000001
+465.00000000000006
  20
-127.30855600000004
+165.00000000000009
  30
 0.0
  11
-118.00000000000001
+465.00000000000006
  21
-139.30855600000004
+141.00000000000006
  31
 0.0
   0
@@ -2111,15 +2035,15 @@ LINE
   8
 0
  10
-118.00000000000001
+350.0
  20
-139.30855600000004
+165.00000000000003
  30
 0.0
  11
-114.00000000000001
+350.0
  21
-139.30855600000004
+185.00000000000003
  31
 0.0
   0
@@ -2129,33 +2053,35 @@ LINE
   8
 0
  10
-114.00000000000001
+384.00000000000006
  20
-139.30855600000004
+185.00000000000006
  30
 0.0
  11
-114.00000000000001
+384.00000000000006
  21
-127.30855600000004
+165.00000000000006
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
 0
  10
-126.00000000000001
+350.0
  20
-128.808556
+185.00000000000003
  30
 0.0
  11
-130.0
+384.00000000000006
  21
-128.808556
+185.00000000000006
  31
 0.0
   0
@@ -2165,15 +2091,15 @@ LINE
   8
 0
  10
-130.0
+350.0
  20
-128.808556
+185.00000000000003
  30
 0.0
  11
-130.0
+350.0
  21
-137.808556
+209.00000000000003
  31
 0.0
   0
@@ -2183,33 +2109,35 @@ LINE
   8
 0
  10
-130.0
+384.00000000000006
  20
-137.808556
+209.00000000000006
  30
 0.0
  11
-126.00000000000001
+384.00000000000006
  21
-137.808556
+185.00000000000006
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
 0
  10
-126.00000000000001
+350.0
  20
-137.808556
+209.00000000000003
  30
 0.0
  11
-126.00000000000001
+384.00000000000006
  21
-128.808556
+209.00000000000006
  31
 0.0
   0
@@ -2219,15 +2147,15 @@ LINE
   8
 0
  10
-89.50000000000001
+350.0
  20
-127.30855600000004
+209.00000000000006
  30
 0.0
  11
-112.50000000000001
+350.0
  21
-127.30855600000004
+229.00000000000006
  31
 0.0
   0
@@ -2237,33 +2165,35 @@ LINE
   8
 0
  10
-112.50000000000001
+384.00000000000006
  20
-127.30855600000004
+229.00000000000006
  30
 0.0
  11
-112.50000000000001
+384.00000000000006
  21
-139.30855600000004
+209.00000000000006
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
 0
  10
-112.50000000000001
+384.00000000000006
  20
-139.30855600000004
+229.00000000000006
  30
 0.0
  11
-89.50000000000001
+350.0
  21
-139.30855600000004
+229.00000000000006
  31
 0.0
   0
@@ -2273,15 +2203,15 @@ LINE
   8
 0
  10
-89.50000000000001
+384.00000000000006
  20
-139.30855600000004
+239.00000000000006
  30
 0.0
  11
-89.50000000000001
+384.00000000000006
  21
-127.30855600000004
+229.00000000000006
  31
 0.0
   0
@@ -2291,15 +2221,15 @@ LINE
   8
 0
  10
-84.0
+350.0
  20
-127.30855600000004
+239.00000000000006
  30
 0.0
  11
-88.00000000000001
+384.00000000000006
  21
-127.30855600000004
+239.00000000000006
  31
 0.0
   0
@@ -2309,15 +2239,15 @@ LINE
   8
 0
  10
-88.00000000000001
+350.0
  20
-127.30855600000004
+229.00000000000006
  30
 0.0
  11
-88.00000000000001
+350.0
  21
-139.30855600000004
+239.00000000000006
  31
 0.0
   0
@@ -2327,15 +2257,15 @@ LINE
   8
 0
  10
-88.00000000000001
+350.0
  20
-139.30855600000004
+298.00000000000006
  30
 0.0
  11
-84.0
+411.65427803486153
  21
-139.30855600000004
+298.0000000000001
  31
 0.0
   0
@@ -2345,33 +2275,35 @@ LINE
   8
 0
  10
-84.0
+411.65427803486153
  20
-139.30855600000004
+238.00000000000009
  30
 0.0
  11
-84.0
+350.0
  21
-127.30855600000004
+238.00000000000003
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
 0
  10
-61.50000000000001
+411.65427803486153
  20
-127.64188933333337
+238.00000000000009
  30
 0.0
  11
-66.50000000000001
+411.65427803486153
  21
-127.64188933333337
+298.0000000000001
  31
 0.0
   0
@@ -2381,51 +2313,55 @@ LINE
   8
 0
  10
-66.50000000000001
+438.65427803486153
  20
-127.64188933333337
+238.00000000000009
  30
 0.0
  11
-66.50000000000001
+411.65427803486153
  21
-138.9752226666667
+238.00000000000009
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
 0
  10
-66.50000000000001
+438.65427803486153
  20
-138.9752226666667
+298.0000000000001
  30
 0.0
  11
-61.50000000000001
+438.65427803486153
  21
-138.9752226666667
+238.00000000000009
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
 0
  10
-185.00000000000003
+411.65427803486153
  20
-95.66993400081472
+298.0000000000001
  30
 0.0
  11
-196.00000000000003
+438.65427803486153
  21
-95.66993400081472
+298.0000000000001
  31
 0.0
   0
@@ -2435,15 +2371,15 @@ LINE
   8
 0
  10
-196.00000000000003
+500.30855606972295
  20
-95.66993400081472
+238.0000000000001
  30
 0.0
  11
-196.00000000000003
+438.65427803486153
  21
-108.66993400081472
+238.00000000000009
  31
 0.0
   0
@@ -2453,15 +2389,15 @@ LINE
   8
 0
  10
-196.00000000000003
+500.30855606972295
  20
-108.66993400081472
+298.00000000000017
  30
 0.0
  11
-185.00000000000003
+500.30855606972295
  21
-108.66993400081472
+238.0000000000001
  31
 0.0
   0
@@ -2471,15 +2407,15 @@ LINE
   8
 0
  10
-185.00000000000003
+438.6542780348615
  20
-108.66993400081472
+298.0000000000001
  30
 0.0
  11
-185.00000000000003
+500.30855606972295
  21
-95.66993400081472
+298.00000000000017
  31
 0.0
   0
@@ -2489,15 +2425,15 @@ LINE
   8
 0
  10
-216.50000000000003
+411.6542780348615
  20
-97.16993400081472
+298.0000000000001
  30
 0.0
  11
-222.50000000000003
+411.6542780348615
  21
-97.16993400081472
+315.0000000000001
  31
 0.0
   0
@@ -2507,33 +2443,35 @@ LINE
   8
 0
  10
-222.50000000000003
+438.6542780348615
  20
-97.16993400081472
+315.00000000000017
  30
 0.0
  11
-222.50000000000003
+438.6542780348615
  21
-107.16993400081472
+298.0000000000001
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
 0
  10
-222.50000000000003
+411.6542780348615
  20
-107.16993400081472
+315.0000000000001
  30
 0.0
  11
-216.50000000000003
+438.6542780348615
  21
-107.16993400081472
+315.00000000000017
  31
 0.0
   0
@@ -2543,15 +2481,15 @@ LINE
   8
 0
  10
-216.50000000000003
+411.6542780348615
  20
-107.16993400081472
+315.0000000000001
  30
 0.0
  11
-216.50000000000003
+411.6542780348615
  21
-97.16993400081472
+375.00000000000017
  31
 0.0
   0
@@ -2561,33 +2499,35 @@ LINE
   8
 0
  10
-216.90909090909093
+438.6542780348615
  20
-46.5313120016294
+375.00000000000017
  30
 0.0
  11
-216.90909090909093
+438.6542780348615
  21
-51.53131200162941
+315.00000000000017
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
 0
  10
-216.90909090909093
+411.6542780348615
  20
-51.53131200162941
+375.00000000000017
  30
 0.0
  11
-205.81818181818184
+438.6542780348615
  21
-51.53131200162941
+375.00000000000017
  31
 0.0
   0
@@ -2597,15 +2537,15 @@ LINE
   8
 0
  10
-205.81818181818184
+411.6542780348614
  20
-51.53131200162941
+375.00000000000017
  30
 0.0
  11
-205.81818181818184
+411.6542780348614
  21
-46.5313120016294
+392.00000000000017
  31
 0.0
   0
@@ -2615,33 +2555,35 @@ LINE
   8
 0
  10
-189.18181818181822
+438.65427803486136
  20
-46.5313120016294
+392.00000000000017
  30
 0.0
  11
-189.18181818181822
+438.65427803486136
  21
-51.53131200162941
+375.00000000000017
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
 0
  10
-189.18181818181822
+438.65427803486136
  20
-51.53131200162941
+392.00000000000017
  30
 0.0
  11
-178.09090909090912
+411.6542780348614
  21
-51.53131200162941
+392.00000000000017
  31
 0.0
   0
@@ -2651,15 +2593,15 @@ LINE
   8
 0
  10
-178.09090909090912
+438.65427803486136
  20
-51.53131200162941
+402.00000000000017
  30
 0.0
  11
-178.09090909090912
+438.65427803486136
  21
-46.5313120016294
+392.00000000000017
  31
 0.0
   0
@@ -2669,15 +2611,15 @@ LINE
   8
 0
  10
-235.50000000000003
+411.6542780348614
  20
-106.16993400081472
+402.00000000000017
  30
 0.0
  11
-230.50000000000003
+438.65427803486136
  21
-106.16993400081472
+402.00000000000017
  31
 0.0
   0
@@ -2687,15 +2629,15 @@ LINE
   8
 0
  10
-230.50000000000003
+411.6542780348614
  20
-106.16993400081472
+392.00000000000017
  30
 0.0
  11
-230.50000000000003
+411.6542780348614
  21
-98.16993400081472
+402.00000000000017
  31
 0.0
   0
@@ -2705,15 +2647,15 @@ LINE
   8
 0
  10
-230.50000000000003
+96.66666666666666
  20
-98.16993400081472
+368.00000000000006
  30
 0.0
  11
-235.50000000000003
+120.0
  21
-98.16993400081472
+368.00000000000006
  31
 0.0
   0
@@ -2723,15 +2665,15 @@ LINE
   8
 0
  10
-159.5
+96.66666666666666
  20
-98.16993400081472
+298.00000000000006
  30
 0.0
  11
-164.50000000000003
+96.66666666666666
  21
-98.16993400081472
+368.00000000000006
  31
 0.0
   0
@@ -2741,15 +2683,15 @@ LINE
   8
 0
  10
-164.50000000000003
+120.0
  20
-98.16993400081472
+298.00000000000006
  30
 0.0
  11
-164.50000000000003
+96.66666666666666
  21
-106.16993400081472
+298.00000000000006
  31
 0.0
   0
@@ -2759,15 +2701,15 @@ LINE
   8
 0
  10
-164.50000000000003
+120.00000000000001
  20
-106.16993400081472
+70.00000000000001
  30
 0.0
  11
-159.5
+120.00000000000001
  21
-106.16993400081472
+70.00000000000001
  31
 0.0
   0
@@ -2777,15 +2719,15 @@ LINE
   8
 0
  10
-476.00000000000006
+120.0
  20
-150.30855600000004
+298.00000000000006
  30
 0.0
  11
-476.00000000000006
+120.0
  21
-150.30855600000004
+298.00000000000006
  31
 0.0
   0
@@ -2795,15 +2737,15 @@ LINE
   8
 0
  10
-248.00000000000006
+110.0
  20
-150.30855600000004
+298.00000000000006
  30
 0.0
  11
-476.00000000000006
+120.0
  21
-150.30855600000004
+298.00000000000006
  31
 0.0
   0
@@ -2813,15 +2755,15 @@ LINE
   8
 0
  10
-248.00000000000006
+110.0
  20
-150.30855600000004
+238.00000000000003
  30
 0.0
  11
-248.00000000000006
+110.0
  21
-150.30855600000004
+298.00000000000006
  31
 0.0
   0
@@ -2831,15 +2773,15 @@ LINE
   8
 0
  10
-309.0
+120.0
  20
-150.30855600000004
+238.00000000000003
  30
 0.0
  11
-248.00000000000006
+110.0
  21
-150.30855600000004
+238.00000000000003
  31
 0.0
   0
@@ -2849,15 +2791,15 @@ LINE
   8
 0
  10
-319.0
+120.0
  20
-150.30855600000004
+165.00000000000003
  30
 0.0
  11
-309.0
+120.0
  21
-150.30855600000004
+238.00000000000003
  31
 0.0
   0
@@ -2867,15 +2809,15 @@ LINE
   8
 0
  10
-416.00000000000006
+120.00000000000001
  20
-150.30855600000004
+131.0
  30
 0.0
  11
-343.00000000000006
+120.0
  21
-150.30855600000004
+141.0
  31
 0.0
   0
@@ -2885,15 +2827,15 @@ LINE
   8
 0
  10
-416.00000000000006
+120.00000000000001
  20
-150.30855600000004
+70.00000000000001
  30
 0.0
  11
-416.00000000000006
+120.00000000000001
  21
-150.30855600000004
+70.00000000000001
  31
 0.0
   0
@@ -2903,15 +2845,15 @@ LINE
   8
 0
  10
-248.00000000000006
+120.0
  20
-150.30855600000004
+238.00000000000003
  30
 0.0
  11
-248.00000000000006
+120.0
  21
-150.30855600000004
+238.00000000000003
  31
 0.0
   0
@@ -2921,15 +2863,15 @@ LINE
   8
 0
  10
-319.0
+120.00000000000001
  20
-116.30855600000002
+141.0
  30
 0.0
  11
-319.0
+86.00000000000001
  21
-150.30855600000004
+141.0
  31
 0.0
   0
@@ -2941,15 +2883,15 @@ DOTTED
   8
 0
  10
-343.00000000000006
+86.00000000000001
  20
-150.30855600000004
+165.00000000000003
  30
 0.0
  11
-343.00000000000006
+120.00000000000001
  21
-116.30855600000002
+165.00000000000003
  31
 0.0
   0
@@ -2959,15 +2901,15 @@ LINE
   8
 0
  10
-319.0
+50.0
  20
-80.30855600000002
+165.00000000000003
  30
 0.0
  11
-319.0
+86.00000000000001
  21
-116.30855600000002
+165.00000000000003
  31
 0.0
   0
@@ -2979,15 +2921,15 @@ DOTTED
   8
 0
  10
-319.0
+50.0
  20
-80.30855600000002
+165.00000000000003
  30
 0.0
  11
-343.00000000000006
+50.0
  21
-80.30855600000002
+141.0
  31
 0.0
   0
@@ -2997,15 +2939,15 @@ LINE
   8
 0
  10
-343.00000000000006
+86.00000000000001
  20
-116.30855600000002
+141.0
  30
 0.0
  11
-343.00000000000006
+50.0
  21
-80.30855600000002
+141.0
  31
 0.0
   0
@@ -3015,15 +2957,15 @@ LINE
   8
 0
  10
-343.00000000000006
+50.0
  20
-80.30855600000002
+141.0
  30
 0.0
  11
-343.00000000000006
+5.000000000000001
  21
-35.30855600000002
+141.0
  31
 0.0
   0
@@ -3033,15 +2975,15 @@ LINE
   8
 0
  10
-319.0
+5.000000000000001
  20
-35.30855600000002
+165.00000000000003
  30
 0.0
  11
-319.0
+50.0
  21
-80.30855600000002
+165.00000000000003
  31
 0.0
   0
@@ -3051,15 +2993,15 @@ LINE
   8
 0
  10
-343.00000000000006
+0.0
  20
-35.30855600000002
+165.00000000000003
  30
 0.0
  11
-319.0
+5.000000000000001
  21
-35.30855600000002
+165.00000000000003
  31
 0.0
   0
@@ -3069,15 +3011,15 @@ LINE
   8
 0
  10
-343.00000000000006
+0.0
  20
-150.30855600000004
+141.0
  30
 0.0
  11
-363.00000000000006
+0.0
  21
-150.30855600000004
+165.00000000000003
  31
 0.0
   0
@@ -3087,35 +3029,15 @@ LINE
   8
 0
  10
-363.00000000000006
+5.000000000000001
  20
-116.30855600000002
+141.0
  30
 0.0
  11
-343.00000000000006
- 21
-116.30855600000002
- 31
-0.0
-  0
-LINE
-  6
-DOTTED
- 62
-1
-  8
-0
- 10
-363.00000000000006
- 20
-150.30855600000004
- 30
 0.0
- 11
-363.00000000000006
  21
-116.30855600000002
+141.0
  31
 0.0
   0
@@ -3125,15 +3047,15 @@ LINE
   8
 0
  10
-363.00000000000006
+86.00000000000001
  20
-150.30855600000004
+165.00000000000003
  30
 0.0
  11
-387.0
+86.00000000000001
  21
-150.30855600000004
+185.00000000000003
  31
 0.0
   0
@@ -3143,15 +3065,15 @@ LINE
   8
 0
  10
-387.0
+120.00000000000001
  20
-116.30855600000002
+185.00000000000003
  30
 0.0
  11
-363.00000000000006
+120.00000000000001
  21
-116.30855600000002
+165.00000000000003
  31
 0.0
   0
@@ -3163,33 +3085,15 @@ DOTTED
   8
 0
  10
-387.0
- 20
-150.30855600000004
- 30
-0.0
- 11
-387.0
- 21
-116.30855600000002
- 31
-0.0
-  0
-LINE
- 62
-5
-  8
-0
- 10
-387.0
+86.00000000000001
  20
-150.30855600000004
+185.00000000000003
  30
 0.0
  11
-407.00000000000006
+120.00000000000001
  21
-150.30855600000004
+185.00000000000003
  31
 0.0
   0
@@ -3199,53 +3103,53 @@ LINE
   8
 0
  10
-407.00000000000006
+86.00000000000001
  20
-116.30855600000002
+185.00000000000003
  30
 0.0
  11
-387.0
+86.00000000000001
  21
-116.30855600000002
+209.00000000000003
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
 0
  10
-407.00000000000006
+120.00000000000001
  20
-116.30855600000002
+209.00000000000003
  30
 0.0
  11
-407.00000000000006
+120.00000000000001
  21
-150.30855600000004
+185.00000000000003
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
 0
  10
-417.00000000000006
+86.00000000000001
  20
-116.30855600000002
+209.00000000000003
  30
 0.0
  11
-407.00000000000006
+120.00000000000001
  21
-116.30855600000002
+209.00000000000003
  31
 0.0
   0
@@ -3255,15 +3159,15 @@ LINE
   8
 0
  10
-417.00000000000006
+86.00000000000001
  20
-150.30855600000004
+209.00000000000003
  30
 0.0
  11
-417.00000000000006
+86.00000000000001
  21
-116.30855600000002
+229.00000000000003
  31
 0.0
   0
@@ -3273,33 +3177,35 @@ LINE
   8
 0
  10
-407.00000000000006
+120.00000000000001
  20
-150.30855600000004
+229.00000000000003
  30
 0.0
  11
-417.00000000000006
+120.00000000000001
  21
-150.30855600000004
+209.00000000000003
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
 0
  10
-476.00000000000006
+120.00000000000001
  20
-150.30855600000004
+229.00000000000003
  30
 0.0
  11
-476.00000000000006
+86.00000000000001
  21
-88.65427796513858
+229.00000000000003
  31
 0.0
   0
@@ -3309,35 +3215,33 @@ LINE
   8
 0
  10
-416.00000000000006
+120.00000000000001
  20
-88.65427796513858
+239.00000000000003
  30
 0.0
  11
-416.00000000000006
+120.00000000000001
  21
-150.30855600000004
+229.00000000000003
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
 0
  10
-416.00000000000006
+86.00000000000001
  20
-88.65427796513858
+239.00000000000003
  30
 0.0
  11
-476.00000000000006
+120.00000000000001
  21
-88.65427796513858
+239.00000000000003
  31
 0.0
   0
@@ -3347,15 +3251,15 @@ LINE
   8
 0
  10
-416.00000000000006
+86.00000000000001
  20
-61.65427796513857
+229.00000000000003
  30
 0.0
  11
-416.00000000000006
+86.00000000000001
  21
-88.65427796513858
+239.00000000000003
  31
 0.0
   0
@@ -3367,35 +3271,33 @@ DOTTED
   8
 0
  10
-476.00000000000006
+83.86137800081468
  20
-61.65427796513857
+131.0
  30
 0.0
  11
-416.00000000000006
+83.86137800081468
  21
-61.65427796513857
+70.00000000000001
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
 0
  10
-476.00000000000006
+120.00000000000001
  20
-88.65427796513858
+70.00000000000001
  30
 0.0
  11
-476.00000000000006
+83.86137800081468
  21
-61.65427796513857
+70.00000000000001
  31
 0.0
   0
@@ -3405,51 +3307,55 @@ LINE
   8
 0
  10
-416.00000000000006
+83.86137800081468
  20
--6.972288701945219e-08
+131.0
  30
 0.0
  11
-416.00000000000006
+120.0
  21
-61.65427796513857
+131.0
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
 0
  10
-476.00000000000006
+59.86137800081469
  20
--6.972288701945219e-08
+70.00000000000001
  30
 0.0
  11
-416.00000000000006
+59.86137800081469
  21
--6.972288701945219e-08
+131.0
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
 0
  10
-476.00000000000006
+59.86137800081469
  20
-61.65427796513857
+70.00000000000001
  30
 0.0
  11
-476.00000000000006
+83.86137800081468
  21
--6.972288701945219e-08
+70.00000000000001
  31
 0.0
   0
@@ -3459,15 +3365,15 @@ LINE
   8
 0
  10
-476.00000000000006
+23.722756001629364
  20
-88.65427796513858
+131.0
  30
 0.0
  11
-493.00000000000006
+59.86137800081469
  21
-88.65427796513858
+131.0
  31
 0.0
   0
@@ -3477,35 +3383,33 @@ LINE
   8
 0
  10
-493.00000000000006
+59.86137800081469
  20
-61.65427796513857
+70.0
  30
 0.0
  11
-476.00000000000006
+23.722756001629364
  21
-61.65427796513857
+70.0
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
 0
  10
-493.00000000000006
+13.722756001629365
  20
-88.65427796513858
+131.0
  30
 0.0
  11
-493.00000000000006
+23.722756001629364
  21
-61.65427796513857
+131.0
  31
 0.0
   0
@@ -3515,15 +3419,15 @@ LINE
   8
 0
  10
-493.00000000000006
+13.722756001629365
  20
-88.65427796513858
+70.0
  30
 0.0
  11
-553.0000000000001
+13.722756001629365
  21
-88.65427796513858
+131.0
  31
 0.0
   0
@@ -3533,35 +3437,33 @@ LINE
   8
 0
  10
-553.0000000000001
+23.722756001629364
  20
-61.65427796513857
+70.0
  30
 0.0
  11
-493.00000000000006
+13.722756001629365
  21
-61.65427796513857
+70.0
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
 0
  10
-553.0000000000001
+59.86137800081469
  20
-88.65427796513858
+60.00000000000001
  30
 0.0
  11
-553.0000000000001
+59.86137800081469
  21
-61.65427796513857
+70.00000000000001
  31
 0.0
   0
@@ -3571,15 +3473,15 @@ LINE
   8
 0
  10
-553.0000000000001
+83.86137800081468
  20
-88.65427796513858
+60.00000000000001
  30
 0.0
  11
-570.0000000000001
+59.86137800081469
  21
-88.65427796513858
+60.00000000000001
  31
 0.0
   0
@@ -3589,35 +3491,33 @@ LINE
   8
 0
  10
-570.0000000000001
+83.86137800081468
  20
-61.65427796513857
+70.00000000000001
  30
 0.0
  11
-553.0000000000001
+83.86137800081468
  21
-61.65427796513857
+60.00000000000001
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
 0
  10
-570.0000000000001
+83.86137800081468
  20
-61.65427796513857
+141.0
  30
 0.0
  11
-570.0000000000001
+83.86137800081468
  21
-88.65427796513858
+131.0
  31
 0.0
   0
@@ -3627,15 +3527,15 @@ LINE
   8
 0
  10
-580.0000000000001
+59.86137800081469
  20
-61.65427796513857
+141.0
  30
 0.0
  11
-570.0000000000001
+83.86137800081468
  21
-61.65427796513857
+141.0
  31
 0.0
   0
@@ -3645,15 +3545,15 @@ LINE
   8
 0
  10
-580.0000000000001
+59.86137800081469
  20
-88.65427796513858
+131.0
  30
 0.0
  11
-580.0000000000001
+59.86137800081469
  21
-61.65427796513857
+141.0
  31
 0.0
   0
@@ -3663,15 +3563,15 @@ LINE
   8
 0
  10
-570.0000000000001
+236.91666666666669
  20
-88.65427796513858
+17.74999999999997
  30
 0.0
  11
-580.0000000000001
+213.08333333333334
  21
-88.65427796513858
+17.74999999999997
  31
 0.0
   0
@@ -3681,15 +3581,15 @@ LINE
   8
 0
  10
-270.43181818181824
+213.08333333333334
  20
-158.058556
+17.74999999999997
  30
 0.0
  11
-258.8409090909091
+213.08333333333334
  21
-158.058556
+17.249999999999975
  31
 0.0
   0
@@ -3699,15 +3599,15 @@ LINE
   8
 0
  10
-258.8409090909091
+213.08333333333334
  20
-158.058556
+17.249999999999975
  30
 0.0
  11
-258.8409090909091
+236.91666666666669
  21
-157.55855600000004
+17.249999999999975
  31
 0.0
   0
@@ -3717,15 +3617,15 @@ LINE
   8
 0
  10
-258.8409090909091
+236.91666666666669
  20
-157.55855600000004
+17.249999999999975
  30
 0.0
  11
-270.43181818181824
+236.91666666666669
  21
-157.55855600000004
+17.74999999999997
  31
 0.0
   0
@@ -3735,15 +3635,15 @@ LINE
   8
 0
  10
-270.43181818181824
+102.50000000000001
  20
-157.55855600000004
+23.333333333333318
  30
 0.0
  11
-270.43181818181824
+114.1666666666667
  21
-158.058556
+23.333333333333318
  31
 0.0
   0
@@ -3753,15 +3653,15 @@ LINE
   8
 0
  10
-298.159090909091
+114.1666666666667
  20
-158.058556
+23.333333333333318
  30
 0.0
  11
-286.56818181818187
+114.16666666666669
  21
-158.058556
+46.66666666666666
  31
 0.0
   0
@@ -3771,15 +3671,15 @@ LINE
   8
 0
  10
-286.56818181818187
+114.16666666666669
  20
-158.058556
+46.66666666666666
  30
 0.0
  11
-286.56818181818187
+102.50000000000004
  21
-157.55855600000004
+46.66666666666666
  31
 0.0
   0
@@ -3789,15 +3689,15 @@ LINE
   8
 0
  10
-286.56818181818187
+213.08333333333334
  20
-157.55855600000004
+350.25
  30
 0.0
  11
-298.159090909091
+236.91666666666666
  21
-157.55855600000004
+350.25
  31
 0.0
   0
@@ -3807,15 +3707,15 @@ LINE
   8
 0
  10
-298.159090909091
+236.91666666666666
  20
-157.55855600000004
+350.25
  30
 0.0
  11
-298.159090909091
+236.91666666666666
  21
-158.058556
+350.75
  31
 0.0
   0
@@ -3825,15 +3725,15 @@ LINE
   8
 0
  10
-326.75000000000006
+236.91666666666666
  20
-127.39188933333335
+350.75
  30
 0.0
  11
-326.75000000000006
+213.08333333333334
  21
-139.2252226666667
+350.75
  31
 0.0
   0
@@ -3843,15 +3743,15 @@ LINE
   8
 0
  10
-326.75000000000006
+213.08333333333334
  20
-139.2252226666667
+350.75
  30
 0.0
  11
-326.25000000000006
+213.08333333333334
  21
-139.2252226666667
+350.25
  31
 0.0
   0
@@ -3861,15 +3761,15 @@ LINE
   8
 0
  10
-326.25000000000006
+233.08333333333334
  20
-139.2252226666667
+350.25
  30
 0.0
  11
-326.25000000000006
+256.9166666666667
  21
-127.39188933333335
+350.25
  31
 0.0
   0
@@ -3879,15 +3779,15 @@ LINE
   8
 0
  10
-326.25000000000006
+256.9166666666667
  20
-127.39188933333335
+350.25
  30
 0.0
  11
-326.75000000000006
+256.9166666666667
  21
-127.39188933333335
+350.75
  31
 0.0
   0
@@ -3897,15 +3797,15 @@ LINE
   8
 0
  10
-335.25000000000006
+256.9166666666667
  20
-39.30855600000002
+350.75
  30
 0.0
  11
-326.75000000000006
+233.08333333333334
  21
-39.30855600000002
+350.75
  31
 0.0
   0
@@ -3915,15 +3815,15 @@ LINE
   8
 0
  10
-326.75000000000006
+233.08333333333334
  20
-39.30855600000002
+350.75
  30
 0.0
  11
-326.75000000000006
+233.08333333333334
  21
-38.80855600000002
+350.25
  31
 0.0
   0
@@ -3933,15 +3833,15 @@ LINE
   8
 0
  10
-326.75000000000006
+367.5
  20
-38.80855600000002
+344.6666666666668
  30
 0.0
  11
-335.25000000000006
+355.83333333333337
  21
-38.80855600000002
+344.6666666666668
  31
 0.0
   0
@@ -3951,15 +3851,15 @@ LINE
   8
 0
  10
-335.25000000000006
+355.83333333333337
  20
-38.80855600000002
+344.6666666666668
  30
 0.0
  11
-335.25000000000006
+355.83333333333337
  21
-39.30855600000002
+321.3333333333334
  31
 0.0
   0
@@ -3969,15 +3869,15 @@ LINE
   8
 0
  10
-362.00000000000006
+355.83333333333337
  20
-139.30855600000004
+321.3333333333334
  30
 0.0
  11
-358.00000000000006
+367.50000000000006
  21
-139.30855600000004
+321.3333333333334
  31
 0.0
   0
@@ -3987,15 +3887,15 @@ LINE
   8
 0
  10
-358.00000000000006
+256.91666666666674
  20
-139.30855600000004
+17.749999999999915
  30
 0.0
  11
-358.00000000000006
+233.08333333333343
  21
-127.30855600000004
+17.74999999999989
  31
 0.0
   0
@@ -4005,15 +3905,15 @@ LINE
   8
 0
  10
-358.00000000000006
+233.08333333333343
  20
-127.30855600000004
+17.74999999999989
  30
 0.0
  11
-362.00000000000006
+233.08333333333343
  21
-127.30855600000004
+17.249999999999886
  31
 0.0
   0
@@ -4023,15 +3923,15 @@ LINE
   8
 0
  10
-362.00000000000006
+233.08333333333343
  20
-127.30855600000004
+17.249999999999886
  30
 0.0
  11
-362.00000000000006
+256.91666666666674
  21
-139.30855600000004
+17.24999999999992
  31
 0.0
   0
@@ -4041,15 +3941,15 @@ LINE
   8
 0
  10
-350.0
+256.91666666666674
  20
-137.808556
+17.24999999999992
  30
 0.0
  11
-346.0
+256.91666666666674
  21
-137.808556
+17.749999999999915
  31
 0.0
   0
@@ -4059,15 +3959,15 @@ LINE
   8
 0
  10
-346.0
+367.5000000000001
  20
-137.808556
+46.66666666666669
  30
 0.0
  11
-346.0
+355.8333333333334
  21
-128.808556
+46.66666666666666
  31
 0.0
   0
@@ -4077,15 +3977,15 @@ LINE
   8
 0
  10
-346.0
+355.8333333333334
  20
-128.808556
+46.66666666666666
  30
 0.0
  11
-350.0
+355.8333333333334
  21
-128.808556
+23.333333333333346
  31
 0.0
   0
@@ -4095,15 +3995,15 @@ LINE
   8
 0
  10
-350.0
+355.8333333333334
  20
-128.808556
+23.333333333333346
  30
 0.0
  11
-350.0
+367.50000000000006
  21
-137.808556
+23.333333333333346
  31
 0.0
   0
@@ -4113,15 +4013,15 @@ LINE
   8
 0
  10
-386.5
+342.2500000000001
  20
-139.30855600000004
+92.43181818181819
  30
 0.0
  11
-363.5
+342.2500000000001
  21
-139.30855600000004
+80.84090909090908
  31
 0.0
   0
@@ -4131,15 +4031,15 @@ LINE
   8
 0
  10
-363.5
+342.2500000000001
  20
-139.30855600000004
+80.84090909090908
  30
 0.0
  11
-363.5
+342.7500000000001
  21
-127.30855600000004
+80.84090909090908
  31
 0.0
   0
@@ -4149,15 +4049,15 @@ LINE
   8
 0
  10
-363.5
+342.7500000000001
  20
-127.30855600000004
+80.84090909090908
  30
 0.0
  11
-386.5
+342.7500000000001
  21
-127.30855600000004
+92.43181818181819
  31
 0.0
   0
@@ -4167,15 +4067,15 @@ LINE
   8
 0
  10
-386.5
+342.7500000000001
  20
-127.30855600000004
+92.43181818181819
  30
 0.0
  11
-386.5
+342.2500000000001
  21
-139.30855600000004
+92.43181818181819
  31
 0.0
   0
@@ -4185,15 +4085,15 @@ LINE
   8
 0
  10
-392.00000000000006
+342.25000000000006
  20
-139.30855600000004
+120.15909090909092
  30
 0.0
  11
-388.00000000000006
+342.25000000000006
  21
-139.30855600000004
+108.56818181818183
  31
 0.0
   0
@@ -4203,15 +4103,15 @@ LINE
   8
 0
  10
-388.00000000000006
+342.25000000000006
  20
-139.30855600000004
+108.56818181818183
  30
 0.0
  11
-388.00000000000006
+342.75000000000006
  21
-127.30855600000004
+108.56818181818183
  31
 0.0
   0
@@ -4221,15 +4121,15 @@ LINE
   8
 0
  10
-388.00000000000006
+342.75000000000006
  20
-127.30855600000004
+108.56818181818183
  30
 0.0
  11
-392.00000000000006
+342.75000000000006
  21
-127.30855600000004
+120.15909090909092
  31
 0.0
   0
@@ -4239,15 +4139,15 @@ LINE
   8
 0
  10
-392.00000000000006
+342.75000000000006
  20
-127.30855600000004
+120.15909090909092
  30
 0.0
  11
-392.00000000000006
+342.25000000000006
  21
-139.30855600000004
+120.15909090909092
  31
 0.0
   0
@@ -4257,15 +4157,15 @@ LINE
   8
 0
  10
-414.50000000000006
+372.9166666666667
  20
-138.9752226666667
+148.75000000000003
  30
 0.0
  11
-409.5
+361.0833333333334
  21
-138.9752226666667
+148.75000000000003
  31
 0.0
   0
@@ -4275,15 +4175,15 @@ LINE
   8
 0
  10
-409.5
+361.0833333333334
  20
-138.9752226666667
+148.75000000000003
  30
 0.0
  11
-409.5
+361.0833333333334
  21
-127.64188933333335
+148.25
  31
 0.0
   0
@@ -4293,15 +4193,15 @@ LINE
   8
 0
  10
-409.5
+361.0833333333334
  20
-127.64188933333335
+148.25
  30
 0.0
  11
-414.50000000000006
+372.9166666666667
  21
-127.64188933333335
+148.25
  31
 0.0
   0
@@ -4311,15 +4211,15 @@ LINE
   8
 0
  10
-475.50000000000006
+372.9166666666667
  20
-84.15427796513858
+148.25
  30
 0.0
  11
-472.50000000000006
+372.9166666666667
  21
-84.15427796513858
+148.75000000000003
  31
 0.0
   0
@@ -4329,15 +4229,15 @@ LINE
   8
 0
  10
-472.50000000000006
+461.00000000000006
  20
-84.15427796513858
+157.25000000000009
  30
 0.0
  11
-472.50000000000006
+461.00000000000006
  21
-66.15427796513858
+148.75000000000009
  31
 0.0
   0
@@ -4347,15 +4247,15 @@ LINE
   8
 0
  10
-472.50000000000006
+461.00000000000006
  20
-66.15427796513858
+148.75000000000009
  30
 0.0
  11
-475.50000000000006
+461.50000000000006
  21
-66.15427796513858
+148.75000000000009
  31
 0.0
   0
@@ -4365,15 +4265,15 @@ LINE
   8
 0
  10
-475.50000000000006
+461.50000000000006
  20
-66.15427796513858
+148.75000000000009
  30
 0.0
  11
-475.50000000000006
+461.50000000000006
  21
-84.15427796513858
+157.25000000000009
  31
 0.0
   0
@@ -4383,15 +4283,15 @@ LINE
   8
 0
  10
-423.75000000000006
+461.50000000000006
  20
-70.40427796513856
+157.25000000000009
  30
 0.0
  11
-423.75000000000006
+461.00000000000006
  21
-79.90427796513858
+157.25000000000009
  31
 0.0
   0
@@ -4401,15 +4301,15 @@ LINE
   8
 0
  10
-423.75000000000006
+361.00000000000006
  20
-79.90427796513858
+184.00000000000003
  30
 0.0
  11
-423.25
+361.00000000000006
  21
-79.90427796513858
+180.00000000000006
  31
 0.0
   0
@@ -4419,15 +4319,15 @@ LINE
   8
 0
  10
-423.25
+361.00000000000006
  20
-79.90427796513858
+180.00000000000006
  30
 0.0
  11
-423.25
+373.0
  21
-70.40427796513856
+180.00000000000006
  31
 0.0
   0
@@ -4437,15 +4337,15 @@ LINE
   8
 0
  10
-423.25
+373.0
  20
-70.40427796513856
+180.00000000000006
  30
 0.0
  11
-423.75000000000006
+373.0
  21
-70.40427796513856
+184.00000000000003
  31
 0.0
   0
@@ -4455,15 +4355,15 @@ LINE
   8
 0
  10
-456.25000000000006
+373.0
  20
-7.749999930277114
+184.00000000000003
  30
 0.0
  11
-435.75000000000006
+361.00000000000006
  21
-7.749999930277114
+184.00000000000003
  31
 0.0
   0
@@ -4473,15 +4373,15 @@ LINE
   8
 0
  10
-435.75000000000006
+362.50000000000006
  20
-7.749999930277114
+172.00000000000003
  30
 0.0
  11
-435.75000000000006
+362.50000000000006
  21
-7.249999930277114
+168.0
  31
 0.0
   0
@@ -4491,15 +4391,15 @@ LINE
   8
 0
  10
-435.75000000000006
+362.50000000000006
  20
-7.249999930277114
+168.0
  30
 0.0
  11
-456.25000000000006
+371.50000000000006
  21
-7.249999930277114
+168.00000000000003
  31
 0.0
   0
@@ -4509,15 +4409,15 @@ LINE
   8
 0
  10
-456.25000000000006
+371.50000000000006
  20
-7.249999930277114
+168.00000000000003
  30
 0.0
  11
-456.25000000000006
+371.50000000000006
  21
-7.749999930277114
+172.00000000000006
  31
 0.0
   0
@@ -4527,15 +4427,15 @@ LINE
   8
 0
  10
-479.00000000000006
+371.50000000000006
  20
-84.15427796513858
+172.00000000000006
  30
 0.0
  11
-476.00000000000006
+362.50000000000006
  21
-84.15427796513858
+172.00000000000003
  31
 0.0
   0
@@ -4545,15 +4445,15 @@ LINE
   8
 0
  10
-476.00000000000006
+361.00000000000006
  20
-84.15427796513858
+208.50000000000006
  30
 0.0
  11
-476.00000000000006
+361.00000000000006
  21
-66.15427796513858
+185.50000000000006
  31
 0.0
   0
@@ -4563,15 +4463,15 @@ LINE
   8
 0
  10
-476.00000000000006
+361.00000000000006
  20
-66.15427796513858
+185.50000000000006
  30
 0.0
  11
-479.00000000000006
+373.0
  21
-66.15427796513858
+185.50000000000006
  31
 0.0
   0
@@ -4581,15 +4481,15 @@ LINE
   8
 0
  10
-479.00000000000006
+373.0
  20
-66.15427796513858
+185.50000000000006
  30
 0.0
  11
-479.00000000000006
+373.0
  21
-84.15427796513858
+208.50000000000006
  31
 0.0
   0
@@ -4599,15 +4499,15 @@ LINE
   8
 0
  10
-577.5000000000001
+373.0
  20
-79.65427796513858
+208.50000000000006
  30
 0.0
  11
-572.5
+361.00000000000006
  21
-79.65427796513858
+208.50000000000006
  31
 0.0
   0
@@ -4617,15 +4517,15 @@ LINE
   8
 0
  10
-572.5
+361.00000000000006
  20
-79.65427796513858
+214.00000000000006
  30
 0.0
  11
-572.5
+361.00000000000006
  21
-70.65427796513858
+210.00000000000006
  31
 0.0
   0
@@ -4635,95 +4535,87 @@ LINE
   8
 0
  10
-572.5
+361.00000000000006
  20
-70.65427796513858
+210.00000000000006
  30
 0.0
  11
-577.5000000000001
+373.0
  21
-70.65427796513858
+210.00000000000006
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
 0
  10
-623.0000000000001
+373.0
  20
-138.30855600000004
+210.00000000000006
  30
 0.0
  11
-684.0000000000001
+373.0
  21
-138.30855600000004
+214.00000000000006
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
 0
  10
-684.0000000000001
+373.0
  20
-138.30855600000004
+214.00000000000006
  30
 0.0
  11
-684.0000000000001
+361.00000000000006
  21
-162.308556
+214.00000000000006
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
 0
  10
-684.0000000000001
+361.3333333333334
  20
-162.308556
+236.50000000000003
  30
 0.0
  11
-623.0000000000001
+361.3333333333334
  21
-162.308556
+231.50000000000006
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
 0
  10
-623.0000000000001
+361.3333333333334
  20
-162.308556
+231.50000000000006
  30
 0.0
  11
-623.0000000000001
+372.6666666666667
  21
-138.30855600000004
+231.50000000000006
  31
 0.0
   0
@@ -4733,15 +4625,15 @@ LINE
   8
 0
  10
-623.0000000000001
+372.6666666666667
  20
-131.30855600000004
+231.50000000000006
  30
 0.0
  11
-623.0000000000001
+372.6666666666667
  21
-138.30855600000004
+236.50000000000003
  31
 0.0
   0
@@ -4751,15 +4643,15 @@ LINE
   8
 0
  10
-683.0
+416.15427803486153
  20
-131.30855600000004
+297.5000000000001
  30
 0.0
  11
-623.0000000000001
+416.15427803486153
  21
-131.30855600000004
+294.5000000000001
  31
 0.0
   0
@@ -4769,15 +4661,15 @@ LINE
   8
 0
  10
-683.0
+416.15427803486153
  20
-138.30855600000004
+294.5000000000001
  30
 0.0
  11
-683.0
+434.15427803486153
  21
-131.30855600000004
+294.5000000000001
  31
 0.0
   0
@@ -4787,15 +4679,15 @@ LINE
   8
 0
  10
-691.0
+434.15427803486153
  20
-138.30855600000004
+294.5000000000001
  30
 0.0
  11
-684.0000000000001
+434.15427803486153
  21
-138.30855600000004
+297.5000000000001
  31
 0.0
   0
@@ -4805,15 +4697,15 @@ LINE
   8
 0
  10
-691.0
+434.15427803486153
  20
-162.308556
+297.5000000000001
  30
 0.0
  11
-691.0
+416.15427803486153
  21
-138.30855600000004
+297.5000000000001
  31
 0.0
   0
@@ -4823,35 +4715,33 @@ LINE
   8
 0
  10
-684.0000000000001
+429.90427803486153
  20
-162.308556
+245.75000000000009
  30
 0.0
  11
-691.0
+420.40427803486153
  21
-162.308556
+245.75000000000009
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
 0
  10
-684.0000000000001
+420.40427803486153
  20
-162.308556
+245.75000000000009
  30
 0.0
  11
-684.0000000000001
+420.40427803486153
  21
-223.30855600000004
+245.25000000000009
  31
 0.0
   0
@@ -4861,35 +4751,33 @@ LINE
   8
 0
  10
-624.0000000000001
+420.40427803486153
  20
-223.30855600000004
+245.25000000000009
  30
 0.0
  11
-684.0000000000001
+429.90427803486153
  21
-223.30855600000004
+245.25000000000009
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
 0
  10
-624.0000000000001
+429.90427803486153
  20
-162.308556
+245.25000000000009
  30
 0.0
  11
-624.0000000000001
+429.90427803486153
  21
-223.30855600000004
+245.75000000000009
  31
 0.0
   0
@@ -4899,35 +4787,33 @@ LINE
   8
 0
  10
-708.0000000000001
+492.55855606972295
  20
-162.308556
+278.25000000000017
  30
 0.0
  11
-684.0000000000001
+492.55855606972295
  21
-162.308556
+257.75000000000017
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
 0
  10
-708.0000000000001
+492.55855606972295
  20
-162.308556
+257.75000000000017
  30
 0.0
  11
-708.0000000000001
+493.05855606972295
  21
-223.30855600000004
+257.75000000000017
  31
 0.0
   0
@@ -4937,15 +4823,15 @@ LINE
   8
 0
  10
-684.0000000000001
+493.05855606972295
  20
-223.30855600000004
+257.75000000000017
  30
 0.0
  11
-708.0000000000001
+493.05855606972295
  21
-223.30855600000004
+278.25000000000017
  31
 0.0
   0
@@ -4955,15 +4841,15 @@ LINE
   8
 0
  10
-768.0000000000001
+493.05855606972295
  20
-162.308556
+278.25000000000017
  30
 0.0
  11
-708.0000000000001
+492.55855606972295
  21
-162.308556
+278.25000000000017
  31
 0.0
   0
@@ -4973,15 +4859,15 @@ LINE
   8
 0
  10
-768.0000000000001
+416.1542780348615
  20
-223.30855600000004
+301.0000000000001
  30
 0.0
  11
-768.0000000000001
+416.1542780348615
  21
-162.308556
+298.0000000000001
  31
 0.0
   0
@@ -4991,15 +4877,15 @@ LINE
   8
 0
  10
-708.0000000000001
+416.1542780348615
  20
-223.30855600000004
+298.0000000000001
  30
 0.0
  11
-768.0000000000001
+434.1542780348615
  21
-223.30855600000004
+298.0000000000001
  31
 0.0
   0
@@ -5009,15 +4895,15 @@ LINE
   8
 0
  10
-624.0000000000001
+434.1542780348615
  20
-162.308556
+298.0000000000001
  30
 0.0
  11
-600.0
+434.1542780348615
  21
-162.308556
+301.0000000000001
  31
 0.0
   0
@@ -5027,35 +4913,33 @@ LINE
   8
 0
  10
-600.0
+434.1542780348615
  20
-223.30855600000004
+301.0000000000001
  30
 0.0
  11
-624.0000000000001
+416.1542780348615
  21
-223.30855600000004
+301.0000000000001
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
 0
  10
-600.0
+420.6542780348614
  20
-223.30855600000004
+399.5000000000001
  30
 0.0
  11
-600.0
+420.6542780348614
  21
-162.308556
+394.50000000000017
  31
 0.0
   0
@@ -5065,15 +4949,15 @@ LINE
   8
 0
  10
-590.0
+420.6542780348614
  20
-223.30855600000004
+394.50000000000017
  30
 0.0
  11
-600.0
+429.65427803486136
  21
-223.30855600000004
+394.50000000000017
  31
 0.0
   0
@@ -5083,15 +4967,15 @@ LINE
   8
 0
  10
-590.0
+429.65427803486136
  20
-162.308556
+394.50000000000017
  30
 0.0
  11
-590.0
+429.65427803486136
  21
-223.30855600000004
+399.5000000000001
  31
 0.0
   0
@@ -5101,15 +4985,15 @@ LINE
   8
 0
  10
-600.0
+102.50000000000001
  20
-162.308556
+321.33333333333337
  30
 0.0
  11
-590.0
+114.16666666666667
  21
-162.308556
+321.33333333333337
  31
 0.0
   0
@@ -5119,15 +5003,15 @@ LINE
   8
 0
  10
-616.0000000000001
+114.16666666666667
  20
-162.308556
+321.33333333333337
  30
 0.0
  11
-623.0000000000001
+114.16666666666667
  21
-162.308556
+344.6666666666667
  31
 0.0
   0
@@ -5137,15 +5021,15 @@ LINE
   8
 0
  10
-616.0000000000001
+114.16666666666667
  20
-138.30855600000004
+344.6666666666667
  30
 0.0
  11
-616.0000000000001
+102.50000000000001
  21
-162.308556
+344.6666666666667
  31
 0.0
   0
@@ -5155,15 +5039,15 @@ LINE
   8
 0
  10
-623.0000000000001
+112.5
  20
-138.30855600000004
+258.0
  30
 0.0
  11
-616.0000000000001
+112.5
  21
-138.30855600000004
+253.00000000000003
  31
 0.0
   0
@@ -5173,15 +5057,15 @@ LINE
   8
 0
  10
-672.0909090909092
+112.5
  20
-133.058556
+253.00000000000003
  30
 0.0
  11
-675.5909090909091
+117.5
  21
-133.058556
+258.0
  31
 0.0
   0
@@ -5191,15 +5075,15 @@ LINE
   8
 0
  10
-675.5909090909091
+117.5
  20
-133.058556
+258.0
  30
 0.0
  11
-672.0909090909092
+117.5
  21
-136.55855600000004
+278.0
  31
 0.0
   0
@@ -5209,15 +5093,15 @@ LINE
   8
 0
  10
-672.0909090909092
+117.5
  20
-136.55855600000004
+278.0
  30
 0.0
  11
-661.1818181818181
+112.5
  21
-136.55855600000004
+283.0
  31
 0.0
   0
@@ -5227,15 +5111,15 @@ LINE
   8
 0
  10
-661.1818181818181
+112.5
  20
-136.55855600000004
+283.0
  30
 0.0
  11
-657.6818181818184
+112.5
  21
-133.058556
+278.0
  31
 0.0
   0
@@ -5245,15 +5129,15 @@ LINE
   8
 0
  10
-657.6818181818184
+108.91666666666669
  20
-133.058556
+148.75000000000003
  30
 0.0
  11
-661.1818181818181
+97.08333333333336
  21
-133.058556
+148.75000000000003
  31
 0.0
   0
@@ -5263,15 +5147,15 @@ LINE
   8
 0
  10
-644.818181818182
+97.08333333333336
  20
-133.058556
+148.75000000000003
  30
 0.0
  11
-648.3181818181819
+97.08333333333336
  21
-133.058556
+148.25
  31
 0.0
   0
@@ -5281,15 +5165,15 @@ LINE
   8
 0
  10
-648.3181818181819
+97.08333333333336
  20
-133.058556
+148.25
  30
 0.0
  11
-644.818181818182
+108.91666666666669
  21
-136.55855600000004
+148.25
  31
 0.0
   0
@@ -5299,15 +5183,15 @@ LINE
   8
 0
  10
-644.818181818182
+108.91666666666669
  20
-136.55855600000004
+148.25
  30
 0.0
  11
-633.9090909090909
+108.91666666666669
  21
-136.55855600000004
+148.75000000000003
  31
 0.0
   0
@@ -5317,15 +5201,15 @@ LINE
   8
 0
  10
-633.9090909090909
+1.2500000000000002
  20
-136.55855600000004
+149.00000000000003
  30
 0.0
  11
-630.409090909091
+1.2500000000000002
  21
-133.058556
+146.50000000000003
  31
 0.0
   0
@@ -5335,15 +5219,15 @@ LINE
   8
 0
  10
-630.409090909091
+1.2500000000000002
  20
-133.058556
+146.50000000000003
  30
 0.0
  11
-633.9090909090909
+3.7500000000000004
  21
-133.058556
+149.00000000000003
  31
 0.0
   0
@@ -5353,15 +5237,15 @@ LINE
   8
 0
  10
-689.2500000000001
+3.7500000000000004
  20
-154.30855600000004
+149.00000000000003
  30
 0.0
  11
-685.75
+3.7500000000000004
  21
-154.30855600000004
+157.0
  31
 0.0
   0
@@ -5371,15 +5255,15 @@ LINE
   8
 0
  10
-685.75
+3.7500000000000004
  20
-154.30855600000004
+157.0
  30
 0.0
  11
-685.75
+1.2500000000000002
  21
-146.308556
+159.5
  31
 0.0
   0
@@ -5389,15 +5273,15 @@ LINE
   8
 0
  10
-685.75
+1.2500000000000002
  20
-146.308556
+159.5
  30
 0.0
  11
-689.2500000000001
+1.2500000000000002
  21
-146.308556
+157.0
  31
 0.0
   0
@@ -5407,15 +5291,15 @@ LINE
   8
 0
  10
-631.5000000000001
+97.00000000000001
  20
-213.80855600000004
+184.00000000000003
  30
 0.0
  11
-631.5000000000001
+97.00000000000001
  21
-195.80855600000004
+180.0
  31
 0.0
   0
@@ -5425,15 +5309,15 @@ LINE
   8
 0
  10
-631.5000000000001
+97.00000000000001
  20
-195.80855600000004
+180.0
  30
 0.0
  11
-666.5000000000001
+109.00000000000001
  21
-195.80855600000004
+180.0
  31
 0.0
   0
@@ -5443,15 +5327,15 @@ LINE
   8
 0
  10
-666.5000000000001
+109.00000000000001
  20
-195.80855600000004
+180.0
  30
 0.0
  11
-666.5000000000001
+109.00000000000001
  21
-213.80855600000004
+184.00000000000003
  31
 0.0
   0
@@ -5461,15 +5345,15 @@ LINE
   8
 0
  10
-666.5000000000001
+109.00000000000001
  20
-213.80855600000004
+184.00000000000003
  30
 0.0
  11
-631.5000000000001
+97.00000000000001
  21
-213.80855600000004
+184.00000000000003
  31
 0.0
   0
@@ -5479,15 +5363,15 @@ LINE
   8
 0
  10
-684.5000000000001
+98.50000000000001
  20
-175.55855600000004
+172.00000000000003
  30
 0.0
  11
-684.5000000000001
+98.50000000000001
  21
-172.55855600000004
+168.0
  31
 0.0
   0
@@ -5497,15 +5381,15 @@ LINE
   8
 0
  10
-684.5000000000001
+98.50000000000001
  20
-172.55855600000004
+168.0
  30
 0.0
  11
-687.5000000000001
+107.50000000000001
  21
-172.55855600000004
+168.0
  31
 0.0
   0
@@ -5515,15 +5399,15 @@ LINE
   8
 0
  10
-687.5000000000001
+107.50000000000001
  20
-172.55855600000004
+168.0
  30
 0.0
  11
-687.5000000000001
+107.50000000000001
  21
-175.55855600000004
+172.00000000000003
  31
 0.0
   0
@@ -5533,15 +5417,15 @@ LINE
   8
 0
  10
-687.5000000000001
+107.50000000000001
  20
-175.55855600000004
+172.00000000000003
  30
 0.0
  11
-684.5000000000001
+98.50000000000001
  21
-175.55855600000004
+172.00000000000003
  31
 0.0
   0
@@ -5551,15 +5435,15 @@ LINE
   8
 0
  10
-705.5000000000001
+97.00000000000001
  20
-174.55855600000004
+208.50000000000003
  30
 0.0
  11
-705.5000000000001
+97.00000000000001
  21
-173.55855600000004
+185.50000000000003
  31
 0.0
   0
@@ -5569,15 +5453,15 @@ LINE
   8
 0
  10
-705.5000000000001
+97.00000000000001
  20
-173.55855600000004
+185.50000000000003
  30
 0.0
  11
-706.5000000000001
+109.00000000000001
  21
-173.55855600000004
+185.50000000000003
  31
 0.0
   0
@@ -5587,15 +5471,15 @@ LINE
   8
 0
  10
-706.5000000000001
+109.00000000000001
  20
-173.55855600000004
+185.50000000000003
  30
 0.0
  11
-706.5000000000001
+109.00000000000001
  21
-174.55855600000004
+208.50000000000003
  31
 0.0
   0
@@ -5605,15 +5489,15 @@ LINE
   8
 0
  10
-706.5000000000001
+109.00000000000001
  20
-174.55855600000004
+208.50000000000003
  30
 0.0
  11
-705.5000000000001
+97.00000000000001
  21
-174.55855600000004
+208.50000000000003
  31
 0.0
   0
@@ -5623,15 +5507,15 @@ LINE
   8
 0
  10
-685.5000000000001
+97.00000000000001
  20
-177.05855600000004
+214.0
  30
 0.0
  11
-685.5000000000001
+97.00000000000001
  21
-176.058556
+210.00000000000003
  31
 0.0
   0
@@ -5641,15 +5525,15 @@ LINE
   8
 0
  10
-685.5000000000001
+97.00000000000001
  20
-176.058556
+210.00000000000003
  30
 0.0
  11
-686.5000000000001
+109.00000000000001
  21
-176.058556
+210.00000000000003
  31
 0.0
   0
@@ -5659,15 +5543,15 @@ LINE
   8
 0
  10
-686.5000000000001
+109.00000000000001
  20
-176.058556
+210.00000000000003
  30
 0.0
  11
-686.5000000000001
+109.00000000000001
  21
-177.05855600000004
+214.0
  31
 0.0
   0
@@ -5677,15 +5561,15 @@ LINE
   8
 0
  10
-686.5000000000001
+109.00000000000001
  20
-177.05855600000004
+214.0
  30
 0.0
  11
-685.5000000000001
+97.00000000000001
  21
-177.05855600000004
+214.0
  31
 0.0
   0
@@ -5695,15 +5579,15 @@ LINE
   8
 0
  10
-705.5000000000001
+97.33333333333336
  20
-177.05855600000004
+236.50000000000003
  30
 0.0
  11
-705.5000000000001
+97.33333333333336
  21
-176.058556
+231.50000000000003
  31
 0.0
   0
@@ -5713,15 +5597,15 @@ LINE
   8
 0
  10
-705.5000000000001
+97.33333333333336
  20
-176.058556
+231.50000000000003
  30
 0.0
  11
-706.5000000000001
+108.66666666666669
  21
-176.058556
+231.50000000000003
  31
 0.0
   0
@@ -5731,15 +5615,15 @@ LINE
   8
 0
  10
-706.5000000000001
+108.66666666666669
  20
-176.058556
+231.50000000000003
  30
 0.0
  11
-706.5000000000001
+108.66666666666669
  21
-177.05855600000004
+236.50000000000003
  31
 0.0
   0
@@ -5749,15 +5633,15 @@ LINE
   8
 0
  10
-706.5000000000001
+65.36137800081468
  20
-177.05855600000004
+113.00000000000001
  30
 0.0
  11
-705.5000000000001
+65.36137800081468
  21
-177.05855600000004
+102.00000000000001
  31
 0.0
   0
@@ -5767,15 +5651,15 @@ LINE
   8
 0
  10
-685.5000000000001
+65.36137800081468
  20
-179.55855600000004
+102.00000000000001
  30
 0.0
  11
-685.5000000000001
+78.36137800081468
  21
-178.558556
+102.00000000000001
  31
 0.0
   0
@@ -5785,15 +5669,15 @@ LINE
   8
 0
  10
-685.5000000000001
+78.36137800081468
  20
-178.558556
+102.00000000000001
  30
 0.0
  11
-686.5000000000001
+78.36137800081468
  21
-178.558556
+113.00000000000001
  31
 0.0
   0
@@ -5803,15 +5687,15 @@ LINE
   8
 0
  10
-686.5000000000001
+78.36137800081468
  20
-178.558556
+113.00000000000001
  30
 0.0
  11
-686.5000000000001
+65.36137800081468
  21
-179.55855600000004
+113.00000000000001
  31
 0.0
   0
@@ -5821,15 +5705,15 @@ LINE
   8
 0
  10
-686.5000000000001
+66.8613780008147
  20
-179.55855600000004
+81.50000000000001
  30
 0.0
  11
-685.5000000000001
+66.8613780008147
  21
-179.55855600000004
+75.50000000000001
  31
 0.0
   0
@@ -5839,15 +5723,15 @@ LINE
   8
 0
  10
-705.5000000000001
+66.8613780008147
  20
-179.55855600000004
+75.50000000000001
  30
 0.0
  11
-705.5000000000001
+76.8613780008147
  21
-178.558556
+75.50000000000001
  31
 0.0
   0
@@ -5857,15 +5741,15 @@ LINE
   8
 0
  10
-705.5000000000001
+76.8613780008147
  20
-178.558556
+75.50000000000001
  30
 0.0
  11
-706.5000000000001
+76.8613780008147
  21
-178.558556
+81.50000000000001
  31
 0.0
   0
@@ -5875,15 +5759,15 @@ LINE
   8
 0
  10
-706.5000000000001
+76.8613780008147
  20
-178.558556
+81.50000000000001
  30
 0.0
  11
-706.5000000000001
+66.8613780008147
  21
-179.55855600000004
+81.50000000000001
  31
 0.0
   0
@@ -5893,15 +5777,15 @@ LINE
   8
 0
  10
-706.5000000000001
+16.222756001629364
  20
-179.55855600000004
+81.0909090909091
  30
 0.0
  11
-705.5000000000001
+21.222756001629367
  21
-179.55855600000004
+81.0909090909091
  31
 0.0
   0
@@ -5911,15 +5795,15 @@ LINE
   8
 0
  10
-685.5000000000001
+21.222756001629367
  20
-182.05855600000004
+81.0909090909091
  30
 0.0
  11
-685.5000000000001
+21.222756001629367
  21
-181.058556
+92.18181818181819
  31
 0.0
   0
@@ -5929,15 +5813,15 @@ LINE
   8
 0
  10
-685.5000000000001
+21.222756001629367
  20
-181.058556
+92.18181818181819
  30
 0.0
  11
-686.5000000000001
+16.222756001629364
  21
-181.058556
+92.18181818181819
  31
 0.0
   0
@@ -5947,15 +5831,15 @@ LINE
   8
 0
  10
-686.5000000000001
+16.222756001629364
  20
-181.058556
+108.81818181818183
  30
 0.0
  11
-686.5000000000001
+21.222756001629367
  21
-182.05855600000004
+108.81818181818183
  31
 0.0
   0
@@ -5965,15 +5849,15 @@ LINE
   8
 0
  10
-686.5000000000001
+21.222756001629367
  20
-182.05855600000004
+108.81818181818183
  30
 0.0
  11
-685.5000000000001
+21.222756001629367
  21
-182.05855600000004
+119.90909090909092
  31
 0.0
   0
@@ -5983,15 +5867,15 @@ LINE
   8
 0
  10
-705.5000000000001
+21.222756001629367
  20
-182.05855600000004
+119.90909090909092
  30
 0.0
  11
-705.5000000000001
+16.222756001629364
  21
-181.058556
+119.90909090909092
  31
 0.0
   0
@@ -6001,15 +5885,15 @@ LINE
   8
 0
  10
-705.5000000000001
+75.86137800081468
  20
-181.058556
+62.50000000000001
  30
 0.0
  11
-706.5000000000001
+75.86137800081468
  21
-181.058556
+67.50000000000001
  31
 0.0
   0
@@ -6019,15 +5903,15 @@ LINE
   8
 0
  10
-706.5000000000001
+75.86137800081468
  20
-181.058556
+67.50000000000001
  30
 0.0
  11
-706.5000000000001
+67.86137800081468
  21
-182.05855600000004
+67.50000000000001
  31
 0.0
   0
@@ -6037,15 +5921,15 @@ LINE
   8
 0
  10
-706.5000000000001
+67.86137800081468
  20
-182.05855600000004
+67.50000000000001
  30
 0.0
  11
-705.5000000000001
+67.86137800081468
  21
-182.05855600000004
+62.50000000000001
  31
 0.0
   0
@@ -6055,15 +5939,15 @@ LINE
   8
 0
  10
-685.5000000000001
+67.86137800081468
  20
-184.55855600000004
+138.5
  30
 0.0
  11
-685.5000000000001
+67.86137800081468
  21
-183.55855600000004
+133.5
  31
 0.0
   0
@@ -6073,15 +5957,15 @@ LINE
   8
 0
  10
-685.5000000000001
+67.86137800081468
  20
-183.55855600000004
+133.5
  30
 0.0
  11
-686.5000000000001
+75.86137800081468
  21
-183.55855600000004
+133.5
  31
 0.0
   0
@@ -6091,87 +5975,95 @@ LINE
   8
 0
  10
-686.5000000000001
+75.86137800081468
  20
-183.55855600000004
+133.5
  30
 0.0
  11
-686.5000000000001
+75.86137800081468
  21
-184.55855600000004
+138.5
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
 0
  10
-686.5000000000001
+543.3085560697231
  20
-184.55855600000004
+172.00000000000003
  30
 0.0
  11
-685.5000000000001
+604.308556069723
  21
-184.55855600000004
+172.00000000000003
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
 0
  10
-705.5000000000001
+604.308556069723
  20
-184.55855600000004
+172.00000000000003
  30
 0.0
  11
-705.5000000000001
+604.308556069723
  21
-183.55855600000004
+196.00000000000003
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
 0
  10
-705.5000000000001
+604.308556069723
  20
-183.55855600000004
+196.00000000000003
  30
 0.0
  11
-706.5000000000001
+543.3085560697231
  21
-183.55855600000004
+196.00000000000003
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
 0
  10
-706.5000000000001
+543.3085560697231
  20
-183.55855600000004
+196.00000000000003
  30
 0.0
  11
-706.5000000000001
+543.3085560697231
  21
-184.55855600000004
+172.00000000000003
  31
 0.0
   0
@@ -6181,15 +6073,15 @@ LINE
   8
 0
  10
-706.5000000000001
+543.3085560697231
  20
-184.55855600000004
+165.00000000000003
  30
 0.0
  11
-705.5000000000001
+543.3085560697231
  21
-184.55855600000004
+172.00000000000003
  31
 0.0
   0
@@ -6199,15 +6091,15 @@ LINE
   8
 0
  10
-685.5000000000001
+603.308556069723
  20
-187.05855600000004
+165.00000000000003
  30
 0.0
  11
-685.5000000000001
+543.3085560697231
  21
-186.05855600000004
+165.00000000000003
  31
 0.0
   0
@@ -6217,15 +6109,15 @@ LINE
   8
 0
  10
-685.5000000000001
+603.308556069723
  20
-186.05855600000004
+172.00000000000003
  30
 0.0
  11
-686.5000000000001
+603.308556069723
  21
-186.05855600000004
+165.00000000000003
  31
 0.0
   0
@@ -6235,15 +6127,15 @@ LINE
   8
 0
  10
-686.5000000000001
+611.308556069723
  20
-186.05855600000004
+172.00000000000003
  30
 0.0
  11
-686.5000000000001
+604.308556069723
  21
-187.05855600000004
+172.00000000000003
  31
 0.0
   0
@@ -6253,15 +6145,15 @@ LINE
   8
 0
  10
-686.5000000000001
+611.308556069723
  20
-187.05855600000004
+196.00000000000003
  30
 0.0
  11
-685.5000000000001
+611.308556069723
  21
-187.05855600000004
+172.00000000000003
  31
 0.0
   0
@@ -6271,33 +6163,35 @@ LINE
   8
 0
  10
-705.5000000000001
+604.308556069723
  20
-187.05855600000004
+196.00000000000003
  30
 0.0
  11
-705.5000000000001
+611.308556069723
  21
-186.05855600000004
+196.00000000000003
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
 0
  10
-705.5000000000001
+604.308556069723
  20
-186.05855600000004
+196.00000000000003
  30
 0.0
  11
-706.5000000000001
+604.308556069723
  21
-186.05855600000004
+257.00000000000006
  31
 0.0
   0
@@ -6307,33 +6201,35 @@ LINE
   8
 0
  10
-706.5000000000001
+544.3085560697231
  20
-186.05855600000004
+257.00000000000006
  30
 0.0
  11
-706.5000000000001
+604.308556069723
  21
-187.05855600000004
+257.00000000000006
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
 0
  10
-706.5000000000001
+544.3085560697231
  20
-187.05855600000004
+196.00000000000003
  30
 0.0
  11
-705.5000000000001
+544.3085560697231
  21
-187.05855600000004
+257.00000000000006
  31
 0.0
   0
@@ -6343,33 +6239,35 @@ LINE
   8
 0
  10
-685.5000000000001
+628.3085560697231
  20
-189.55855600000004
+196.00000000000003
  30
 0.0
  11
-685.5000000000001
+604.308556069723
  21
-188.55855600000004
+196.00000000000003
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
 0
  10
-685.5000000000001
+628.3085560697231
  20
-188.55855600000004
+196.00000000000003
  30
 0.0
  11
-686.5000000000001
+628.3085560697231
  21
-188.55855600000004
+257.00000000000006
  31
 0.0
   0
@@ -6379,15 +6277,15 @@ LINE
   8
 0
  10
-686.5000000000001
+604.308556069723
  20
-188.55855600000004
+257.00000000000006
  30
 0.0
  11
-686.5000000000001
+628.3085560697231
  21
-189.55855600000004
+257.00000000000006
  31
 0.0
   0
@@ -6397,15 +6295,15 @@ LINE
   8
 0
  10
-686.5000000000001
+688.3085560697231
  20
-189.55855600000004
+196.00000000000003
  30
 0.0
  11
-685.5000000000001
+628.3085560697231
  21
-189.55855600000004
+196.00000000000003
  31
 0.0
   0
@@ -6415,15 +6313,15 @@ LINE
   8
 0
  10
-705.5000000000001
+688.3085560697231
  20
-189.55855600000004
+257.00000000000006
  30
 0.0
  11
-705.5000000000001
+688.3085560697231
  21
-188.55855600000004
+196.00000000000003
  31
 0.0
   0
@@ -6433,15 +6331,15 @@ LINE
   8
 0
  10
-705.5000000000001
+628.3085560697231
  20
-188.55855600000004
+257.00000000000006
  30
 0.0
  11
-706.5000000000001
+688.3085560697231
  21
-188.55855600000004
+257.00000000000006
  31
 0.0
   0
@@ -6451,15 +6349,15 @@ LINE
   8
 0
  10
-706.5000000000001
+544.3085560697231
  20
-188.55855600000004
+196.00000000000003
  30
 0.0
  11
-706.5000000000001
+520.3085560697231
  21
-189.55855600000004
+196.00000000000003
  31
 0.0
   0
@@ -6469,33 +6367,35 @@ LINE
   8
 0
  10
-706.5000000000001
+520.3085560697231
  20
-189.55855600000004
+257.00000000000006
  30
 0.0
  11
-705.5000000000001
+544.3085560697231
  21
-189.55855600000004
+257.00000000000006
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
 0
  10
-685.5000000000001
+520.3085560697231
  20
-192.058556
+257.00000000000006
  30
 0.0
  11
-685.5000000000001
+520.3085560697231
  21
-191.05855600000004
+196.00000000000003
  31
 0.0
   0
@@ -6505,15 +6405,15 @@ LINE
   8
 0
  10
-685.5000000000001
+510.308556069723
  20
-191.05855600000004
+257.00000000000006
  30
 0.0
  11
-686.5000000000001
+520.3085560697231
  21
-191.05855600000004
+257.00000000000006
  31
 0.0
   0
@@ -6523,15 +6423,15 @@ LINE
   8
 0
  10
-686.5000000000001
+510.308556069723
  20
-191.05855600000004
+196.00000000000003
  30
 0.0
  11
-686.5000000000001
+510.308556069723
  21
-192.058556
+257.00000000000006
  31
 0.0
   0
@@ -6541,15 +6441,15 @@ LINE
   8
 0
  10
-686.5000000000001
+520.3085560697231
  20
-192.058556
+196.00000000000003
  30
 0.0
  11
-685.5000000000001
+510.308556069723
  21
-192.058556
+196.00000000000003
  31
 0.0
   0
@@ -6559,15 +6459,15 @@ LINE
   8
 0
  10
-705.5000000000001
+536.308556069723
  20
-192.058556
+196.00000000000003
  30
 0.0
  11
-705.5000000000001
+543.3085560697231
  21
-191.05855600000004
+196.00000000000003
  31
 0.0
   0
@@ -6577,15 +6477,15 @@ LINE
   8
 0
  10
-705.5000000000001
+536.308556069723
  20
-191.05855600000004
+172.00000000000003
  30
 0.0
  11
-706.5000000000001
+536.308556069723
  21
-191.05855600000004
+196.00000000000003
  31
 0.0
   0
@@ -6595,15 +6495,15 @@ LINE
   8
 0
  10
-706.5000000000001
+543.3085560697231
  20
-191.05855600000004
+172.00000000000003
  30
 0.0
  11
-706.5000000000001
+536.308556069723
  21
-192.058556
+172.00000000000003
  31
 0.0
   0
@@ -6613,15 +6513,15 @@ LINE
   8
 0
  10
-706.5000000000001
+592.3994651606322
  20
-192.058556
+166.75000000000003
  30
 0.0
  11
-705.5000000000001
+595.8994651606321
  21
-192.058556
+166.75000000000003
  31
 0.0
   0
@@ -6631,15 +6531,15 @@ LINE
   8
 0
  10
-685.5000000000001
+595.8994651606321
  20
-194.558556
+166.75000000000003
  30
 0.0
  11
-685.5000000000001
+592.3994651606322
  21
-193.55855600000004
+170.25000000000003
  31
 0.0
   0
@@ -6649,15 +6549,15 @@ LINE
   8
 0
  10
-685.5000000000001
+592.3994651606322
  20
-193.55855600000004
+170.25000000000003
  30
 0.0
  11
-686.5000000000001
+581.4903742515411
  21
-193.55855600000004
+170.25000000000003
  31
 0.0
   0
@@ -6667,15 +6567,15 @@ LINE
   8
 0
  10
-686.5000000000001
+581.4903742515411
  20
-193.55855600000004
+170.25000000000003
  30
 0.0
  11
-686.5000000000001
+577.9903742515413
  21
-194.558556
+166.75000000000003
  31
 0.0
   0
@@ -6685,15 +6585,15 @@ LINE
   8
 0
  10
-686.5000000000001
+577.9903742515413
  20
-194.558556
+166.75000000000003
  30
 0.0
  11
-685.5000000000001
+581.4903742515411
  21
-194.558556
+166.75000000000003
  31
 0.0
   0
@@ -6703,15 +6603,15 @@ LINE
   8
 0
  10
-705.5000000000001
+565.1267378879049
  20
-194.558556
+166.75000000000003
  30
 0.0
  11
-705.5000000000001
+568.6267378879048
  21
-193.55855600000004
+166.75000000000003
  31
 0.0
   0
@@ -6721,15 +6621,15 @@ LINE
   8
 0
  10
-705.5000000000001
+568.6267378879048
  20
-193.55855600000004
+166.75000000000003
  30
 0.0
  11
-706.5000000000001
+565.1267378879049
  21
-193.55855600000004
+170.25000000000003
  31
 0.0
   0
@@ -6739,15 +6639,15 @@ LINE
   8
 0
  10
-706.5000000000001
+565.1267378879049
  20
-193.55855600000004
+170.25000000000003
  30
 0.0
  11
-706.5000000000001
+554.2176469788138
  21
-194.558556
+170.25000000000003
  31
 0.0
   0
@@ -6757,15 +6657,15 @@ LINE
   8
 0
  10
-706.5000000000001
+554.2176469788138
  20
-194.558556
+170.25000000000003
  30
 0.0
  11
-705.5000000000001
+550.717646978814
  21
-194.558556
+166.75000000000003
  31
 0.0
   0
@@ -6775,15 +6675,15 @@ LINE
   8
 0
  10
-685.5000000000001
+550.717646978814
  20
-197.05855600000004
+166.75000000000003
  30
 0.0
  11
-685.5000000000001
+554.2176469788138
  21
-196.05855600000004
+166.75000000000003
  31
 0.0
   0
@@ -6793,15 +6693,15 @@ LINE
   8
 0
  10
-685.5000000000001
+609.5585560697231
  20
-196.05855600000004
+188.00000000000003
  30
 0.0
  11
-686.5000000000001
+606.058556069723
  21
-196.05855600000004
+188.00000000000003
  31
 0.0
   0
@@ -6811,15 +6711,15 @@ LINE
   8
 0
  10
-686.5000000000001
+606.058556069723
  20
-196.05855600000004
+188.00000000000003
  30
 0.0
  11
-686.5000000000001
+606.058556069723
  21
-197.05855600000004
+180.0
  31
 0.0
   0
@@ -6829,15 +6729,15 @@ LINE
   8
 0
  10
-686.5000000000001
+606.058556069723
  20
-197.05855600000004
+180.0
  30
 0.0
  11
-685.5000000000001
+609.5585560697231
  21
-197.05855600000004
+180.0
  31
 0.0
   0
@@ -6847,15 +6747,15 @@ LINE
   8
 0
  10
-705.5000000000001
+551.8085560697231
  20
-197.05855600000004
+247.50000000000003
  30
 0.0
  11
-705.5000000000001
+551.8085560697231
  21
-196.05855600000004
+229.50000000000003
  31
 0.0
   0
@@ -6865,15 +6765,15 @@ LINE
   8
 0
  10
-705.5000000000001
+551.8085560697231
  20
-196.05855600000004
+229.50000000000003
  30
 0.0
  11
-706.5000000000001
+586.8085560697231
  21
-196.05855600000004
+229.50000000000003
  31
 0.0
   0
@@ -6883,15 +6783,15 @@ LINE
   8
 0
  10
-706.5000000000001
+586.8085560697231
  20
-196.05855600000004
+229.50000000000003
  30
 0.0
  11
-706.5000000000001
+586.8085560697231
  21
-197.05855600000004
+247.50000000000003
  31
 0.0
   0
@@ -6901,15 +6801,15 @@ LINE
   8
 0
  10
-706.5000000000001
+586.8085560697231
  20
-197.05855600000004
+247.50000000000003
  30
 0.0
  11
-705.5000000000001
+551.8085560697231
  21
-197.05855600000004
+247.50000000000003
  31
 0.0
   0
@@ -6919,15 +6819,15 @@ LINE
   8
 0
  10
-685.5000000000001
+604.8085560697231
  20
-199.55855600000004
+209.25
  30
 0.0
  11
-685.5000000000001
+604.8085560697231
  21
-198.55855600000004
+206.25000000000003
  31
 0.0
   0
@@ -6937,15 +6837,15 @@ LINE
   8
 0
  10
-685.5000000000001
+604.8085560697231
  20
-198.55855600000004
+206.25000000000003
  30
 0.0
  11
-686.5000000000001
+607.8085560697231
  21
-198.55855600000004
+206.25000000000003
  31
 0.0
   0
@@ -6955,15 +6855,15 @@ LINE
   8
 0
  10
-686.5000000000001
+607.8085560697231
  20
-198.55855600000004
+206.25000000000003
  30
 0.0
  11
-686.5000000000001
+607.8085560697231
  21
-199.55855600000004
+209.25
  31
 0.0
   0
@@ -6973,15 +6873,15 @@ LINE
   8
 0
  10
-686.5000000000001
+607.8085560697231
  20
-199.55855600000004
+209.25
  30
 0.0
  11
-685.5000000000001
+604.8085560697231
  21
-199.55855600000004
+209.25
  31
 0.0
   0
@@ -6991,15 +6891,15 @@ LINE
   8
 0
  10
-705.5000000000001
+625.8085560697231
  20
-199.55855600000004
+208.25000000000003
  30
 0.0
  11
-705.5000000000001
+625.8085560697231
  21
-198.55855600000004
+207.25000000000003
  31
 0.0
   0
@@ -7009,15 +6909,15 @@ LINE
   8
 0
  10
-705.5000000000001
+625.8085560697231
  20
-198.55855600000004
+207.25000000000003
  30
 0.0
  11
-706.5000000000001
+626.8085560697231
  21
-198.55855600000004
+207.25000000000003
  31
 0.0
   0
@@ -7027,15 +6927,15 @@ LINE
   8
 0
  10
-706.5000000000001
+626.8085560697231
  20
-198.55855600000004
+207.25000000000003
  30
 0.0
  11
-706.5000000000001
+626.8085560697231
  21
-199.55855600000004
+208.25000000000003
  31
 0.0
   0
@@ -7045,15 +6945,15 @@ LINE
   8
 0
  10
-706.5000000000001
+626.8085560697231
  20
-199.55855600000004
+208.25000000000003
  30
 0.0
  11
-705.5000000000001
+625.8085560697231
  21
-199.55855600000004
+208.25000000000003
  31
 0.0
   0
@@ -7063,15 +6963,15 @@ LINE
   8
 0
  10
-685.5000000000001
+605.8085560697231
  20
-202.05855600000004
+210.75000000000003
  30
 0.0
  11
-685.5000000000001
+605.8085560697231
  21
-201.058556
+209.75000000000003
  31
 0.0
   0
@@ -7081,15 +6981,15 @@ LINE
   8
 0
  10
-685.5000000000001
+605.8085560697231
  20
-201.058556
+209.75000000000003
  30
 0.0
  11
-686.5000000000001
+606.8085560697231
  21
-201.058556
+209.75000000000003
  31
 0.0
   0
@@ -7099,15 +6999,15 @@ LINE
   8
 0
  10
-686.5000000000001
+606.8085560697231
  20
-201.058556
+209.75000000000003
  30
 0.0
  11
-686.5000000000001
+606.8085560697231
  21
-202.05855600000004
+210.75000000000003
  31
 0.0
   0
@@ -7117,15 +7017,15 @@ LINE
   8
 0
  10
-686.5000000000001
+606.8085560697231
  20
-202.05855600000004
+210.75000000000003
  30
 0.0
  11
-685.5000000000001
+605.8085560697231
  21
-202.05855600000004
+210.75000000000003
  31
 0.0
   0
@@ -7135,15 +7035,15 @@ LINE
   8
 0
  10
-705.5000000000001
+625.8085560697231
  20
-202.05855600000004
+210.75000000000003
  30
 0.0
  11
-705.5000000000001
+625.8085560697231
  21
-201.058556
+209.75000000000003
  31
 0.0
   0
@@ -7153,15 +7053,15 @@ LINE
   8
 0
  10
-705.5000000000001
+625.8085560697231
  20
-201.058556
+209.75000000000003
  30
 0.0
  11
-706.5000000000001
+626.8085560697231
  21
-201.058556
+209.75000000000003
  31
 0.0
   0
@@ -7171,15 +7071,15 @@ LINE
   8
 0
  10
-706.5000000000001
+626.8085560697231
  20
-201.058556
+209.75000000000003
  30
 0.0
  11
-706.5000000000001
+626.8085560697231
  21
-202.05855600000004
+210.75000000000003
  31
 0.0
   0
@@ -7189,15 +7089,15 @@ LINE
   8
 0
  10
-706.5000000000001
+626.8085560697231
  20
-202.05855600000004
+210.75000000000003
  30
 0.0
  11
-705.5000000000001
+625.8085560697231
  21
-202.05855600000004
+210.75000000000003
  31
 0.0
   0
@@ -7207,15 +7107,15 @@ LINE
   8
 0
  10
-685.5000000000001
+605.8085560697231
  20
-204.55855600000004
+213.25000000000003
  30
 0.0
  11
-685.5000000000001
+605.8085560697231
  21
-203.558556
+212.25000000000003
  31
 0.0
   0
@@ -7225,15 +7125,15 @@ LINE
   8
 0
  10
-685.5000000000001
+605.8085560697231
  20
-203.558556
+212.25000000000003
  30
 0.0
  11
-686.5000000000001
+606.8085560697231
  21
-203.558556
+212.25000000000003
  31
 0.0
   0
@@ -7243,15 +7143,15 @@ LINE
   8
 0
  10
-686.5000000000001
+606.8085560697231
  20
-203.558556
+212.25000000000003
  30
 0.0
  11
-686.5000000000001
+606.8085560697231
  21
-204.55855600000004
+213.25000000000003
  31
 0.0
   0
@@ -7261,15 +7161,15 @@ LINE
   8
 0
  10
-686.5000000000001
+606.8085560697231
  20
-204.55855600000004
+213.25000000000003
  30
 0.0
  11
-685.5000000000001
+605.8085560697231
  21
-204.55855600000004
+213.25000000000003
  31
 0.0
   0
@@ -7279,15 +7179,15 @@ LINE
   8
 0
  10
-705.5000000000001
+625.8085560697231
  20
-204.55855600000004
+213.25000000000003
  30
 0.0
  11
-705.5000000000001
+625.8085560697231
  21
-203.558556
+212.25000000000003
  31
 0.0
   0
@@ -7297,15 +7197,15 @@ LINE
   8
 0
  10
-705.5000000000001
+625.8085560697231
  20
-203.558556
+212.25000000000003
  30
 0.0
  11
-706.5000000000001
+626.8085560697231
  21
-203.558556
+212.25000000000003
  31
 0.0
   0
@@ -7315,15 +7215,15 @@ LINE
   8
 0
  10
-706.5000000000001
+626.8085560697231
  20
-203.558556
+212.25000000000003
  30
 0.0
  11
-706.5000000000001
+626.8085560697231
  21
-204.55855600000004
+213.25000000000003
  31
 0.0
   0
@@ -7333,15 +7233,15 @@ LINE
   8
 0
  10
-706.5000000000001
+626.8085560697231
  20
-204.55855600000004
+213.25000000000003
  30
 0.0
  11
-705.5000000000001
+625.8085560697231
  21
-204.55855600000004
+213.25000000000003
  31
 0.0
   0
@@ -7351,15 +7251,15 @@ LINE
   8
 0
  10
-685.5000000000001
+605.8085560697231
  20
-207.05855600000004
+215.75000000000003
  30
 0.0
  11
-685.5000000000001
+605.8085560697231
  21
-206.05855600000004
+214.75000000000003
  31
 0.0
   0
@@ -7369,15 +7269,15 @@ LINE
   8
 0
  10
-685.5000000000001
+605.8085560697231
  20
-206.05855600000004
+214.75000000000003
  30
 0.0
  11
-686.5000000000001
+606.8085560697231
  21
-206.05855600000004
+214.75000000000003
  31
 0.0
   0
@@ -7387,15 +7287,15 @@ LINE
   8
 0
  10
-686.5000000000001
+606.8085560697231
  20
-206.05855600000004
+214.75000000000003
  30
 0.0
  11
-686.5000000000001
+606.8085560697231
  21
-207.05855600000004
+215.75000000000003
  31
 0.0
   0
@@ -7405,15 +7305,15 @@ LINE
   8
 0
  10
-686.5000000000001
+606.8085560697231
  20
-207.05855600000004
+215.75000000000003
  30
 0.0
  11
-685.5000000000001
+605.8085560697231
  21
-207.05855600000004
+215.75000000000003
  31
 0.0
   0
@@ -7423,15 +7323,15 @@ LINE
   8
 0
  10
-705.5000000000001
+625.8085560697231
  20
-207.05855600000004
+215.75000000000003
  30
 0.0
  11
-705.5000000000001
+625.8085560697231
  21
-206.05855600000004
+214.75000000000003
  31
 0.0
   0
@@ -7441,15 +7341,15 @@ LINE
   8
 0
  10
-705.5000000000001
+625.8085560697231
  20
-206.05855600000004
+214.75000000000003
  30
 0.0
  11
-706.5000000000001
+626.8085560697231
  21
-206.05855600000004
+214.75000000000003
  31
 0.0
   0
@@ -7459,15 +7359,15 @@ LINE
   8
 0
  10
-706.5000000000001
+626.8085560697231
  20
-206.05855600000004
+214.75000000000003
  30
 0.0
  11
-706.5000000000001
+626.8085560697231
  21
-207.05855600000004
+215.75000000000003
  31
 0.0
   0
@@ -7477,15 +7377,15 @@ LINE
   8
 0
  10
-706.5000000000001
+626.8085560697231
  20
-207.05855600000004
+215.75000000000003
  30
 0.0
  11
-705.5000000000001
+625.8085560697231
  21
-207.05855600000004
+215.75000000000003
  31
 0.0
   0
@@ -7495,15 +7395,15 @@ LINE
   8
 0
  10
-685.5000000000001
+605.8085560697231
  20
-209.55855600000004
+218.25000000000003
  30
 0.0
  11
-685.5000000000001
+605.8085560697231
  21
-208.55855600000004
+217.25000000000003
  31
 0.0
   0
@@ -7513,15 +7413,15 @@ LINE
   8
 0
  10
-685.5000000000001
+605.8085560697231
  20
-208.55855600000004
+217.25000000000003
  30
 0.0
  11
-686.5000000000001
+606.8085560697231
  21
-208.55855600000004
+217.25000000000003
  31
 0.0
   0
@@ -7531,15 +7431,15 @@ LINE
   8
 0
  10
-686.5000000000001
+606.8085560697231
  20
-208.55855600000004
+217.25000000000003
  30
 0.0
  11
-686.5000000000001
+606.8085560697231
  21
-209.55855600000004
+218.25000000000003
  31
 0.0
   0
@@ -7549,15 +7449,15 @@ LINE
   8
 0
  10
-686.5000000000001
+606.8085560697231
  20
-209.55855600000004
+218.25000000000003
  30
 0.0
  11
-685.5000000000001
+605.8085560697231
  21
-209.55855600000004
+218.25000000000003
  31
 0.0
   0
@@ -7567,15 +7467,15 @@ LINE
   8
 0
  10
-705.5000000000001
+625.8085560697231
  20
-209.55855600000004
+218.25000000000003
  30
 0.0
  11
-705.5000000000001
+625.8085560697231
  21
-208.55855600000004
+217.25000000000003
  31
 0.0
   0
@@ -7585,15 +7485,15 @@ LINE
   8
 0
  10
-705.5000000000001
+625.8085560697231
  20
-208.55855600000004
+217.25000000000003
  30
 0.0
  11
-706.5000000000001
+626.8085560697231
  21
-208.55855600000004
+217.25000000000003
  31
 0.0
   0
@@ -7603,15 +7503,15 @@ LINE
   8
 0
  10
-706.5000000000001
+626.8085560697231
  20
-208.55855600000004
+217.25000000000003
  30
 0.0
  11
-706.5000000000001
+626.8085560697231
  21
-209.55855600000004
+218.25000000000003
  31
 0.0
   0
@@ -7621,15 +7521,15 @@ LINE
   8
 0
  10
-706.5000000000001
+626.8085560697231
  20
-209.55855600000004
+218.25000000000003
  30
 0.0
  11
-705.5000000000001
+625.8085560697231
  21
-209.55855600000004
+218.25000000000003
  31
 0.0
   0
@@ -7639,15 +7539,15 @@ LINE
   8
 0
  10
-685.5000000000001
+605.8085560697231
  20
-212.05855600000004
+220.75
  30
 0.0
  11
-685.5000000000001
+605.8085560697231
  21
-211.05855600000004
+219.75000000000003
  31
 0.0
   0
@@ -7657,15 +7557,15 @@ LINE
   8
 0
  10
-685.5000000000001
+605.8085560697231
  20
-211.05855600000004
+219.75000000000003
  30
 0.0
  11
-686.5000000000001
+606.8085560697231
  21
-211.05855600000004
+219.75000000000003
  31
 0.0
   0
@@ -7675,15 +7575,15 @@ LINE
   8
 0
  10
-686.5000000000001
+606.8085560697231
  20
-211.05855600000004
+219.75000000000003
  30
 0.0
  11
-686.5000000000001
+606.8085560697231
  21
-212.05855600000004
+220.75
  31
 0.0
   0
@@ -7693,15 +7593,15 @@ LINE
   8
 0
  10
-686.5000000000001
+606.8085560697231
  20
-212.05855600000004
+220.75
  30
 0.0
  11
-685.5000000000001
+605.8085560697231
  21
-212.05855600000004
+220.75
  31
 0.0
   0
@@ -7711,15 +7611,15 @@ LINE
   8
 0
  10
-704.5000000000001
+625.8085560697231
  20
-213.05855600000004
+220.75
  30
 0.0
  11
-704.5000000000001
+625.8085560697231
  21
-210.05855600000004
+219.75000000000003
  31
 0.0
   0
@@ -7729,15 +7629,15 @@ LINE
   8
 0
  10
-704.5000000000001
+625.8085560697231
  20
-210.05855600000004
+219.75000000000003
  30
 0.0
  11
-707.5000000000001
+626.8085560697231
  21
-210.05855600000004
+219.75000000000003
  31
 0.0
   0
@@ -7747,15 +7647,15 @@ LINE
   8
 0
  10
-707.5000000000001
+626.8085560697231
  20
-210.05855600000004
+219.75000000000003
  30
 0.0
  11
-707.5000000000001
+626.8085560697231
  21
-213.05855600000004
+220.75
  31
 0.0
   0
@@ -7765,15 +7665,15 @@ LINE
   8
 0
  10
-707.5000000000001
+626.8085560697231
  20
-213.05855600000004
+220.75
  30
 0.0
  11
-704.5000000000001
+625.8085560697231
  21
-213.05855600000004
+220.75
  31
 0.0
   0
@@ -7783,15 +7683,15 @@ LINE
   8
 0
  10
-700.2500000000001
+605.8085560697231
  20
-170.05855600000004
+223.25000000000003
  30
 0.0
  11
-691.7500000000001
+605.8085560697231
  21
-170.05855600000004
+222.25000000000003
  31
 0.0
   0
@@ -7801,15 +7701,15 @@ LINE
   8
 0
  10
-691.7500000000001
+605.8085560697231
  20
-170.05855600000004
+222.25000000000003
  30
 0.0
  11
-691.7500000000001
+606.8085560697231
  21
-169.558556
+222.25000000000003
  31
 0.0
   0
@@ -7819,15 +7719,15 @@ LINE
   8
 0
  10
-691.7500000000001
+606.8085560697231
  20
-169.558556
+222.25000000000003
  30
 0.0
  11
-700.2500000000001
+606.8085560697231
  21
-169.558556
+223.25000000000003
  31
 0.0
   0
@@ -7837,15 +7737,15 @@ LINE
   8
 0
  10
-700.2500000000001
+606.8085560697231
  20
-169.558556
+223.25000000000003
  30
 0.0
  11
-700.2500000000001
+605.8085560697231
  21
-170.05855600000004
+223.25000000000003
  31
 0.0
   0
@@ -7855,15 +7755,15 @@ LINE
   8
 0
  10
-691.7500000000001
+625.8085560697231
  20
-217.80855600000004
+223.25000000000003
  30
 0.0
  11
-700.2500000000001
+625.8085560697231
  21
-217.80855600000004
+222.25000000000003
  31
 0.0
   0
@@ -7873,15 +7773,15 @@ LINE
   8
 0
  10
-700.2500000000001
+625.8085560697231
  20
-217.80855600000004
+222.25000000000003
  30
 0.0
  11
-700.2500000000001
+626.8085560697231
  21
-218.30855600000004
+222.25000000000003
  31
 0.0
   0
@@ -7891,15 +7791,15 @@ LINE
   8
 0
  10
-700.2500000000001
+626.8085560697231
  20
-218.30855600000004
+222.25000000000003
  30
 0.0
  11
-691.7500000000001
+626.8085560697231
  21
-218.30855600000004
+223.25000000000003
  31
 0.0
   0
@@ -7909,15 +7809,15 @@ LINE
   8
 0
  10
-691.7500000000001
+626.8085560697231
  20
-218.30855600000004
+223.25000000000003
  30
 0.0
  11
-691.7500000000001
+625.8085560697231
  21
-217.80855600000004
+223.25000000000003
  31
 0.0
   0
@@ -7927,15 +7827,15 @@ LINE
   8
 0
  10
-723.0000000000001
+605.8085560697231
  20
-213.30855600000004
+225.75000000000003
  30
 0.0
  11
-723.0000000000001
+605.8085560697231
  21
-200.30855600000004
+224.75000000000003
  31
 0.0
   0
@@ -7945,15 +7845,15 @@ LINE
   8
 0
  10
-723.0000000000001
+605.8085560697231
  20
-200.30855600000004
+224.75000000000003
  30
 0.0
  11
-753.0000000000001
+606.8085560697231
  21
-200.30855600000004
+224.75000000000003
  31
 0.0
   0
@@ -7963,15 +7863,15 @@ LINE
   8
 0
  10
-753.0000000000001
+606.8085560697231
  20
-200.30855600000004
+224.75000000000003
  30
 0.0
  11
-753.0000000000001
+606.8085560697231
  21
-213.30855600000004
+225.75000000000003
  31
 0.0
   0
@@ -7981,15 +7881,15 @@ LINE
   8
 0
  10
-753.0000000000001
+606.8085560697231
  20
-213.30855600000004
+225.75000000000003
  30
 0.0
  11
-723.0000000000001
+605.8085560697231
  21
-213.30855600000004
+225.75000000000003
  31
 0.0
   0
@@ -7999,15 +7899,15 @@ LINE
   8
 0
  10
-730.0681818181819
+625.8085560697231
  20
-167.80855600000004
+225.75000000000003
  30
 0.0
  11
-718.659090909091
+625.8085560697231
  21
-167.80855600000004
+224.75000000000003
  31
 0.0
   0
@@ -8017,15 +7917,15 @@ LINE
   8
 0
  10
-718.659090909091
+625.8085560697231
  20
-167.80855600000004
+224.75000000000003
  30
 0.0
  11
-718.659090909091
+626.8085560697231
  21
-167.308556
+224.75000000000003
  31
 0.0
   0
@@ -8035,15 +7935,15 @@ LINE
   8
 0
  10
-718.659090909091
+626.8085560697231
  20
-167.308556
+224.75000000000003
  30
 0.0
  11
-730.0681818181819
+626.8085560697231
  21
-167.308556
+225.75000000000003
  31
 0.0
   0
@@ -8053,15 +7953,15 @@ LINE
   8
 0
  10
-730.0681818181819
+626.8085560697231
  20
-167.308556
+225.75000000000003
  30
 0.0
  11
-730.0681818181819
+625.8085560697231
  21
-167.80855600000004
+225.75000000000003
  31
 0.0
   0
@@ -8071,15 +7971,15 @@ LINE
   8
 0
  10
-757.3409090909092
+605.8085560697231
  20
-167.80855600000004
+228.25000000000003
  30
 0.0
  11
-745.9318181818182
+605.8085560697231
  21
-167.80855600000004
+227.25000000000003
  31
 0.0
   0
@@ -8089,15 +7989,15 @@ LINE
   8
 0
  10
-745.9318181818182
+605.8085560697231
  20
-167.80855600000004
+227.25000000000003
  30
 0.0
  11
-745.9318181818182
+606.8085560697231
  21
-167.308556
+227.25000000000003
  31
 0.0
   0
@@ -8107,15 +8007,15 @@ LINE
   8
 0
  10
-745.9318181818182
+606.8085560697231
  20
-167.308556
+227.25000000000003
  30
 0.0
  11
-757.3409090909092
+606.8085560697231
  21
-167.308556
+228.25000000000003
  31
 0.0
   0
@@ -8125,15 +8025,15 @@ LINE
   8
 0
  10
-757.3409090909092
+606.8085560697231
  20
-167.308556
+228.25000000000003
  30
 0.0
  11
-757.3409090909092
+605.8085560697231
  21
-167.80855600000004
+228.25000000000003
  31
 0.0
   0
@@ -8143,15 +8043,15 @@ LINE
   8
 0
  10
-760.25
+625.8085560697231
  20
-184.74037418181823
+228.25000000000003
  30
 0.0
  11
-760.25
+625.8085560697231
  21
-173.14946509090913
+227.25000000000003
  31
 0.0
   0
@@ -8161,15 +8061,15 @@ LINE
   8
 0
  10
-760.25
+625.8085560697231
  20
-173.14946509090913
+227.25000000000003
  30
 0.0
  11
-760.75
+626.8085560697231
  21
-173.14946509090913
+227.25000000000003
  31
 0.0
   0
@@ -8179,15 +8079,15 @@ LINE
   8
 0
  10
-760.75
+626.8085560697231
  20
-173.14946509090913
+227.25000000000003
  30
 0.0
  11
-760.75
+626.8085560697231
  21
-184.74037418181823
+228.25000000000003
  31
 0.0
   0
@@ -8197,15 +8097,15 @@ LINE
   8
 0
  10
-760.75
+626.8085560697231
  20
-184.74037418181823
+228.25000000000003
  30
 0.0
  11
-760.25
+625.8085560697231
  21
-184.74037418181823
+228.25000000000003
  31
 0.0
   0
@@ -8215,15 +8115,15 @@ LINE
   8
 0
  10
-760.25
+605.8085560697231
  20
-212.46764690909094
+230.75000000000003
  30
 0.0
  11
-760.25
+605.8085560697231
  21
-200.87673781818185
+229.75
  31
 0.0
   0
@@ -8233,15 +8133,15 @@ LINE
   8
 0
  10
-760.25
+605.8085560697231
  20
-200.87673781818185
+229.75
  30
 0.0
  11
-760.75
+606.8085560697231
  21
-200.87673781818185
+229.75
  31
 0.0
   0
@@ -8251,15 +8151,15 @@ LINE
   8
 0
  10
-760.75
+606.8085560697231
  20
-200.87673781818185
+229.75
  30
 0.0
  11
-760.75
+606.8085560697231
  21
-212.46764690909094
+230.75000000000003
  31
 0.0
   0
@@ -8269,15 +8169,15 @@ LINE
   8
 0
  10
-760.75
+606.8085560697231
  20
-212.46764690909094
+230.75000000000003
  30
 0.0
  11
-760.25
+605.8085560697231
  21
-212.46764690909094
+230.75000000000003
  31
 0.0
   0
@@ -8287,15 +8187,15 @@ LINE
   8
 0
  10
-600.5
+625.8085560697231
  20
-175.55855600000004
+230.75000000000003
  30
 0.0
  11
-600.5
+625.8085560697231
  21
-172.55855600000004
+229.75
  31
 0.0
   0
@@ -8305,15 +8205,15 @@ LINE
   8
 0
  10
-600.5
+625.8085560697231
  20
-172.55855600000004
+229.75
  30
 0.0
  11
-603.5000000000001
+626.8085560697231
  21
-172.55855600000004
+229.75
  31
 0.0
   0
@@ -8323,15 +8223,15 @@ LINE
   8
 0
  10
-603.5000000000001
+626.8085560697231
  20
-172.55855600000004
+229.75
  30
 0.0
  11
-603.5000000000001
+626.8085560697231
  21
-175.55855600000004
+230.75000000000003
  31
 0.0
   0
@@ -8341,15 +8241,15 @@ LINE
   8
 0
  10
-603.5000000000001
+626.8085560697231
  20
-175.55855600000004
+230.75000000000003
  30
 0.0
  11
-600.5
+625.8085560697231
  21
-175.55855600000004
+230.75000000000003
  31
 0.0
   0
@@ -8359,15 +8259,15 @@ LINE
   8
 0
  10
-621.5000000000001
+605.8085560697231
  20
-174.55855600000004
+233.25000000000003
  30
 0.0
  11
-621.5000000000001
+605.8085560697231
  21
-173.55855600000004
+232.25000000000003
  31
 0.0
   0
@@ -8377,15 +8277,15 @@ LINE
   8
 0
  10
-621.5000000000001
+605.8085560697231
  20
-173.55855600000004
+232.25000000000003
  30
 0.0
  11
-622.5000000000001
+606.8085560697231
  21
-173.55855600000004
+232.25000000000003
  31
 0.0
   0
@@ -8395,15 +8295,15 @@ LINE
   8
 0
  10
-622.5000000000001
+606.8085560697231
  20
-173.55855600000004
+232.25000000000003
  30
 0.0
  11
-622.5000000000001
+606.8085560697231
  21
-174.55855600000004
+233.25000000000003
  31
 0.0
   0
@@ -8413,15 +8313,15 @@ LINE
   8
 0
  10
-622.5000000000001
+606.8085560697231
  20
-174.55855600000004
+233.25000000000003
  30
 0.0
  11
-621.5000000000001
+605.8085560697231
  21
-174.55855600000004
+233.25000000000003
  31
 0.0
   0
@@ -8431,15 +8331,15 @@ LINE
   8
 0
  10
-601.5
+625.8085560697231
  20
-177.05855600000004
+233.25000000000003
  30
 0.0
  11
-601.5
+625.8085560697231
  21
-176.058556
+232.25000000000003
  31
 0.0
   0
@@ -8449,15 +8349,15 @@ LINE
   8
 0
  10
-601.5
+625.8085560697231
  20
-176.058556
+232.25000000000003
  30
 0.0
  11
-602.5000000000001
+626.8085560697231
  21
-176.058556
+232.25000000000003
  31
 0.0
   0
@@ -8467,15 +8367,15 @@ LINE
   8
 0
  10
-602.5000000000001
+626.8085560697231
  20
-176.058556
+232.25000000000003
  30
 0.0
  11
-602.5000000000001
+626.8085560697231
  21
-177.05855600000004
+233.25000000000003
  31
 0.0
   0
@@ -8485,15 +8385,15 @@ LINE
   8
 0
  10
-602.5000000000001
+626.8085560697231
  20
-177.05855600000004
+233.25000000000003
  30
 0.0
  11
-601.5
+625.8085560697231
  21
-177.05855600000004
+233.25000000000003
  31
 0.0
   0
@@ -8503,15 +8403,15 @@ LINE
   8
 0
  10
-621.5000000000001
+605.8085560697231
  20
-177.05855600000004
+235.75000000000003
  30
 0.0
  11
-621.5000000000001
+605.8085560697231
  21
-176.058556
+234.75000000000003
  31
 0.0
   0
@@ -8521,15 +8421,15 @@ LINE
   8
 0
  10
-621.5000000000001
+605.8085560697231
  20
-176.058556
+234.75000000000003
  30
 0.0
  11
-622.5000000000001
+606.8085560697231
  21
-176.058556
+234.75000000000003
  31
 0.0
   0
@@ -8539,15 +8439,15 @@ LINE
   8
 0
  10
-622.5000000000001
+606.8085560697231
  20
-176.058556
+234.75000000000003
  30
 0.0
  11
-622.5000000000001
+606.8085560697231
  21
-177.05855600000004
+235.75000000000003
  31
 0.0
   0
@@ -8557,15 +8457,15 @@ LINE
   8
 0
  10
-622.5000000000001
+606.8085560697231
  20
-177.05855600000004
+235.75000000000003
  30
 0.0
  11
-621.5000000000001
+605.8085560697231
  21
-177.05855600000004
+235.75000000000003
  31
 0.0
   0
@@ -8575,15 +8475,15 @@ LINE
   8
 0
  10
-601.5
+625.8085560697231
  20
-179.55855600000004
+235.75000000000003
  30
 0.0
  11
-601.5
+625.8085560697231
  21
-178.558556
+234.75000000000003
  31
 0.0
   0
@@ -8593,15 +8493,15 @@ LINE
   8
 0
  10
-601.5
+625.8085560697231
  20
-178.558556
+234.75000000000003
  30
 0.0
  11
-602.5000000000001
+626.8085560697231
  21
-178.558556
+234.75000000000003
  31
 0.0
   0
@@ -8611,15 +8511,15 @@ LINE
   8
 0
  10
-602.5000000000001
+626.8085560697231
  20
-178.558556
+234.75000000000003
  30
 0.0
  11
-602.5000000000001
+626.8085560697231
  21
-179.55855600000004
+235.75000000000003
  31
 0.0
   0
@@ -8629,15 +8529,15 @@ LINE
   8
 0
  10
-602.5000000000001
+626.8085560697231
  20
-179.55855600000004
+235.75000000000003
  30
 0.0
  11
-601.5
+625.8085560697231
  21
-179.55855600000004
+235.75000000000003
  31
 0.0
   0
@@ -8647,15 +8547,15 @@ LINE
   8
 0
  10
-621.5000000000001
+605.8085560697231
  20
-179.55855600000004
+238.25000000000003
  30
 0.0
  11
-621.5000000000001
+605.8085560697231
  21
-178.558556
+237.25000000000003
  31
 0.0
   0
@@ -8665,15 +8565,15 @@ LINE
   8
 0
  10
-621.5000000000001
+605.8085560697231
  20
-178.558556
+237.25000000000003
  30
 0.0
  11
-622.5000000000001
+606.8085560697231
  21
-178.558556
+237.25000000000003
  31
 0.0
   0
@@ -8683,15 +8583,15 @@ LINE
   8
 0
  10
-622.5000000000001
+606.8085560697231
  20
-178.558556
+237.25000000000003
  30
 0.0
  11
-622.5000000000001
+606.8085560697231
  21
-179.55855600000004
+238.25000000000003
  31
 0.0
   0
@@ -8701,15 +8601,15 @@ LINE
   8
 0
  10
-622.5000000000001
+606.8085560697231
  20
-179.55855600000004
+238.25000000000003
  30
 0.0
  11
-621.5000000000001
+605.8085560697231
  21
-179.55855600000004
+238.25000000000003
  31
 0.0
   0
@@ -8719,15 +8619,15 @@ LINE
   8
 0
  10
-601.5
+625.8085560697231
  20
-182.05855600000004
+238.25000000000003
  30
 0.0
  11
-601.5
+625.8085560697231
  21
-181.058556
+237.25000000000003
  31
 0.0
   0
@@ -8737,15 +8637,15 @@ LINE
   8
 0
  10
-601.5
+625.8085560697231
  20
-181.058556
+237.25000000000003
  30
 0.0
  11
-602.5000000000001
+626.8085560697231
  21
-181.058556
+237.25000000000003
  31
 0.0
   0
@@ -8755,15 +8655,15 @@ LINE
   8
 0
  10
-602.5000000000001
+626.8085560697231
  20
-181.058556
+237.25000000000003
  30
 0.0
  11
-602.5000000000001
+626.8085560697231
  21
-182.05855600000004
+238.25000000000003
  31
 0.0
   0
@@ -8773,15 +8673,15 @@ LINE
   8
 0
  10
-602.5000000000001
+626.8085560697231
  20
-182.05855600000004
+238.25000000000003
  30
 0.0
  11
-601.5
+625.8085560697231
  21
-182.05855600000004
+238.25000000000003
  31
 0.0
   0
@@ -8791,15 +8691,15 @@ LINE
   8
 0
  10
-621.5000000000001
+605.8085560697231
  20
-182.05855600000004
+240.75000000000003
  30
 0.0
  11
-621.5000000000001
+605.8085560697231
  21
-181.058556
+239.75000000000003
  31
 0.0
   0
@@ -8809,15 +8709,15 @@ LINE
   8
 0
  10
-621.5000000000001
+605.8085560697231
  20
-181.058556
+239.75000000000003
  30
 0.0
  11
-622.5000000000001
+606.8085560697231
  21
-181.058556
+239.75000000000003
  31
 0.0
   0
@@ -8827,15 +8727,15 @@ LINE
   8
 0
  10
-622.5000000000001
+606.8085560697231
  20
-181.058556
+239.75000000000003
  30
 0.0
  11
-622.5000000000001
+606.8085560697231
  21
-182.05855600000004
+240.75000000000003
  31
 0.0
   0
@@ -8845,15 +8745,15 @@ LINE
   8
 0
  10
-622.5000000000001
+606.8085560697231
  20
-182.05855600000004
+240.75000000000003
  30
 0.0
  11
-621.5000000000001
+605.8085560697231
  21
-182.05855600000004
+240.75000000000003
  31
 0.0
   0
@@ -8863,15 +8763,15 @@ LINE
   8
 0
  10
-601.5
+625.8085560697231
  20
-184.55855600000004
+240.75000000000003
  30
 0.0
  11
-601.5
+625.8085560697231
  21
-183.55855600000004
+239.75000000000003
  31
 0.0
   0
@@ -8881,15 +8781,15 @@ LINE
   8
 0
  10
-601.5
+625.8085560697231
  20
-183.55855600000004
+239.75000000000003
  30
 0.0
  11
-602.5000000000001
+626.8085560697231
  21
-183.55855600000004
+239.75000000000003
  31
 0.0
   0
@@ -8899,15 +8799,15 @@ LINE
   8
 0
  10
-602.5000000000001
+626.8085560697231
  20
-183.55855600000004
+239.75000000000003
  30
 0.0
  11
-602.5000000000001
+626.8085560697231
  21
-184.55855600000004
+240.75000000000003
  31
 0.0
   0
@@ -8917,15 +8817,15 @@ LINE
   8
 0
  10
-602.5000000000001
+626.8085560697231
  20
-184.55855600000004
+240.75000000000003
  30
 0.0
  11
-601.5
+625.8085560697231
  21
-184.55855600000004
+240.75000000000003
  31
 0.0
   0
@@ -8935,15 +8835,15 @@ LINE
   8
 0
  10
-621.5000000000001
+605.8085560697231
  20
-184.55855600000004
+243.25000000000003
  30
 0.0
  11
-621.5000000000001
+605.8085560697231
  21
-183.55855600000004
+242.25000000000003
  31
 0.0
   0
@@ -8953,15 +8853,15 @@ LINE
   8
 0
  10
-621.5000000000001
+605.8085560697231
  20
-183.55855600000004
+242.25000000000003
  30
 0.0
  11
-622.5000000000001
+606.8085560697231
  21
-183.55855600000004
+242.25000000000003
  31
 0.0
   0
@@ -8971,15 +8871,15 @@ LINE
   8
 0
  10
-622.5000000000001
+606.8085560697231
  20
-183.55855600000004
+242.25000000000003
  30
 0.0
  11
-622.5000000000001
+606.8085560697231
  21
-184.55855600000004
+243.25000000000003
  31
 0.0
   0
@@ -8989,15 +8889,15 @@ LINE
   8
 0
  10
-622.5000000000001
+606.8085560697231
  20
-184.55855600000004
+243.25000000000003
  30
 0.0
  11
-621.5000000000001
+605.8085560697231
  21
-184.55855600000004
+243.25000000000003
  31
 0.0
   0
@@ -9007,15 +8907,15 @@ LINE
   8
 0
  10
-601.5
+625.8085560697231
  20
-187.05855600000004
+243.25000000000003
  30
 0.0
  11
-601.5
+625.8085560697231
  21
-186.05855600000004
+242.25000000000003
  31
 0.0
   0
@@ -9025,15 +8925,15 @@ LINE
   8
 0
  10
-601.5
+625.8085560697231
  20
-186.05855600000004
+242.25000000000003
  30
 0.0
  11
-602.5000000000001
+626.8085560697231
  21
-186.05855600000004
+242.25000000000003
  31
 0.0
   0
@@ -9043,15 +8943,15 @@ LINE
   8
 0
  10
-602.5000000000001
+626.8085560697231
  20
-186.05855600000004
+242.25000000000003
  30
 0.0
  11
-602.5000000000001
+626.8085560697231
  21
-187.05855600000004
+243.25000000000003
  31
 0.0
   0
@@ -9061,15 +8961,15 @@ LINE
   8
 0
  10
-602.5000000000001
+626.8085560697231
  20
-187.05855600000004
+243.25000000000003
  30
 0.0
  11
-601.5
+625.8085560697231
  21
-187.05855600000004
+243.25000000000003
  31
 0.0
   0
@@ -9079,15 +8979,15 @@ LINE
   8
 0
  10
-621.5000000000001
+605.8085560697231
  20
-187.05855600000004
+245.75000000000003
  30
 0.0
  11
-621.5000000000001
+605.8085560697231
  21
-186.05855600000004
+244.75000000000003
  31
 0.0
   0
@@ -9097,15 +8997,15 @@ LINE
   8
 0
  10
-621.5000000000001
+605.8085560697231
  20
-186.05855600000004
+244.75000000000003
  30
 0.0
  11
-622.5000000000001
+606.8085560697231
  21
-186.05855600000004
+244.75000000000003
  31
 0.0
   0
@@ -9115,15 +9015,15 @@ LINE
   8
 0
  10
-622.5000000000001
+606.8085560697231
  20
-186.05855600000004
+244.75000000000003
  30
 0.0
  11
-622.5000000000001
+606.8085560697231
  21
-187.05855600000004
+245.75000000000003
  31
 0.0
   0
@@ -9133,15 +9033,15 @@ LINE
   8
 0
  10
-622.5000000000001
+606.8085560697231
  20
-187.05855600000004
+245.75000000000003
  30
 0.0
  11
-621.5000000000001
+605.8085560697231
  21
-187.05855600000004
+245.75000000000003
  31
 0.0
   0
@@ -9151,15 +9051,15 @@ LINE
   8
 0
  10
-601.5
+624.8085560697231
  20
-189.55855600000004
+246.75000000000003
  30
 0.0
  11
-601.5
+624.8085560697231
  21
-188.55855600000004
+243.75000000000003
  31
 0.0
   0
@@ -9169,15 +9069,15 @@ LINE
   8
 0
  10
-601.5
+624.8085560697231
  20
-188.55855600000004
+243.75000000000003
  30
 0.0
  11
-602.5000000000001
+627.8085560697231
  21
-188.55855600000004
+243.75000000000003
  31
 0.0
   0
@@ -9187,15 +9087,15 @@ LINE
   8
 0
  10
-602.5000000000001
+627.8085560697231
  20
-188.55855600000004
+243.75000000000003
  30
 0.0
  11
-602.5000000000001
+627.8085560697231
  21
-189.55855600000004
+246.75000000000003
  31
 0.0
   0
@@ -9205,15 +9105,15 @@ LINE
   8
 0
  10
-602.5000000000001
+627.8085560697231
  20
-189.55855600000004
+246.75000000000003
  30
 0.0
  11
-601.5
+624.8085560697231
  21
-189.55855600000004
+246.75000000000003
  31
 0.0
   0
@@ -9223,15 +9123,15 @@ LINE
   8
 0
  10
-621.5000000000001
+620.5585560697231
  20
-189.55855600000004
+203.75000000000003
  30
 0.0
  11
-621.5000000000001
+612.0585560697231
  21
-188.55855600000004
+203.75000000000003
  31
 0.0
   0
@@ -9241,15 +9141,15 @@ LINE
   8
 0
  10
-621.5000000000001
+612.0585560697231
  20
-188.55855600000004
+203.75000000000003
  30
 0.0
  11
-622.5000000000001
+612.0585560697231
  21
-188.55855600000004
+203.25000000000003
  31
 0.0
   0
@@ -9259,15 +9159,15 @@ LINE
   8
 0
  10
-622.5000000000001
+612.0585560697231
  20
-188.55855600000004
+203.25000000000003
  30
 0.0
  11
-622.5000000000001
+620.5585560697231
  21
-189.55855600000004
+203.25000000000003
  31
 0.0
   0
@@ -9277,15 +9177,15 @@ LINE
   8
 0
  10
-622.5000000000001
+620.5585560697231
  20
-189.55855600000004
+203.25000000000003
  30
 0.0
  11
-621.5000000000001
+620.5585560697231
  21
-189.55855600000004
+203.75000000000003
  31
 0.0
   0
@@ -9295,15 +9195,15 @@ LINE
   8
 0
  10
-601.5
+612.0585560697231
  20
-192.058556
+251.50000000000003
  30
 0.0
  11
-601.5
+620.5585560697231
  21
-191.05855600000004
+251.50000000000003
  31
 0.0
   0
@@ -9313,15 +9213,15 @@ LINE
   8
 0
  10
-601.5
+620.5585560697231
  20
-191.05855600000004
+251.50000000000003
  30
 0.0
  11
-602.5000000000001
+620.5585560697231
  21
-191.05855600000004
+252.00000000000003
  31
 0.0
   0
@@ -9331,15 +9231,15 @@ LINE
   8
 0
  10
-602.5000000000001
+620.5585560697231
  20
-191.05855600000004
+252.00000000000003
  30
 0.0
  11
-602.5000000000001
+612.0585560697231
  21
-192.058556
+252.00000000000003
  31
 0.0
   0
@@ -9349,15 +9249,15 @@ LINE
   8
 0
  10
-602.5000000000001
+612.0585560697231
  20
-192.058556
+252.00000000000003
  30
 0.0
  11
-601.5
+612.0585560697231
  21
-192.058556
+251.50000000000003
  31
 0.0
   0
@@ -9367,15 +9267,15 @@ LINE
   8
 0
  10
-621.5000000000001
+643.3085560697231
  20
-192.058556
+247.00000000000003
  30
 0.0
  11
-621.5000000000001
+643.3085560697231
  21
-191.05855600000004
+234.00000000000003
  31
 0.0
   0
@@ -9385,15 +9285,15 @@ LINE
   8
 0
  10
-621.5000000000001
+643.3085560697231
  20
-191.05855600000004
+234.00000000000003
  30
 0.0
  11
-622.5000000000001
+673.3085560697231
  21
-191.05855600000004
+234.00000000000003
  31
 0.0
   0
@@ -9403,15 +9303,15 @@ LINE
   8
 0
  10
-622.5000000000001
+673.3085560697231
  20
-191.05855600000004
+234.00000000000003
  30
 0.0
  11
-622.5000000000001
+673.3085560697231
  21
-192.058556
+247.00000000000003
  31
 0.0
   0
@@ -9421,15 +9321,15 @@ LINE
   8
 0
  10
-622.5000000000001
+673.3085560697231
  20
-192.058556
+247.00000000000003
  30
 0.0
  11
-621.5000000000001
+643.3085560697231
  21
-192.058556
+247.00000000000003
  31
 0.0
   0
@@ -9439,15 +9339,15 @@ LINE
   8
 0
  10
-601.5
+650.3767378879048
  20
-194.558556
+201.50000000000003
  30
 0.0
  11
-601.5
+638.967646978814
  21
-193.55855600000004
+201.50000000000003
  31
 0.0
   0
@@ -9457,15 +9357,15 @@ LINE
   8
 0
  10
-601.5
+638.967646978814
  20
-193.55855600000004
+201.50000000000003
  30
 0.0
  11
-602.5000000000001
+638.967646978814
  21
-193.55855600000004
+201.00000000000003
  31
 0.0
   0
@@ -9475,15 +9375,15 @@ LINE
   8
 0
  10
-602.5000000000001
+638.967646978814
  20
-193.55855600000004
+201.00000000000003
  30
 0.0
  11
-602.5000000000001
+650.3767378879048
  21
-194.558556
+201.00000000000003
  31
 0.0
   0
@@ -9493,15 +9393,15 @@ LINE
   8
 0
  10
-602.5000000000001
+650.3767378879048
  20
-194.558556
+201.00000000000003
  30
 0.0
  11
-601.5
+650.3767378879048
  21
-194.558556
+201.50000000000003
  31
 0.0
   0
@@ -9511,15 +9411,15 @@ LINE
   8
 0
  10
-621.5000000000001
+677.6494651606322
  20
-194.558556
+201.50000000000003
  30
 0.0
  11
-621.5000000000001
+666.2403742515412
  21
-193.55855600000004
+201.50000000000003
  31
 0.0
   0
@@ -9529,15 +9429,15 @@ LINE
   8
 0
  10
-621.5000000000001
+666.2403742515412
  20
-193.55855600000004
+201.50000000000003
  30
 0.0
  11
-622.5000000000001
+666.2403742515412
  21
-193.55855600000004
+201.00000000000003
  31
 0.0
   0
@@ -9547,15 +9447,15 @@ LINE
   8
 0
  10
-622.5000000000001
+666.2403742515412
  20
-193.55855600000004
+201.00000000000003
  30
 0.0
  11
-622.5000000000001
+677.6494651606322
  21
-194.558556
+201.00000000000003
  31
 0.0
   0
@@ -9565,15 +9465,15 @@ LINE
   8
 0
  10
-622.5000000000001
+677.6494651606322
  20
-194.558556
+201.00000000000003
  30
 0.0
  11
-621.5000000000001
+677.6494651606322
  21
-194.558556
+201.50000000000003
  31
 0.0
   0
@@ -9583,15 +9483,15 @@ LINE
   8
 0
  10
-601.5
+680.558556069723
  20
-197.05855600000004
+218.43181818181822
  30
 0.0
  11
-601.5
+680.558556069723
  21
-196.05855600000004
+206.84090909090912
  31
 0.0
   0
@@ -9601,15 +9501,15 @@ LINE
   8
 0
  10
-601.5
+680.558556069723
  20
-196.05855600000004
+206.84090909090912
  30
 0.0
  11
-602.5000000000001
+681.058556069723
  21
-196.05855600000004
+206.84090909090912
  31
 0.0
   0
@@ -9619,15 +9519,15 @@ LINE
   8
 0
  10
-602.5000000000001
+681.058556069723
  20
-196.05855600000004
+206.84090909090912
  30
 0.0
  11
-602.5000000000001
+681.058556069723
  21
-197.05855600000004
+218.43181818181822
  31
 0.0
   0
@@ -9637,15 +9537,15 @@ LINE
   8
 0
  10
-602.5000000000001
+681.058556069723
  20
-197.05855600000004
+218.43181818181822
  30
 0.0
  11
-601.5
+680.558556069723
  21
-197.05855600000004
+218.43181818181822
  31
 0.0
   0
@@ -9655,15 +9555,15 @@ LINE
   8
 0
  10
-621.5000000000001
+680.558556069723
  20
-197.05855600000004
+246.15909090909093
  30
 0.0
  11
-621.5000000000001
+680.558556069723
  21
-196.05855600000004
+234.5681818181818
  31
 0.0
   0
@@ -9673,15 +9573,15 @@ LINE
   8
 0
  10
-621.5000000000001
+680.558556069723
  20
-196.05855600000004
+234.5681818181818
  30
 0.0
  11
-622.5000000000001
+681.058556069723
  21
-196.05855600000004
+234.5681818181818
  31
 0.0
   0
@@ -9691,15 +9591,15 @@ LINE
   8
 0
  10
-622.5000000000001
+681.058556069723
  20
-196.05855600000004
+234.5681818181818
  30
 0.0
  11
-622.5000000000001
+681.058556069723
  21
-197.05855600000004
+246.15909090909093
  31
 0.0
   0
@@ -9709,15 +9609,15 @@ LINE
   8
 0
  10
-622.5000000000001
+681.058556069723
  20
-197.05855600000004
+246.15909090909093
  30
 0.0
  11
-621.5000000000001
+680.558556069723
  21
-197.05855600000004
+246.15909090909093
  31
 0.0
   0
@@ -9727,15 +9627,15 @@ LINE
   8
 0
  10
-601.5
+520.8085560697231
  20
-199.55855600000004
+209.25
  30
 0.0
  11
-601.5
+520.8085560697231
  21
-198.55855600000004
+206.25000000000003
  31
 0.0
   0
@@ -9745,15 +9645,15 @@ LINE
   8
 0
  10
-601.5
+520.8085560697231
  20
-198.55855600000004
+206.25000000000003
  30
 0.0
  11
-602.5000000000001
+523.8085560697231
  21
-198.55855600000004
+206.25000000000003
  31
 0.0
   0
@@ -9763,15 +9663,15 @@ LINE
   8
 0
  10
-602.5000000000001
+523.8085560697231
  20
-198.55855600000004
+206.25000000000003
  30
 0.0
  11
-602.5000000000001
+523.8085560697231
  21
-199.55855600000004
+209.25
  31
 0.0
   0
@@ -9781,15 +9681,15 @@ LINE
   8
 0
  10
-602.5000000000001
+523.8085560697231
  20
-199.55855600000004
+209.25
  30
 0.0
  11
-601.5
+520.8085560697231
  21
-199.55855600000004
+209.25
  31
 0.0
   0
@@ -9799,15 +9699,15 @@ LINE
   8
 0
  10
-621.5000000000001
+541.8085560697231
  20
-199.55855600000004
+208.25000000000003
  30
 0.0
  11
-621.5000000000001
+541.8085560697231
  21
-198.55855600000004
+207.25000000000003
  31
 0.0
   0
@@ -9817,15 +9717,15 @@ LINE
   8
 0
  10
-621.5000000000001
+541.8085560697231
  20
-198.55855600000004
+207.25000000000003
  30
 0.0
  11
-622.5000000000001
+542.8085560697231
  21
-198.55855600000004
+207.25000000000003
  31
 0.0
   0
@@ -9835,15 +9735,15 @@ LINE
   8
 0
  10
-622.5000000000001
+542.8085560697231
  20
-198.55855600000004
+207.25000000000003
  30
 0.0
  11
-622.5000000000001
+542.8085560697231
  21
-199.55855600000004
+208.25000000000003
  31
 0.0
   0
@@ -9853,15 +9753,15 @@ LINE
   8
 0
  10
-622.5000000000001
+542.8085560697231
  20
-199.55855600000004
+208.25000000000003
  30
 0.0
  11
-621.5000000000001
+541.8085560697231
  21
-199.55855600000004
+208.25000000000003
  31
 0.0
   0
@@ -9871,15 +9771,15 @@ LINE
   8
 0
  10
-601.5
+521.808556069723
  20
-202.05855600000004
+210.75000000000003
  30
 0.0
  11
-601.5
+521.808556069723
  21
-201.058556
+209.75000000000003
  31
 0.0
   0
@@ -9889,15 +9789,15 @@ LINE
   8
 0
  10
-601.5
+521.808556069723
  20
-201.058556
+209.75000000000003
  30
 0.0
  11
-602.5000000000001
+522.808556069723
  21
-201.058556
+209.75000000000003
  31
 0.0
   0
@@ -9907,15 +9807,15 @@ LINE
   8
 0
  10
-602.5000000000001
+522.808556069723
  20
-201.058556
+209.75000000000003
  30
 0.0
  11
-602.5000000000001
+522.808556069723
  21
-202.05855600000004
+210.75000000000003
  31
 0.0
   0
@@ -9925,15 +9825,15 @@ LINE
   8
 0
  10
-602.5000000000001
+522.808556069723
  20
-202.05855600000004
+210.75000000000003
  30
 0.0
  11
-601.5
+521.808556069723
  21
-202.05855600000004
+210.75000000000003
  31
 0.0
   0
@@ -9943,15 +9843,15 @@ LINE
   8
 0
  10
-621.5000000000001
+541.8085560697231
  20
-202.05855600000004
+210.75000000000003
  30
 0.0
  11
-621.5000000000001
+541.8085560697231
  21
-201.058556
+209.75000000000003
  31
 0.0
   0
@@ -9961,15 +9861,15 @@ LINE
   8
 0
  10
-621.5000000000001
+541.8085560697231
  20
-201.058556
+209.75000000000003
  30
 0.0
  11
-622.5000000000001
+542.8085560697231
  21
-201.058556
+209.75000000000003
  31
 0.0
   0
@@ -9979,15 +9879,15 @@ LINE
   8
 0
  10
-622.5000000000001
+542.8085560697231
  20
-201.058556
+209.75000000000003
  30
 0.0
  11
-622.5000000000001
+542.8085560697231
  21
-202.05855600000004
+210.75000000000003
  31
 0.0
   0
@@ -9997,15 +9897,15 @@ LINE
   8
 0
  10
-622.5000000000001
+542.8085560697231
  20
-202.05855600000004
+210.75000000000003
  30
 0.0
  11
-621.5000000000001
+541.8085560697231
  21
-202.05855600000004
+210.75000000000003
  31
 0.0
   0
@@ -10015,15 +9915,15 @@ LINE
   8
 0
  10
-601.5
+521.808556069723
  20
-204.55855600000004
+213.25000000000003
  30
 0.0
  11
-601.5
+521.808556069723
  21
-203.558556
+212.25000000000003
  31
 0.0
   0
@@ -10033,15 +9933,15 @@ LINE
   8
 0
  10
-601.5
+521.808556069723
  20
-203.558556
+212.25000000000003
  30
 0.0
  11
-602.5000000000001
+522.808556069723
  21
-203.558556
+212.25000000000003
  31
 0.0
   0
@@ -10051,15 +9951,15 @@ LINE
   8
 0
  10
-602.5000000000001
+522.808556069723
  20
-203.558556
+212.25000000000003
  30
 0.0
  11
-602.5000000000001
+522.808556069723
  21
-204.55855600000004
+213.25000000000003
  31
 0.0
   0
@@ -10069,15 +9969,15 @@ LINE
   8
 0
  10
-602.5000000000001
+522.808556069723
  20
-204.55855600000004
+213.25000000000003
  30
 0.0
  11
-601.5
+521.808556069723
  21
-204.55855600000004
+213.25000000000003
  31
 0.0
   0
@@ -10087,15 +9987,15 @@ LINE
   8
 0
  10
-621.5000000000001
+541.8085560697231
  20
-204.55855600000004
+213.25000000000003
  30
 0.0
  11
-621.5000000000001
+541.8085560697231
  21
-203.558556
+212.25000000000003
  31
 0.0
   0
@@ -10105,15 +10005,15 @@ LINE
   8
 0
  10
-621.5000000000001
+541.8085560697231
  20
-203.558556
+212.25000000000003
  30
 0.0
  11
-622.5000000000001
+542.8085560697231
  21
-203.558556
+212.25000000000003
  31
 0.0
   0
@@ -10123,15 +10023,15 @@ LINE
   8
 0
  10
-622.5000000000001
+542.8085560697231
  20
-203.558556
+212.25000000000003
  30
 0.0
  11
-622.5000000000001
+542.8085560697231
  21
-204.55855600000004
+213.25000000000003
  31
 0.0
   0
@@ -10141,15 +10041,15 @@ LINE
   8
 0
  10
-622.5000000000001
+542.8085560697231
  20
-204.55855600000004
+213.25000000000003
  30
 0.0
  11
-621.5000000000001
+541.8085560697231
  21
-204.55855600000004
+213.25000000000003
  31
 0.0
   0
@@ -10159,15 +10059,15 @@ LINE
   8
 0
  10
-601.5
+521.808556069723
  20
-207.05855600000004
+215.75000000000003
  30
 0.0
  11
-601.5
+521.808556069723
  21
-206.05855600000004
+214.75000000000003
  31
 0.0
   0
@@ -10177,15 +10077,15 @@ LINE
   8
 0
  10
-601.5
+521.808556069723
  20
-206.05855600000004
+214.75000000000003
  30
 0.0
  11
-602.5000000000001
+522.808556069723
  21
-206.05855600000004
+214.75000000000003
  31
 0.0
   0
@@ -10195,15 +10095,15 @@ LINE
   8
 0
  10
-602.5000000000001
+522.808556069723
  20
-206.05855600000004
+214.75000000000003
  30
 0.0
  11
-602.5000000000001
+522.808556069723
  21
-207.05855600000004
+215.75000000000003
  31
 0.0
   0
@@ -10213,15 +10113,15 @@ LINE
   8
 0
  10
-602.5000000000001
+522.808556069723
  20
-207.05855600000004
+215.75000000000003
  30
 0.0
  11
-601.5
+521.808556069723
  21
-207.05855600000004
+215.75000000000003
  31
 0.0
   0
@@ -10231,15 +10131,15 @@ LINE
   8
 0
  10
-621.5000000000001
+541.8085560697231
  20
-207.05855600000004
+215.75000000000003
  30
 0.0
  11
-621.5000000000001
+541.8085560697231
  21
-206.05855600000004
+214.75000000000003
  31
 0.0
   0
@@ -10249,15 +10149,15 @@ LINE
   8
 0
  10
-621.5000000000001
+541.8085560697231
  20
-206.05855600000004
+214.75000000000003
  30
 0.0
  11
-622.5000000000001
+542.8085560697231
  21
-206.05855600000004
+214.75000000000003
  31
 0.0
   0
@@ -10267,15 +10167,15 @@ LINE
   8
 0
  10
-622.5000000000001
+542.8085560697231
  20
-206.05855600000004
+214.75000000000003
  30
 0.0
  11
-622.5000000000001
+542.8085560697231
  21
-207.05855600000004
+215.75000000000003
  31
 0.0
   0
@@ -10285,15 +10185,15 @@ LINE
   8
 0
  10
-622.5000000000001
+542.8085560697231
  20
-207.05855600000004
+215.75000000000003
  30
 0.0
  11
-621.5000000000001
+541.8085560697231
  21
-207.05855600000004
+215.75000000000003
  31
 0.0
   0
@@ -10303,15 +10203,15 @@ LINE
   8
 0
  10
-601.5
+521.808556069723
  20
-209.55855600000004
+218.25000000000003
  30
 0.0
  11
-601.5
+521.808556069723
  21
-208.55855600000004
+217.25000000000003
  31
 0.0
   0
@@ -10321,15 +10221,15 @@ LINE
   8
 0
  10
-601.5
+521.808556069723
  20
-208.55855600000004
+217.25000000000003
  30
 0.0
  11
-602.5000000000001
+522.808556069723
  21
-208.55855600000004
+217.25000000000003
  31
 0.0
   0
@@ -10339,15 +10239,15 @@ LINE
   8
 0
  10
-602.5000000000001
+522.808556069723
  20
-208.55855600000004
+217.25000000000003
  30
 0.0
  11
-602.5000000000001
+522.808556069723
  21
-209.55855600000004
+218.25000000000003
  31
 0.0
   0
@@ -10357,15 +10257,15 @@ LINE
   8
 0
  10
-602.5000000000001
+522.808556069723
  20
-209.55855600000004
+218.25000000000003
  30
 0.0
  11
-601.5
+521.808556069723
  21
-209.55855600000004
+218.25000000000003
  31
 0.0
   0
@@ -10375,15 +10275,15 @@ LINE
   8
 0
  10
-621.5000000000001
+541.8085560697231
  20
-209.55855600000004
+218.25000000000003
  30
 0.0
  11
-621.5000000000001
+541.8085560697231
  21
-208.55855600000004
+217.25000000000003
  31
 0.0
   0
@@ -10393,15 +10293,15 @@ LINE
   8
 0
  10
-621.5000000000001
+541.8085560697231
  20
-208.55855600000004
+217.25000000000003
  30
 0.0
  11
-622.5000000000001
+542.8085560697231
  21
-208.55855600000004
+217.25000000000003
  31
 0.0
   0
@@ -10411,15 +10311,15 @@ LINE
   8
 0
  10
-622.5000000000001
+542.8085560697231
  20
-208.55855600000004
+217.25000000000003
  30
 0.0
  11
-622.5000000000001
+542.8085560697231
  21
-209.55855600000004
+218.25000000000003
  31
 0.0
   0
@@ -10429,15 +10329,15 @@ LINE
   8
 0
  10
-622.5000000000001
+542.8085560697231
  20
-209.55855600000004
+218.25000000000003
  30
 0.0
  11
-621.5000000000001
+541.8085560697231
  21
-209.55855600000004
+218.25000000000003
  31
 0.0
   0
@@ -10447,15 +10347,15 @@ LINE
   8
 0
  10
-601.5
+521.808556069723
  20
-212.05855600000004
+220.75
  30
 0.0
  11
-601.5
+521.808556069723
  21
-211.05855600000004
+219.75000000000003
  31
 0.0
   0
@@ -10465,15 +10365,15 @@ LINE
   8
 0
  10
-601.5
+521.808556069723
  20
-211.05855600000004
+219.75000000000003
  30
 0.0
  11
-602.5000000000001
+522.808556069723
  21
-211.05855600000004
+219.75000000000003
  31
 0.0
   0
@@ -10483,15 +10383,15 @@ LINE
   8
 0
  10
-602.5000000000001
+522.808556069723
  20
-211.05855600000004
+219.75000000000003
  30
 0.0
  11
-602.5000000000001
+522.808556069723
  21
-212.05855600000004
+220.75
  31
 0.0
   0
@@ -10501,15 +10401,15 @@ LINE
   8
 0
  10
-602.5000000000001
+522.808556069723
  20
-212.05855600000004
+220.75
  30
 0.0
  11
-601.5
+521.808556069723
  21
-212.05855600000004
+220.75
  31
 0.0
   0
@@ -10519,15 +10419,15 @@ LINE
   8
 0
  10
-620.5000000000001
+541.8085560697231
  20
-213.05855600000004
+220.75
  30
 0.0
  11
-620.5000000000001
+541.8085560697231
  21
-210.05855600000004
+219.75000000000003
  31
 0.0
   0
@@ -10537,15 +10437,15 @@ LINE
   8
 0
  10
-620.5000000000001
+541.8085560697231
  20
-210.05855600000004
+219.75000000000003
  30
 0.0
  11
-623.5000000000001
+542.8085560697231
  21
-210.05855600000004
+219.75000000000003
  31
 0.0
   0
@@ -10555,15 +10455,15 @@ LINE
   8
 0
  10
-623.5000000000001
+542.8085560697231
  20
-210.05855600000004
+219.75000000000003
  30
 0.0
  11
-623.5000000000001
+542.8085560697231
  21
-213.05855600000004
+220.75
  31
 0.0
   0
@@ -10573,15 +10473,15 @@ LINE
   8
 0
  10
-623.5000000000001
+542.8085560697231
  20
-213.05855600000004
+220.75
  30
 0.0
  11
-620.5000000000001
+541.8085560697231
  21
-213.05855600000004
+220.75
  31
 0.0
   0
@@ -10591,15 +10491,15 @@ LINE
   8
 0
  10
-616.2500000000001
+521.808556069723
  20
-170.05855600000004
+223.25000000000003
  30
 0.0
  11
-607.7500000000001
+521.808556069723
  21
-170.05855600000004
+222.25000000000003
  31
 0.0
   0
@@ -10609,15 +10509,15 @@ LINE
   8
 0
  10
-607.7500000000001
+521.808556069723
  20
-170.05855600000004
+222.25000000000003
  30
 0.0
  11
-607.7500000000001
+522.808556069723
  21
-169.558556
+222.25000000000003
  31
 0.0
   0
@@ -10627,15 +10527,15 @@ LINE
   8
 0
  10
-607.7500000000001
+522.808556069723
  20
-169.558556
+222.25000000000003
  30
 0.0
  11
-616.2500000000001
+522.808556069723
  21
-169.558556
+223.25000000000003
  31
 0.0
   0
@@ -10645,15 +10545,15 @@ LINE
   8
 0
  10
-616.2500000000001
+522.808556069723
  20
-169.558556
+223.25000000000003
  30
 0.0
  11
-616.2500000000001
+521.808556069723
  21
-170.05855600000004
+223.25000000000003
  31
 0.0
   0
@@ -10663,15 +10563,15 @@ LINE
   8
 0
  10
-607.7500000000001
+541.8085560697231
  20
-217.80855600000004
+223.25000000000003
  30
 0.0
  11
-616.2500000000001
+541.8085560697231
  21
-217.80855600000004
+222.25000000000003
  31
 0.0
   0
@@ -10681,15 +10581,15 @@ LINE
   8
 0
  10
-616.2500000000001
+541.8085560697231
  20
-217.80855600000004
+222.25000000000003
  30
 0.0
  11
-616.2500000000001
+542.8085560697231
  21
-218.30855600000004
+222.25000000000003
  31
 0.0
   0
@@ -10699,15 +10599,15 @@ LINE
   8
 0
  10
-616.2500000000001
+542.8085560697231
  20
-218.30855600000004
+222.25000000000003
  30
 0.0
  11
-607.7500000000001
+542.8085560697231
  21
-218.30855600000004
+223.25000000000003
  31
 0.0
   0
@@ -10717,15 +10617,15 @@ LINE
   8
 0
  10
-607.7500000000001
+542.8085560697231
  20
-218.30855600000004
+223.25000000000003
  30
 0.0
  11
-607.7500000000001
+541.8085560697231
  21
-217.80855600000004
+223.25000000000003
  31
 0.0
   0
@@ -10735,15 +10635,15 @@ LINE
   8
 0
  10
-592.5
+521.808556069723
  20
-173.39946509090913
+225.75000000000003
  30
 0.0
  11
-597.5000000000001
+521.808556069723
  21
-173.39946509090913
+224.75000000000003
  31
 0.0
   0
@@ -10753,15 +10653,15 @@ LINE
   8
 0
  10
-597.5000000000001
+521.808556069723
  20
-173.39946509090913
+224.75000000000003
  30
 0.0
  11
-597.5000000000001
+522.808556069723
  21
-184.49037418181823
+224.75000000000003
  31
 0.0
   0
@@ -10771,15 +10671,15 @@ LINE
   8
 0
  10
-597.5000000000001
+522.808556069723
  20
-184.49037418181823
+224.75000000000003
  30
 0.0
  11
-592.5
+522.808556069723
  21
-184.49037418181823
+225.75000000000003
  31
 0.0
   0
@@ -10789,15 +10689,15 @@ LINE
   8
 0
  10
-592.5
+522.808556069723
  20
-201.12673781818185
+225.75000000000003
  30
 0.0
  11
-597.5000000000001
+521.808556069723
  21
-201.12673781818185
+225.75000000000003
  31
 0.0
   0
@@ -10807,15 +10707,15 @@ LINE
   8
 0
  10
-597.5000000000001
+541.8085560697231
  20
-201.12673781818185
+225.75000000000003
  30
 0.0
  11
-597.5000000000001
+541.8085560697231
  21
-212.21764690909094
+224.75000000000003
  31
 0.0
   0
@@ -10825,15 +10725,15 @@ LINE
   8
 0
  10
-597.5000000000001
+541.8085560697231
  20
-212.21764690909094
+224.75000000000003
  30
 0.0
  11
-592.5
+542.8085560697231
  21
-212.21764690909094
+224.75000000000003
  31
 0.0
   0
@@ -10843,15 +10743,15 @@ LINE
   8
 0
  10
-617.7500000000001
+542.8085560697231
  20
-146.308556
+224.75000000000003
  30
 0.0
  11
-621.2500000000001
+542.8085560697231
  21
-146.308556
+225.75000000000003
  31
 0.0
   0
@@ -10861,15 +10761,15 @@ LINE
   8
 0
  10
-621.2500000000001
+542.8085560697231
  20
-146.308556
+225.75000000000003
  30
 0.0
  11
-621.2500000000001
+541.8085560697231
  21
-154.30855600000004
+225.75000000000003
  31
 0.0
   0
@@ -10879,115 +10779,105 @@ LINE
   8
 0
  10
-621.2500000000001
+521.808556069723
  20
-154.30855600000004
+228.25000000000003
  30
 0.0
  11
-617.7500000000001
+521.808556069723
  21
-154.30855600000004
+227.25000000000003
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
 0
  10
-850.733401821533
+521.808556069723
  20
-100.30855600000002
+227.25000000000003
  30
 0.0
  11
-850.733401821533
+522.808556069723
  21
-200.30855600000004
+227.25000000000003
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
 0
  10
-800.7334018215329
+522.808556069723
  20
-100.30855600000002
+227.25000000000003
  30
 0.0
  11
-800.7334018215329
+522.808556069723
  21
-200.30855600000004
+228.25000000000003
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
 0
  10
-825.733401821533
+522.808556069723
  20
-100.30855600000002
+228.25000000000003
  30
 0.0
  11
-800.7334018215329
+521.808556069723
  21
-100.30855600000002
+228.25000000000003
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
 0
  10
-850.733401821533
+541.8085560697231
  20
-100.30855600000002
+228.25000000000003
  30
 0.0
  11
-825.733401821533
+541.8085560697231
  21
-100.30855600000002
+227.25000000000003
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
 0
  10
-825.733401821533
+541.8085560697231
  20
-46.45690792865498
+227.25000000000003
  30
 0.0
  11
-800.7334018215329
+542.8085560697231
  21
-100.30855600000002
+227.25000000000003
  31
 0.0
   0
@@ -10997,15 +10887,15 @@ LINE
   8
 0
  10
-792.2466086902074
+542.8085560697231
  20
-80.42847270018157
+227.25000000000003
  30
 0.0
  11
-786.4900052558701
+542.8085560697231
  21
-86.2684116177914
+228.25000000000003
  31
 0.0
   0
@@ -11015,55 +10905,51 @@ LINE
   8
 0
  10
-825.733401821533
+542.8085560697231
  20
-46.456907928654964
+228.25000000000003
  30
 0.0
  11
-792.2466086902074
+541.8085560697231
  21
-80.42847270018157
+228.25000000000003
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
 0
  10
-800.7334018215329
+521.808556069723
  20
-100.30855600000002
+230.75000000000003
  30
 0.0
  11
-786.4900052558701
+521.808556069723
  21
-86.2684116177914
+229.75
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
 0
  10
-800.7334018215329
+521.808556069723
  20
-100.30855600000002
+229.75
  30
 0.0
  11
-780.733401821533
+522.808556069723
  21
-92.10835053540121
+229.75
  31
 0.0
   0
@@ -11073,55 +10959,51 @@ LINE
   8
 0
  10
-786.4900052558701
+522.808556069723
  20
-86.2684116177914
+229.75
  30
 0.0
  11
-780.733401821533
+522.808556069723
  21
-92.10835053540121
+230.75000000000003
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
 0
  10
-780.733401821533
+522.808556069723
  20
-100.30855600000002
+230.75000000000003
  30
 0.0
  11
-780.733401821533
+521.808556069723
  21
-92.10835053540121
+230.75000000000003
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
 0
  10
-800.7334018215329
+541.8085560697231
  20
-100.30855600000002
+230.75000000000003
  30
 0.0
  11
-780.733401821533
+541.8085560697231
  21
-100.30855600000002
+229.75
  31
 0.0
   0
@@ -11131,15 +11013,15 @@ LINE
   8
 0
  10
-778.0000000000001
+541.8085560697231
  20
-100.30855600000002
+229.75
  30
 0.0
  11
-780.733401821533
+542.8085560697231
  21
-100.30855600000002
+229.75
  31
 0.0
   0
@@ -11149,15 +11031,15 @@ LINE
   8
 0
  10
-778.0000000000001
+542.8085560697231
  20
-92.10835053540121
+229.75
  30
 0.0
  11
-778.0000000000001
+542.8085560697231
  21
-100.30855600000002
+230.75000000000003
  31
 0.0
   0
@@ -11167,15 +11049,15 @@ LINE
   8
 0
  10
-780.733401821533
+542.8085560697231
  20
-92.10835053540121
+230.75000000000003
  30
 0.0
  11
-778.0000000000001
+541.8085560697231
  21
-92.10835053540121
+230.75000000000003
  31
 0.0
   0
@@ -11185,75 +11067,69 @@ LINE
   8
 0
  10
-780.733401821533
+521.808556069723
  20
-100.30855600000002
+233.25000000000003
  30
 0.0
  11
-780.733401821533
+521.808556069723
  21
-200.30855600000004
+232.25000000000003
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
 0
  10
-780.733401821533
+521.808556069723
  20
-200.30855600000004
+232.25000000000003
  30
 0.0
  11
-800.7334018215329
+522.808556069723
  21
-200.30855600000004
+232.25000000000003
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
 0
  10
-780.733401821533
+522.808556069723
  20
-208.50876146459882
+232.25000000000003
  30
 0.0
  11
-800.7334018215329
+522.808556069723
  21
-200.30855600000004
+233.25000000000003
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
 0
  10
-780.733401821533
+522.808556069723
  20
-208.50876146459882
+233.25000000000003
  30
 0.0
  11
-780.733401821533
+521.808556069723
  21
-200.30855600000004
+233.25000000000003
  31
 0.0
   0
@@ -11263,55 +11139,51 @@ LINE
   8
 0
  10
-780.733401821533
+541.8085560697231
  20
-208.50876146459882
+233.25000000000003
  30
 0.0
  11
-786.4900052558701
+541.8085560697231
  21
-214.34870038220865
+232.25000000000003
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
 0
  10
-786.4900052558701
+541.8085560697231
  20
-214.34870038220865
+232.25000000000003
  30
 0.0
  11
-800.7334018215329
+542.8085560697231
  21
-200.30855600000004
+232.25000000000003
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
 0
  10
-825.733401821533
+542.8085560697231
  20
-254.16020407134508
+232.25000000000003
  30
 0.0
  11
-800.7334018215329
+542.8085560697231
  21
-200.30855600000004
+233.25000000000003
  31
 0.0
   0
@@ -11321,15 +11193,15 @@ LINE
   8
 0
  10
-792.2466086902074
+542.8085560697231
  20
-220.18863929981848
+233.25000000000003
  30
 0.0
  11
-825.733401821533
+541.8085560697231
  21
-254.16020407134508
+233.25000000000003
  31
 0.0
   0
@@ -11339,75 +11211,69 @@ LINE
   8
 0
  10
-786.4900052558701
+521.808556069723
  20
-214.34870038220865
+235.75000000000003
  30
 0.0
  11
-792.2466086902074
+521.808556069723
  21
-220.18863929981848
+234.75000000000003
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
 0
  10
-800.7334018215329
+521.808556069723
  20
-200.30855600000004
+234.75000000000003
  30
 0.0
  11
-825.733401821533
+522.808556069723
  21
-200.30855600000004
+234.75000000000003
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
 0
  10
-825.733401821533
+522.808556069723
  20
-200.30855600000004
+234.75000000000003
  30
 0.0
  11
-850.733401821533
+522.808556069723
  21
-200.308556
+235.75000000000003
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
 0
  10
-825.733401821533
+522.808556069723
  20
-254.16020407134508
+235.75000000000003
  30
 0.0
  11
-850.733401821533
+521.808556069723
  21
-200.308556
+235.75000000000003
  31
 0.0
   0
@@ -11417,15 +11283,15 @@ LINE
   8
 0
  10
-859.2201949528585
+541.8085560697231
  20
-220.18863929981845
+235.75000000000003
  30
 0.0
  11
-864.9767983871958
+541.8085560697231
  21
-214.34870038220865
+234.75000000000003
  31
 0.0
   0
@@ -11435,55 +11301,51 @@ LINE
   8
 0
  10
-825.733401821533
+541.8085560697231
  20
-254.16020407134508
+234.75000000000003
  30
 0.0
  11
-859.2201949528585
+542.8085560697231
  21
-220.18863929981845
+234.75000000000003
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
 0
  10
-850.733401821533
+542.8085560697231
  20
-200.30855600000004
+234.75000000000003
  30
 0.0
  11
-864.9767983871958
+542.8085560697231
  21
-214.34870038220865
+235.75000000000003
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
 0
  10
-850.733401821533
+542.8085560697231
  20
-200.308556
+235.75000000000003
  30
 0.0
  11
-870.733401821533
+541.8085560697231
  21
-208.5087614645988
+235.75000000000003
  31
 0.0
   0
@@ -11493,55 +11355,51 @@ LINE
   8
 0
  10
-864.9767983871958
+521.808556069723
  20
-214.34870038220865
+238.25000000000003
  30
 0.0
  11
-870.733401821533
+521.808556069723
  21
-208.5087614645988
+237.25000000000003
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
 0
  10
-870.733401821533
+521.808556069723
  20
-200.308556
+237.25000000000003
  30
 0.0
  11
-870.733401821533
+522.808556069723
  21
-208.5087614645988
+237.25000000000003
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
 0
  10
-850.733401821533
+522.808556069723
  20
-200.308556
+237.25000000000003
  30
 0.0
  11
-870.733401821533
+522.808556069723
  21
-200.308556
+238.25000000000003
  31
 0.0
   0
@@ -11551,15 +11409,15 @@ LINE
   8
 0
  10
-873.4668036430659
+522.808556069723
  20
-200.30855599999998
+238.25000000000003
  30
 0.0
  11
-870.733401821533
+521.808556069723
  21
-200.30855599999998
+238.25000000000003
  31
 0.0
   0
@@ -11569,15 +11427,15 @@ LINE
   8
 0
  10
-873.4668036430659
+541.8085560697231
  20
-208.5087614645988
+238.25000000000003
  30
 0.0
  11
-873.4668036430659
+541.8085560697231
  21
-200.30855599999998
+237.25000000000003
  31
 0.0
   0
@@ -11587,15 +11445,15 @@ LINE
   8
 0
  10
-870.733401821533
+541.8085560697231
  20
-208.5087614645988
+237.25000000000003
  30
 0.0
  11
-873.4668036430659
+542.8085560697231
  21
-208.5087614645988
+237.25000000000003
  31
 0.0
   0
@@ -11605,75 +11463,69 @@ LINE
   8
 0
  10
-870.733401821533
+542.8085560697231
  20
-200.308556
+237.25000000000003
  30
 0.0
  11
-870.733401821533
+542.8085560697231
  21
-100.30855600000002
+238.25000000000003
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
 0
  10
-870.733401821533
+542.8085560697231
  20
-100.30855600000002
+238.25000000000003
  30
 0.0
  11
-850.733401821533
+541.8085560697231
  21
-100.30855600000002
+238.25000000000003
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
 0
  10
-870.7334018215329
+521.808556069723
  20
-92.10835053540121
+240.75000000000003
  30
 0.0
  11
-850.733401821533
+521.808556069723
  21
-100.30855600000002
+239.75000000000003
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
 0
  10
-870.7334018215329
+521.808556069723
  20
-92.10835053540121
+239.75000000000003
  30
 0.0
  11
-870.7334018215329
+522.808556069723
  21
-100.30855600000002
+239.75000000000003
  31
 0.0
   0
@@ -11683,55 +11535,51 @@ LINE
   8
 0
  10
-870.7334018215329
+522.808556069723
  20
-92.10835053540121
+239.75000000000003
  30
 0.0
  11
-864.9767983871958
+522.808556069723
  21
-86.2684116177914
+240.75000000000003
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
 0
  10
-864.9767983871958
+522.808556069723
  20
-86.2684116177914
+240.75000000000003
  30
 0.0
  11
-850.733401821533
+521.808556069723
  21
-100.30855600000002
+240.75000000000003
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
 0
  10
-825.7334018215329
+541.8085560697231
  20
-46.45690792865502
+240.75000000000003
  30
 0.0
  11
-850.733401821533
+541.8085560697231
  21
-100.30855600000004
+239.75000000000003
  31
 0.0
   0
@@ -11741,15 +11589,15 @@ LINE
   8
 0
  10
-859.2201949528585
+541.8085560697231
  20
-80.42847270018159
+239.75000000000003
  30
 0.0
  11
-825.7334018215329
+542.8085560697231
  21
-46.45690792865502
+239.75000000000003
  31
 0.0
   0
@@ -11759,15 +11607,15 @@ LINE
   8
 0
  10
-864.9767983871958
+542.8085560697231
  20
-86.26841161779141
+239.75000000000003
  30
 0.0
  11
-859.2201949528585
+542.8085560697231
  21
-80.42847270018159
+240.75000000000003
  31
 0.0
   0
@@ -11777,15 +11625,15 @@ LINE
   8
 0
  10
-873.4668036430659
+542.8085560697231
  20
-92.10835053540121
+240.75000000000003
  30
 0.0
  11
-870.733401821533
+541.8085560697231
  21
-92.10835053540121
+240.75000000000003
  31
 0.0
   0
@@ -11795,15 +11643,15 @@ LINE
   8
 0
  10
-873.4668036430659
+521.808556069723
  20
-100.30855600000002
+243.25000000000003
  30
 0.0
  11
-873.4668036430659
+521.808556069723
  21
-92.10835053540121
+242.25000000000003
  31
 0.0
   0
@@ -11813,15 +11661,15 @@ LINE
   8
 0
  10
-870.733401821533
+521.808556069723
  20
-100.30855600000002
+242.25000000000003
  30
 0.0
  11
-873.4668036430659
+522.808556069723
  21
-100.30855600000002
+242.25000000000003
  31
 0.0
   0
@@ -11831,15 +11679,15 @@ LINE
   8
 0
  10
-778.0000000000001
+522.808556069723
  20
-208.50876146459882
+242.25000000000003
  30
 0.0
  11
-780.733401821533
+522.808556069723
  21
-208.50876146459882
+243.25000000000003
  31
 0.0
   0
@@ -11849,15 +11697,15 @@ LINE
   8
 0
  10
-778.0000000000001
+522.808556069723
  20
-200.30855600000004
+243.25000000000003
  30
 0.0
  11
-778.0000000000001
+521.808556069723
  21
-208.50876146459882
+243.25000000000003
  31
 0.0
   0
@@ -11867,15 +11715,15 @@ LINE
   8
 0
  10
-780.733401821533
+541.8085560697231
  20
-200.30855600000004
+243.25000000000003
  30
 0.0
  11
-778.0000000000001
+541.8085560697231
  21
-200.30855600000004
+242.25000000000003
  31
 0.0
   0
@@ -11885,15 +11733,15 @@ LINE
   8
 0
  10
-792.1412698700124
+541.8085560697231
  20
-83.81172921234263
+242.25000000000003
  30
 0.0
  11
-789.8713984490114
+542.8085560697231
  21
-86.11446043235414
+242.25000000000003
  31
 0.0
   0
@@ -11903,15 +11751,15 @@ LINE
   8
 0
  10
-789.8713984490114
+542.8085560697231
  20
-86.11446043235414
+242.25000000000003
  30
 0.0
  11
-789.5153135348698
+542.8085560697231
  21
-85.76345682279894
+243.25000000000003
  31
 0.0
   0
@@ -11921,15 +11769,15 @@ LINE
   8
 0
  10
-789.5153135348698
+542.8085560697231
  20
-85.76345682279894
+243.25000000000003
  30
 0.0
  11
-791.7851849558709
+541.8085560697231
  21
-83.46072560278743
+243.25000000000003
  31
 0.0
   0
@@ -11939,15 +11787,15 @@ LINE
   8
 0
  10
-791.7851849558709
+521.808556069723
  20
-83.46072560278743
+245.75000000000003
  30
 0.0
  11
-792.1412698700124
+521.808556069723
  21
-83.81172921234263
+244.75000000000003
  31
 0.0
   0
@@ -11957,15 +11805,15 @@ LINE
   8
 0
  10
-778.6833504553833
+521.808556069723
  20
-94.84175235693415
+244.75000000000003
  30
 0.0
  11
-780.0500513661498
+522.808556069723
  21
-94.84175235693415
+244.75000000000003
  31
 0.0
   0
@@ -11975,15 +11823,15 @@ LINE
   8
 0
  10
-780.0500513661498
+522.808556069723
  20
-94.84175235693415
+244.75000000000003
  30
 0.0
  11
-780.0500513661498
+522.808556069723
  21
-97.57515417846707
+245.75000000000003
  31
 0.0
   0
@@ -11993,15 +11841,15 @@ LINE
   8
 0
  10
-780.0500513661498
+522.808556069723
  20
-97.57515417846707
+245.75000000000003
  30
 0.0
  11
-778.6833504553833
+521.808556069723
  21
-97.57515417846707
+245.75000000000003
  31
 0.0
   0
@@ -12011,15 +11859,15 @@ LINE
   8
 0
  10
-789.8713984490114
+540.808556069723
  20
-214.50265156764593
+246.75000000000003
  30
 0.0
  11
-792.1412698700124
+540.808556069723
  21
-216.8053827876574
+243.75000000000003
  31
 0.0
   0
@@ -12029,15 +11877,15 @@ LINE
   8
 0
  10
-792.1412698700124
+540.808556069723
  20
-216.8053827876574
+243.75000000000003
  30
 0.0
  11
-791.7851849558709
+543.8085560697231
  21
-217.15638639721263
+243.75000000000003
  31
 0.0
   0
@@ -12047,15 +11895,15 @@ LINE
   8
 0
  10
-791.7851849558709
+543.8085560697231
  20
-217.15638639721263
+243.75000000000003
  30
 0.0
  11
-789.5153135348698
+543.8085560697231
  21
-214.85365517720115
+246.75000000000003
  31
 0.0
   0
@@ -12065,15 +11913,15 @@ LINE
   8
 0
  10
-789.5153135348698
+543.8085560697231
  20
-214.85365517720115
+246.75000000000003
  30
 0.0
  11
-789.8713984490114
+540.808556069723
  21
-214.50265156764593
+246.75000000000003
  31
 0.0
   0
@@ -12083,15 +11931,15 @@ LINE
   8
 0
  10
-859.3255337730535
+536.558556069723
  20
-216.8053827876574
+203.75000000000003
  30
 0.0
  11
-861.5954051940545
+528.0585560697231
  21
-214.50265156764587
+203.75000000000003
  31
 0.0
   0
@@ -12101,15 +11949,15 @@ LINE
   8
 0
  10
-861.5954051940545
+528.0585560697231
  20
-214.50265156764587
+203.75000000000003
  30
 0.0
  11
-861.951490108196
+528.0585560697231
  21
-214.8536551772011
+203.25000000000003
  31
 0.0
   0
@@ -12119,15 +11967,15 @@ LINE
   8
 0
  10
-861.951490108196
+528.0585560697231
  20
-214.8536551772011
+203.25000000000003
  30
 0.0
  11
-859.681618687195
+536.558556069723
  21
-217.1563863972126
+203.25000000000003
  31
 0.0
   0
@@ -12137,15 +11985,15 @@ LINE
   8
 0
  10
-859.681618687195
+536.558556069723
  20
-217.1563863972126
+203.25000000000003
  30
 0.0
  11
-859.3255337730535
+536.558556069723
  21
-216.8053827876574
+203.75000000000003
  31
 0.0
   0
@@ -12155,15 +12003,15 @@ LINE
   8
 0
  10
-872.7834531876827
+528.0585560697231
  20
-205.77535964306585
+251.50000000000003
  30
 0.0
  11
-871.4167522769161
+536.558556069723
  21
-205.77535964306585
+251.50000000000003
  31
 0.0
   0
@@ -12173,15 +12021,15 @@ LINE
   8
 0
  10
-871.4167522769161
+536.558556069723
  20
-205.77535964306585
+251.50000000000003
  30
 0.0
  11
-871.4167522769161
+536.558556069723
  21
-203.04195782153292
+252.00000000000003
  31
 0.0
   0
@@ -12191,15 +12039,15 @@ LINE
   8
 0
  10
-871.4167522769161
+536.558556069723
  20
-203.04195782153292
+252.00000000000003
  30
 0.0
  11
-872.7834531876827
+528.0585560697231
  21
-203.04195782153292
+252.00000000000003
  31
 0.0
   0
@@ -12209,15 +12057,15 @@ LINE
   8
 0
  10
-861.5954051940544
+528.0585560697231
  20
-86.11446043235415
+252.00000000000003
  30
 0.0
  11
-859.3255337730535
+528.0585560697231
  21
-83.81172921234264
+251.50000000000003
  31
 0.0
   0
@@ -12227,15 +12075,15 @@ LINE
   8
 0
  10
-859.3255337730535
+512.808556069723
  20
-83.81172921234264
+207.09090909090912
  30
 0.0
  11
-859.681618687195
+517.808556069723
  21
-83.46072560278743
+207.09090909090912
  31
 0.0
   0
@@ -12245,15 +12093,15 @@ LINE
   8
 0
  10
-859.681618687195
+517.808556069723
  20
-83.46072560278743
+207.09090909090912
  30
 0.0
  11
-861.951490108196
+517.808556069723
  21
-85.76345682279894
+218.1818181818182
  31
 0.0
   0
@@ -12263,15 +12111,15 @@ LINE
   8
 0
  10
-861.951490108196
+517.808556069723
  20
-85.76345682279894
+218.1818181818182
  30
 0.0
  11
-861.5954051940544
+512.808556069723
  21
-86.11446043235415
+218.1818181818182
  31
 0.0
   0
@@ -12281,15 +12129,15 @@ LINE
   8
 0
  10
-872.7834531876827
+512.808556069723
  20
-97.57515417846707
+234.81818181818184
  30
 0.0
  11
-871.4167522769161
+517.808556069723
  21
-97.57515417846707
+234.81818181818184
  31
 0.0
   0
@@ -12299,15 +12147,15 @@ LINE
   8
 0
  10
-871.4167522769161
+517.808556069723
  20
-97.57515417846707
+234.81818181818184
  30
 0.0
  11
-871.4167522769161
+517.808556069723
  21
-94.84175235693415
+245.90909090909093
  31
 0.0
   0
@@ -12317,15 +12165,15 @@ LINE
   8
 0
  10
-871.4167522769161
+517.808556069723
  20
-94.84175235693415
+245.90909090909093
  30
 0.0
  11
-872.7834531876827
+512.808556069723
  21
-94.84175235693415
+245.90909090909093
  31
 0.0
   0
@@ -12335,15 +12183,15 @@ LINE
   8
 0
  10
-778.6833504553833
+538.0585560697231
  20
-203.04195782153298
+180.0
  30
 0.0
  11
-780.0500513661498
+541.5585560697231
  21
-203.04195782153298
+180.0
  31
 0.0
   0
@@ -12353,15 +12201,15 @@ LINE
   8
 0
  10
-780.0500513661498
+541.5585560697231
  20
-203.04195782153298
+180.0
  30
 0.0
  11
-780.0500513661498
+541.5585560697231
  21
-205.7753596430659
+188.00000000000003
  31
 0.0
   0
@@ -12371,15 +12219,15 @@ LINE
   8
 0
  10
-780.0500513661498
+541.5585560697231
  20
-205.7753596430659
+188.00000000000003
  30
 0.0
  11
-778.6833504553833
+538.0585560697231
  21
-205.7753596430659
+188.00000000000003
  31
 0.0
   0
diff --git a/rocolib/output/BoatWithServoStackBattery/graph-lasercutter.svg b/rocolib/output/BoatWithServoStackBattery/graph-lasercutter.svg
index f0bd6d27a98c2275d4f0f8126a7ef2cf6b3159b5..e041b01a0d147f953a02f0c409543a93677e64ba 100644
--- a/rocolib/output/BoatWithServoStackBattery/graph-lasercutter.svg
+++ b/rocolib/output/BoatWithServoStackBattery/graph-lasercutter.svg
@@ -1,634 +1,626 @@
 <?xml version="1.0" encoding="utf-8" ?>
-<svg xmlns="http://www.w3.org/2000/svg" xmlns:ev="http://www.w3.org/2001/xml-events" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="full" height="254.160204mm" version="1.1" viewBox="0.000000 0.000000 873.466804 254.160204" width="873.466804mm">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:ev="http://www.w3.org/2001/xml-events" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="full" height="402.000000mm" version="1.1" viewBox="0.000000 0.000000 688.308556 402.000000" width="688.308556mm">
   <defs/>
-  <line stroke="#000000" x1="228.00000000000003" x2="228.00000000000003" y1="150.30855600000004" y2="150.30855600000004"/>
-  <line stroke="#000000" x1="0.0" x2="228.00000000000003" y1="150.30855600000004" y2="150.30855600000004"/>
-  <line stroke="#000000" x1="0.0" x2="0.0" y1="150.30855600000004" y2="150.30855600000004"/>
-  <line stroke="#000000" x1="0.0" x2="0.0" y1="140.30855600000004" y2="150.30855600000004"/>
-  <line stroke="#000000" x1="60.00000000000001" x2="0.0" y1="140.30855600000004" y2="140.30855600000004"/>
-  <line stroke="#000000" x1="60.00000000000001" x2="60.00000000000001" y1="150.30855600000004" y2="140.30855600000004"/>
-  <line stroke="#000000" x1="133.00000000000003" x2="60.00000000000001" y1="150.30855600000004" y2="150.30855600000004"/>
-  <line stroke="#000000" x1="167.00000000000003" x2="157.0" y1="150.30855600000004" y2="150.30855600000004"/>
-  <line stroke="#000000" x1="228.00000000000003" x2="228.00000000000003" y1="150.30855600000004" y2="150.30855600000004"/>
-  <line stroke="#000000" x1="60.00000000000001" x2="60.00000000000001" y1="150.30855600000004" y2="150.30855600000004"/>
-  <line stroke="#000000" x1="157.0" x2="157.0" y1="150.30855600000004" y2="116.30855600000002"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="133.00000000000003" x2="133.00000000000003" y1="116.30855600000002" y2="150.30855600000004"/>
-  <line stroke="#000000" x1="133.00000000000003" x2="133.00000000000003" y1="80.30855600000002" y2="116.30855600000002"/>
-  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="133.00000000000003" x2="157.0" y1="80.30855600000002" y2="80.30855600000002"/>
-  <line stroke="#000000" x1="157.0" x2="157.0" y1="116.30855600000002" y2="80.30855600000002"/>
-  <line stroke="#000000" x1="157.0" x2="157.0" y1="80.30855600000002" y2="35.30855600000002"/>
-  <line stroke="#000000" x1="133.00000000000003" x2="133.00000000000003" y1="35.30855600000002" y2="80.30855600000002"/>
-  <line stroke="#000000" x1="133.00000000000003" x2="133.00000000000003" y1="30.308556000000017" y2="35.30855600000002"/>
-  <line stroke="#000000" x1="157.0" x2="133.00000000000003" y1="30.308556000000017" y2="30.308556000000017"/>
-  <line stroke="#000000" x1="157.0" x2="157.0" y1="35.30855600000002" y2="30.308556000000017"/>
-  <line stroke="#000000" x1="133.00000000000003" x2="113.00000000000001" y1="116.30855600000002" y2="116.30855600000002"/>
-  <line stroke="#000000" x1="113.00000000000001" x2="133.00000000000003" y1="150.30855600000004" y2="150.30855600000004"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="113.00000000000001" x2="113.00000000000001" y1="116.30855600000002" y2="150.30855600000004"/>
-  <line stroke="#000000" x1="113.00000000000001" x2="89.00000000000001" y1="116.30855600000002" y2="116.30855600000002"/>
-  <line stroke="#000000" x1="89.00000000000001" x2="113.00000000000001" y1="150.30855600000004" y2="150.30855600000004"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="89.00000000000001" x2="89.00000000000001" y1="116.30855600000002" y2="150.30855600000004"/>
-  <line stroke="#000000" x1="89.00000000000001" x2="69.00000000000001" y1="116.30855600000002" y2="116.30855600000002"/>
-  <line stroke="#000000" x1="69.00000000000001" x2="89.00000000000001" y1="150.30855600000004" y2="150.30855600000004"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="69.00000000000001" x2="69.00000000000001" y1="150.30855600000004" y2="116.30855600000002"/>
-  <line stroke="#000000" x1="59.00000000000001" x2="69.00000000000001" y1="150.30855600000004" y2="150.30855600000004"/>
-  <line stroke="#000000" x1="59.00000000000001" x2="59.00000000000001" y1="116.30855600000002" y2="150.30855600000004"/>
-  <line stroke="#000000" x1="69.00000000000001" x2="59.00000000000001" y1="116.30855600000002" y2="116.30855600000002"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="167.00000000000003" x2="228.00000000000003" y1="114.16993400081472" y2="114.16993400081472"/>
-  <line stroke="#000000" x1="228.00000000000003" x2="228.00000000000003" y1="150.30855600000004" y2="114.16993400081472"/>
-  <line stroke="#000000" x1="167.00000000000003" x2="167.00000000000003" y1="114.16993400081472" y2="150.30855600000004"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="228.00000000000003" x2="167.00000000000003" y1="90.16993400081472" y2="90.16993400081472"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="228.00000000000003" x2="228.00000000000003" y1="90.16993400081472" y2="114.16993400081472"/>
-  <line stroke="#000000" x1="167.00000000000003" x2="167.00000000000003" y1="54.03131200162941" y2="90.16993400081473"/>
-  <line stroke="#000000" x1="228.00000000000003" x2="228.00000000000003" y1="90.16993400081473" y2="54.03131200162941"/>
-  <line stroke="#000000" x1="167.00000000000003" x2="167.00000000000003" y1="44.03131200162941" y2="54.03131200162941"/>
-  <line stroke="#000000" x1="228.00000000000003" x2="167.00000000000003" y1="44.03131200162941" y2="44.03131200162941"/>
-  <line stroke="#000000" x1="228.00000000000003" x2="228.00000000000003" y1="54.03131200162941" y2="44.03131200162941"/>
-  <line stroke="#000000" x1="238.00000000000003" x2="228.00000000000003" y1="90.16993400081472" y2="90.16993400081472"/>
-  <line stroke="#000000" x1="238.00000000000003" x2="238.00000000000003" y1="114.16993400081472" y2="90.16993400081472"/>
-  <line stroke="#000000" x1="228.00000000000003" x2="238.00000000000003" y1="114.16993400081472" y2="114.16993400081472"/>
-  <line stroke="#000000" x1="157.0" x2="167.00000000000003" y1="114.16993400081472" y2="114.16993400081472"/>
-  <line stroke="#000000" x1="157.0" x2="157.0" y1="90.16993400081472" y2="114.16993400081472"/>
-  <line stroke="#000000" x1="167.00000000000003" x2="157.0" y1="90.16993400081472" y2="90.16993400081472"/>
-  <line stroke="#888888" x1="40.00000000000001" x2="45.0" y1="142.80855600000004" y2="142.80855600000004"/>
-  <line stroke="#888888" x1="45.0" x2="40.00000000000001" y1="142.80855600000004" y2="147.80855600000004"/>
-  <line stroke="#888888" x1="40.00000000000001" x2="20.000000000000004" y1="147.80855600000004" y2="147.80855600000004"/>
-  <line stroke="#888888" x1="20.000000000000004" x2="15.000000000000002" y1="147.80855600000004" y2="142.80855600000004"/>
-  <line stroke="#888888" x1="15.000000000000002" x2="20.000000000000004" y1="142.80855600000004" y2="142.80855600000004"/>
-  <line stroke="#888888" x1="149.25000000000003" x2="149.25000000000003" y1="139.2252226666667" y2="127.39188933333337"/>
-  <line stroke="#888888" x1="149.25000000000003" x2="149.75" y1="127.39188933333337" y2="127.39188933333337"/>
-  <line stroke="#888888" x1="149.75" x2="149.75" y1="127.39188933333337" y2="139.2252226666667"/>
-  <line stroke="#888888" x1="149.75" x2="149.25000000000003" y1="139.2252226666667" y2="139.2252226666667"/>
-  <line stroke="#888888" x1="149.00000000000003" x2="151.50000000000003" y1="31.558556000000014" y2="31.558556000000014"/>
-  <line stroke="#888888" x1="151.50000000000003" x2="149.00000000000003" y1="31.558556000000014" y2="34.05855600000001"/>
-  <line stroke="#888888" x1="149.00000000000003" x2="141.0" y1="34.05855600000001" y2="34.05855600000001"/>
-  <line stroke="#888888" x1="141.0" x2="138.5" y1="34.05855600000001" y2="31.558556000000014"/>
-  <line stroke="#888888" x1="138.5" x2="141.0" y1="31.558556000000014" y2="31.558556000000014"/>
-  <line stroke="#888888" x1="114.00000000000001" x2="118.00000000000001" y1="127.30855600000004" y2="127.30855600000004"/>
-  <line stroke="#888888" x1="118.00000000000001" x2="118.00000000000001" y1="127.30855600000004" y2="139.30855600000004"/>
-  <line stroke="#888888" x1="118.00000000000001" x2="114.00000000000001" y1="139.30855600000004" y2="139.30855600000004"/>
-  <line stroke="#888888" x1="114.00000000000001" x2="114.00000000000001" y1="139.30855600000004" y2="127.30855600000004"/>
-  <line stroke="#888888" x1="126.00000000000001" x2="130.0" y1="128.808556" y2="128.808556"/>
-  <line stroke="#888888" x1="130.0" x2="130.0" y1="128.808556" y2="137.808556"/>
-  <line stroke="#888888" x1="130.0" x2="126.00000000000001" y1="137.808556" y2="137.808556"/>
-  <line stroke="#888888" x1="126.00000000000001" x2="126.00000000000001" y1="137.808556" y2="128.808556"/>
-  <line stroke="#888888" x1="89.50000000000001" x2="112.50000000000001" y1="127.30855600000004" y2="127.30855600000004"/>
-  <line stroke="#888888" x1="112.50000000000001" x2="112.50000000000001" y1="127.30855600000004" y2="139.30855600000004"/>
-  <line stroke="#888888" x1="112.50000000000001" x2="89.50000000000001" y1="139.30855600000004" y2="139.30855600000004"/>
-  <line stroke="#888888" x1="89.50000000000001" x2="89.50000000000001" y1="139.30855600000004" y2="127.30855600000004"/>
-  <line stroke="#888888" x1="84.0" x2="88.00000000000001" y1="127.30855600000004" y2="127.30855600000004"/>
-  <line stroke="#888888" x1="88.00000000000001" x2="88.00000000000001" y1="127.30855600000004" y2="139.30855600000004"/>
-  <line stroke="#888888" x1="88.00000000000001" x2="84.0" y1="139.30855600000004" y2="139.30855600000004"/>
-  <line stroke="#888888" x1="84.0" x2="84.0" y1="139.30855600000004" y2="127.30855600000004"/>
-  <line stroke="#888888" x1="61.50000000000001" x2="66.50000000000001" y1="127.64188933333337" y2="127.64188933333337"/>
-  <line stroke="#888888" x1="66.50000000000001" x2="66.50000000000001" y1="127.64188933333337" y2="138.9752226666667"/>
-  <line stroke="#888888" x1="66.50000000000001" x2="61.50000000000001" y1="138.9752226666667" y2="138.9752226666667"/>
-  <line stroke="#888888" x1="185.00000000000003" x2="196.00000000000003" y1="95.66993400081472" y2="95.66993400081472"/>
-  <line stroke="#888888" x1="196.00000000000003" x2="196.00000000000003" y1="95.66993400081472" y2="108.66993400081472"/>
-  <line stroke="#888888" x1="196.00000000000003" x2="185.00000000000003" y1="108.66993400081472" y2="108.66993400081472"/>
-  <line stroke="#888888" x1="185.00000000000003" x2="185.00000000000003" y1="108.66993400081472" y2="95.66993400081472"/>
-  <line stroke="#888888" x1="216.50000000000003" x2="222.50000000000003" y1="97.16993400081472" y2="97.16993400081472"/>
-  <line stroke="#888888" x1="222.50000000000003" x2="222.50000000000003" y1="97.16993400081472" y2="107.16993400081472"/>
-  <line stroke="#888888" x1="222.50000000000003" x2="216.50000000000003" y1="107.16993400081472" y2="107.16993400081472"/>
-  <line stroke="#888888" x1="216.50000000000003" x2="216.50000000000003" y1="107.16993400081472" y2="97.16993400081472"/>
-  <line stroke="#888888" x1="216.90909090909093" x2="216.90909090909093" y1="46.5313120016294" y2="51.53131200162941"/>
-  <line stroke="#888888" x1="216.90909090909093" x2="205.81818181818184" y1="51.53131200162941" y2="51.53131200162941"/>
-  <line stroke="#888888" x1="205.81818181818184" x2="205.81818181818184" y1="51.53131200162941" y2="46.5313120016294"/>
-  <line stroke="#888888" x1="189.18181818181822" x2="189.18181818181822" y1="46.5313120016294" y2="51.53131200162941"/>
-  <line stroke="#888888" x1="189.18181818181822" x2="178.09090909090912" y1="51.53131200162941" y2="51.53131200162941"/>
-  <line stroke="#888888" x1="178.09090909090912" x2="178.09090909090912" y1="51.53131200162941" y2="46.5313120016294"/>
-  <line stroke="#888888" x1="235.50000000000003" x2="230.50000000000003" y1="106.16993400081472" y2="106.16993400081472"/>
-  <line stroke="#888888" x1="230.50000000000003" x2="230.50000000000003" y1="106.16993400081472" y2="98.16993400081472"/>
-  <line stroke="#888888" x1="230.50000000000003" x2="235.50000000000003" y1="98.16993400081472" y2="98.16993400081472"/>
-  <line stroke="#888888" x1="159.5" x2="164.50000000000003" y1="98.16993400081472" y2="98.16993400081472"/>
-  <line stroke="#888888" x1="164.50000000000003" x2="164.50000000000003" y1="98.16993400081472" y2="106.16993400081472"/>
-  <line stroke="#888888" x1="164.50000000000003" x2="159.5" y1="106.16993400081472" y2="106.16993400081472"/>
-  <line stroke="#000000" x1="476.00000000000006" x2="476.00000000000006" y1="150.30855600000004" y2="150.30855600000004"/>
-  <line stroke="#000000" x1="248.00000000000006" x2="476.00000000000006" y1="150.30855600000004" y2="150.30855600000004"/>
-  <line stroke="#000000" x1="248.00000000000006" x2="248.00000000000006" y1="150.30855600000004" y2="150.30855600000004"/>
-  <line stroke="#000000" x1="309.0" x2="248.00000000000006" y1="150.30855600000004" y2="150.30855600000004"/>
-  <line stroke="#000000" x1="319.0" x2="309.0" y1="150.30855600000004" y2="150.30855600000004"/>
-  <line stroke="#000000" x1="416.00000000000006" x2="343.00000000000006" y1="150.30855600000004" y2="150.30855600000004"/>
-  <line stroke="#000000" x1="416.00000000000006" x2="416.00000000000006" y1="150.30855600000004" y2="150.30855600000004"/>
-  <line stroke="#000000" x1="248.00000000000006" x2="248.00000000000006" y1="150.30855600000004" y2="150.30855600000004"/>
-  <line stroke="#000000" x1="319.0" x2="319.0" y1="116.30855600000002" y2="150.30855600000004"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="343.00000000000006" x2="343.00000000000006" y1="150.30855600000004" y2="116.30855600000002"/>
-  <line stroke="#000000" x1="319.0" x2="319.0" y1="80.30855600000002" y2="116.30855600000002"/>
-  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="319.0" x2="343.00000000000006" y1="80.30855600000002" y2="80.30855600000002"/>
-  <line stroke="#000000" x1="343.00000000000006" x2="343.00000000000006" y1="116.30855600000002" y2="80.30855600000002"/>
-  <line stroke="#000000" x1="343.00000000000006" x2="343.00000000000006" y1="80.30855600000002" y2="35.30855600000002"/>
-  <line stroke="#000000" x1="319.0" x2="319.0" y1="35.30855600000002" y2="80.30855600000002"/>
-  <line stroke="#000000" x1="343.00000000000006" x2="319.0" y1="35.30855600000002" y2="35.30855600000002"/>
-  <line stroke="#000000" x1="343.00000000000006" x2="363.00000000000006" y1="150.30855600000004" y2="150.30855600000004"/>
-  <line stroke="#000000" x1="363.00000000000006" x2="343.00000000000006" y1="116.30855600000002" y2="116.30855600000002"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="363.00000000000006" x2="363.00000000000006" y1="150.30855600000004" y2="116.30855600000002"/>
-  <line stroke="#000000" x1="363.00000000000006" x2="387.0" y1="150.30855600000004" y2="150.30855600000004"/>
-  <line stroke="#000000" x1="387.0" x2="363.00000000000006" y1="116.30855600000002" y2="116.30855600000002"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="387.0" x2="387.0" y1="150.30855600000004" y2="116.30855600000002"/>
-  <line stroke="#000000" x1="387.0" x2="407.00000000000006" y1="150.30855600000004" y2="150.30855600000004"/>
-  <line stroke="#000000" x1="407.00000000000006" x2="387.0" y1="116.30855600000002" y2="116.30855600000002"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="407.00000000000006" x2="407.00000000000006" y1="116.30855600000002" y2="150.30855600000004"/>
-  <line stroke="#000000" x1="417.00000000000006" x2="407.00000000000006" y1="116.30855600000002" y2="116.30855600000002"/>
-  <line stroke="#000000" x1="417.00000000000006" x2="417.00000000000006" y1="150.30855600000004" y2="116.30855600000002"/>
-  <line stroke="#000000" x1="407.00000000000006" x2="417.00000000000006" y1="150.30855600000004" y2="150.30855600000004"/>
-  <line stroke="#000000" x1="476.00000000000006" x2="476.00000000000006" y1="150.30855600000004" y2="88.65427796513858"/>
-  <line stroke="#000000" x1="416.00000000000006" x2="416.00000000000006" y1="88.65427796513858" y2="150.30855600000004"/>
-  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="416.00000000000006" x2="476.00000000000006" y1="88.65427796513858" y2="88.65427796513858"/>
-  <line stroke="#000000" x1="416.00000000000006" x2="416.00000000000006" y1="61.65427796513857" y2="88.65427796513858"/>
-  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="476.00000000000006" x2="416.00000000000006" y1="61.65427796513857" y2="61.65427796513857"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="476.00000000000006" x2="476.00000000000006" y1="88.65427796513858" y2="61.65427796513857"/>
-  <line stroke="#000000" x1="416.00000000000006" x2="416.00000000000006" y1="-6.972288701945219e-08" y2="61.65427796513857"/>
-  <line stroke="#000000" x1="476.00000000000006" x2="416.00000000000006" y1="-6.972288701945219e-08" y2="-6.972288701945219e-08"/>
-  <line stroke="#000000" x1="476.00000000000006" x2="476.00000000000006" y1="61.65427796513857" y2="-6.972288701945219e-08"/>
-  <line stroke="#000000" x1="476.00000000000006" x2="493.00000000000006" y1="88.65427796513858" y2="88.65427796513858"/>
-  <line stroke="#000000" x1="493.00000000000006" x2="476.00000000000006" y1="61.65427796513857" y2="61.65427796513857"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="493.00000000000006" x2="493.00000000000006" y1="88.65427796513858" y2="61.65427796513857"/>
-  <line stroke="#000000" x1="493.00000000000006" x2="553.0000000000001" y1="88.65427796513858" y2="88.65427796513858"/>
-  <line stroke="#000000" x1="553.0000000000001" x2="493.00000000000006" y1="61.65427796513857" y2="61.65427796513857"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="553.0000000000001" x2="553.0000000000001" y1="88.65427796513858" y2="61.65427796513857"/>
-  <line stroke="#000000" x1="553.0000000000001" x2="570.0000000000001" y1="88.65427796513858" y2="88.65427796513858"/>
-  <line stroke="#000000" x1="570.0000000000001" x2="553.0000000000001" y1="61.65427796513857" y2="61.65427796513857"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="570.0000000000001" x2="570.0000000000001" y1="61.65427796513857" y2="88.65427796513858"/>
-  <line stroke="#000000" x1="580.0000000000001" x2="570.0000000000001" y1="61.65427796513857" y2="61.65427796513857"/>
-  <line stroke="#000000" x1="580.0000000000001" x2="580.0000000000001" y1="88.65427796513858" y2="61.65427796513857"/>
-  <line stroke="#000000" x1="570.0000000000001" x2="580.0000000000001" y1="88.65427796513858" y2="88.65427796513858"/>
-  <line stroke="#888888" x1="270.43181818181824" x2="258.8409090909091" y1="158.058556" y2="158.058556"/>
-  <line stroke="#888888" x1="258.8409090909091" x2="258.8409090909091" y1="158.058556" y2="157.55855600000004"/>
-  <line stroke="#888888" x1="258.8409090909091" x2="270.43181818181824" y1="157.55855600000004" y2="157.55855600000004"/>
-  <line stroke="#888888" x1="270.43181818181824" x2="270.43181818181824" y1="157.55855600000004" y2="158.058556"/>
-  <line stroke="#888888" x1="298.159090909091" x2="286.56818181818187" y1="158.058556" y2="158.058556"/>
-  <line stroke="#888888" x1="286.56818181818187" x2="286.56818181818187" y1="158.058556" y2="157.55855600000004"/>
-  <line stroke="#888888" x1="286.56818181818187" x2="298.159090909091" y1="157.55855600000004" y2="157.55855600000004"/>
-  <line stroke="#888888" x1="298.159090909091" x2="298.159090909091" y1="157.55855600000004" y2="158.058556"/>
-  <line stroke="#888888" x1="326.75000000000006" x2="326.75000000000006" y1="127.39188933333335" y2="139.2252226666667"/>
-  <line stroke="#888888" x1="326.75000000000006" x2="326.25000000000006" y1="139.2252226666667" y2="139.2252226666667"/>
-  <line stroke="#888888" x1="326.25000000000006" x2="326.25000000000006" y1="139.2252226666667" y2="127.39188933333335"/>
-  <line stroke="#888888" x1="326.25000000000006" x2="326.75000000000006" y1="127.39188933333335" y2="127.39188933333335"/>
-  <line stroke="#888888" x1="335.25000000000006" x2="326.75000000000006" y1="39.30855600000002" y2="39.30855600000002"/>
-  <line stroke="#888888" x1="326.75000000000006" x2="326.75000000000006" y1="39.30855600000002" y2="38.80855600000002"/>
-  <line stroke="#888888" x1="326.75000000000006" x2="335.25000000000006" y1="38.80855600000002" y2="38.80855600000002"/>
-  <line stroke="#888888" x1="335.25000000000006" x2="335.25000000000006" y1="38.80855600000002" y2="39.30855600000002"/>
-  <line stroke="#888888" x1="362.00000000000006" x2="358.00000000000006" y1="139.30855600000004" y2="139.30855600000004"/>
-  <line stroke="#888888" x1="358.00000000000006" x2="358.00000000000006" y1="139.30855600000004" y2="127.30855600000004"/>
-  <line stroke="#888888" x1="358.00000000000006" x2="362.00000000000006" y1="127.30855600000004" y2="127.30855600000004"/>
-  <line stroke="#888888" x1="362.00000000000006" x2="362.00000000000006" y1="127.30855600000004" y2="139.30855600000004"/>
-  <line stroke="#888888" x1="350.0" x2="346.0" y1="137.808556" y2="137.808556"/>
-  <line stroke="#888888" x1="346.0" x2="346.0" y1="137.808556" y2="128.808556"/>
-  <line stroke="#888888" x1="346.0" x2="350.0" y1="128.808556" y2="128.808556"/>
-  <line stroke="#888888" x1="350.0" x2="350.0" y1="128.808556" y2="137.808556"/>
-  <line stroke="#888888" x1="386.5" x2="363.5" y1="139.30855600000004" y2="139.30855600000004"/>
-  <line stroke="#888888" x1="363.5" x2="363.5" y1="139.30855600000004" y2="127.30855600000004"/>
-  <line stroke="#888888" x1="363.5" x2="386.5" y1="127.30855600000004" y2="127.30855600000004"/>
-  <line stroke="#888888" x1="386.5" x2="386.5" y1="127.30855600000004" y2="139.30855600000004"/>
-  <line stroke="#888888" x1="392.00000000000006" x2="388.00000000000006" y1="139.30855600000004" y2="139.30855600000004"/>
-  <line stroke="#888888" x1="388.00000000000006" x2="388.00000000000006" y1="139.30855600000004" y2="127.30855600000004"/>
-  <line stroke="#888888" x1="388.00000000000006" x2="392.00000000000006" y1="127.30855600000004" y2="127.30855600000004"/>
-  <line stroke="#888888" x1="392.00000000000006" x2="392.00000000000006" y1="127.30855600000004" y2="139.30855600000004"/>
-  <line stroke="#888888" x1="414.50000000000006" x2="409.5" y1="138.9752226666667" y2="138.9752226666667"/>
-  <line stroke="#888888" x1="409.5" x2="409.5" y1="138.9752226666667" y2="127.64188933333335"/>
-  <line stroke="#888888" x1="409.5" x2="414.50000000000006" y1="127.64188933333335" y2="127.64188933333335"/>
-  <line stroke="#888888" x1="475.50000000000006" x2="472.50000000000006" y1="84.15427796513858" y2="84.15427796513858"/>
-  <line stroke="#888888" x1="472.50000000000006" x2="472.50000000000006" y1="84.15427796513858" y2="66.15427796513858"/>
-  <line stroke="#888888" x1="472.50000000000006" x2="475.50000000000006" y1="66.15427796513858" y2="66.15427796513858"/>
-  <line stroke="#888888" x1="475.50000000000006" x2="475.50000000000006" y1="66.15427796513858" y2="84.15427796513858"/>
-  <line stroke="#888888" x1="423.75000000000006" x2="423.75000000000006" y1="70.40427796513856" y2="79.90427796513858"/>
-  <line stroke="#888888" x1="423.75000000000006" x2="423.25" y1="79.90427796513858" y2="79.90427796513858"/>
-  <line stroke="#888888" x1="423.25" x2="423.25" y1="79.90427796513858" y2="70.40427796513856"/>
-  <line stroke="#888888" x1="423.25" x2="423.75000000000006" y1="70.40427796513856" y2="70.40427796513856"/>
-  <line stroke="#888888" x1="456.25000000000006" x2="435.75000000000006" y1="7.749999930277114" y2="7.749999930277114"/>
-  <line stroke="#888888" x1="435.75000000000006" x2="435.75000000000006" y1="7.749999930277114" y2="7.249999930277114"/>
-  <line stroke="#888888" x1="435.75000000000006" x2="456.25000000000006" y1="7.249999930277114" y2="7.249999930277114"/>
-  <line stroke="#888888" x1="456.25000000000006" x2="456.25000000000006" y1="7.249999930277114" y2="7.749999930277114"/>
-  <line stroke="#888888" x1="479.00000000000006" x2="476.00000000000006" y1="84.15427796513858" y2="84.15427796513858"/>
-  <line stroke="#888888" x1="476.00000000000006" x2="476.00000000000006" y1="84.15427796513858" y2="66.15427796513858"/>
-  <line stroke="#888888" x1="476.00000000000006" x2="479.00000000000006" y1="66.15427796513858" y2="66.15427796513858"/>
-  <line stroke="#888888" x1="479.00000000000006" x2="479.00000000000006" y1="66.15427796513858" y2="84.15427796513858"/>
-  <line stroke="#888888" x1="577.5000000000001" x2="572.5" y1="79.65427796513858" y2="79.65427796513858"/>
-  <line stroke="#888888" x1="572.5" x2="572.5" y1="79.65427796513858" y2="70.65427796513858"/>
-  <line stroke="#888888" x1="572.5" x2="577.5000000000001" y1="70.65427796513858" y2="70.65427796513858"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="623.0000000000001" x2="684.0000000000001" y1="138.30855600000004" y2="138.30855600000004"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="684.0000000000001" x2="684.0000000000001" y1="138.30855600000004" y2="162.308556"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="684.0000000000001" x2="623.0000000000001" y1="162.308556" y2="162.308556"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="623.0000000000001" x2="623.0000000000001" y1="162.308556" y2="138.30855600000004"/>
-  <line stroke="#000000" x1="623.0000000000001" x2="623.0000000000001" y1="131.30855600000004" y2="138.30855600000004"/>
-  <line stroke="#000000" x1="683.0" x2="623.0000000000001" y1="131.30855600000004" y2="131.30855600000004"/>
-  <line stroke="#000000" x1="683.0" x2="683.0" y1="138.30855600000004" y2="131.30855600000004"/>
-  <line stroke="#000000" x1="691.0" x2="684.0000000000001" y1="138.30855600000004" y2="138.30855600000004"/>
-  <line stroke="#000000" x1="691.0" x2="691.0" y1="162.308556" y2="138.30855600000004"/>
-  <line stroke="#000000" x1="684.0000000000001" x2="691.0" y1="162.308556" y2="162.308556"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="684.0000000000001" x2="684.0000000000001" y1="162.308556" y2="223.30855600000004"/>
-  <line stroke="#000000" x1="624.0000000000001" x2="684.0000000000001" y1="223.30855600000004" y2="223.30855600000004"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="624.0000000000001" x2="624.0000000000001" y1="162.308556" y2="223.30855600000004"/>
-  <line stroke="#000000" x1="708.0000000000001" x2="684.0000000000001" y1="162.308556" y2="162.308556"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="708.0000000000001" x2="708.0000000000001" y1="162.308556" y2="223.30855600000004"/>
-  <line stroke="#000000" x1="684.0000000000001" x2="708.0000000000001" y1="223.30855600000004" y2="223.30855600000004"/>
-  <line stroke="#000000" x1="768.0000000000001" x2="708.0000000000001" y1="162.308556" y2="162.308556"/>
-  <line stroke="#000000" x1="768.0000000000001" x2="768.0000000000001" y1="223.30855600000004" y2="162.308556"/>
-  <line stroke="#000000" x1="708.0000000000001" x2="768.0000000000001" y1="223.30855600000004" y2="223.30855600000004"/>
-  <line stroke="#000000" x1="624.0000000000001" x2="600.0" y1="162.308556" y2="162.308556"/>
-  <line stroke="#000000" x1="600.0" x2="624.0000000000001" y1="223.30855600000004" y2="223.30855600000004"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="600.0" x2="600.0" y1="223.30855600000004" y2="162.308556"/>
-  <line stroke="#000000" x1="590.0" x2="600.0" y1="223.30855600000004" y2="223.30855600000004"/>
-  <line stroke="#000000" x1="590.0" x2="590.0" y1="162.308556" y2="223.30855600000004"/>
-  <line stroke="#000000" x1="600.0" x2="590.0" y1="162.308556" y2="162.308556"/>
-  <line stroke="#000000" x1="616.0000000000001" x2="623.0000000000001" y1="162.308556" y2="162.308556"/>
-  <line stroke="#000000" x1="616.0000000000001" x2="616.0000000000001" y1="138.30855600000004" y2="162.308556"/>
-  <line stroke="#000000" x1="623.0000000000001" x2="616.0000000000001" y1="138.30855600000004" y2="138.30855600000004"/>
-  <line stroke="#888888" x1="672.0909090909092" x2="675.5909090909091" y1="133.058556" y2="133.058556"/>
-  <line stroke="#888888" x1="675.5909090909091" x2="672.0909090909092" y1="133.058556" y2="136.55855600000004"/>
-  <line stroke="#888888" x1="672.0909090909092" x2="661.1818181818181" y1="136.55855600000004" y2="136.55855600000004"/>
-  <line stroke="#888888" x1="661.1818181818181" x2="657.6818181818184" y1="136.55855600000004" y2="133.058556"/>
-  <line stroke="#888888" x1="657.6818181818184" x2="661.1818181818181" y1="133.058556" y2="133.058556"/>
-  <line stroke="#888888" x1="644.818181818182" x2="648.3181818181819" y1="133.058556" y2="133.058556"/>
-  <line stroke="#888888" x1="648.3181818181819" x2="644.818181818182" y1="133.058556" y2="136.55855600000004"/>
-  <line stroke="#888888" x1="644.818181818182" x2="633.9090909090909" y1="136.55855600000004" y2="136.55855600000004"/>
-  <line stroke="#888888" x1="633.9090909090909" x2="630.409090909091" y1="136.55855600000004" y2="133.058556"/>
-  <line stroke="#888888" x1="630.409090909091" x2="633.9090909090909" y1="133.058556" y2="133.058556"/>
-  <line stroke="#888888" x1="689.2500000000001" x2="685.75" y1="154.30855600000004" y2="154.30855600000004"/>
-  <line stroke="#888888" x1="685.75" x2="685.75" y1="154.30855600000004" y2="146.308556"/>
-  <line stroke="#888888" x1="685.75" x2="689.2500000000001" y1="146.308556" y2="146.308556"/>
-  <line stroke="#888888" x1="631.5000000000001" x2="631.5000000000001" y1="213.80855600000004" y2="195.80855600000004"/>
-  <line stroke="#888888" x1="631.5000000000001" x2="666.5000000000001" y1="195.80855600000004" y2="195.80855600000004"/>
-  <line stroke="#888888" x1="666.5000000000001" x2="666.5000000000001" y1="195.80855600000004" y2="213.80855600000004"/>
-  <line stroke="#888888" x1="666.5000000000001" x2="631.5000000000001" y1="213.80855600000004" y2="213.80855600000004"/>
-  <line stroke="#888888" x1="684.5000000000001" x2="684.5000000000001" y1="175.55855600000004" y2="172.55855600000004"/>
-  <line stroke="#888888" x1="684.5000000000001" x2="687.5000000000001" y1="172.55855600000004" y2="172.55855600000004"/>
-  <line stroke="#888888" x1="687.5000000000001" x2="687.5000000000001" y1="172.55855600000004" y2="175.55855600000004"/>
-  <line stroke="#888888" x1="687.5000000000001" x2="684.5000000000001" y1="175.55855600000004" y2="175.55855600000004"/>
-  <line stroke="#888888" x1="705.5000000000001" x2="705.5000000000001" y1="174.55855600000004" y2="173.55855600000004"/>
-  <line stroke="#888888" x1="705.5000000000001" x2="706.5000000000001" y1="173.55855600000004" y2="173.55855600000004"/>
-  <line stroke="#888888" x1="706.5000000000001" x2="706.5000000000001" y1="173.55855600000004" y2="174.55855600000004"/>
-  <line stroke="#888888" x1="706.5000000000001" x2="705.5000000000001" y1="174.55855600000004" y2="174.55855600000004"/>
-  <line stroke="#888888" x1="685.5000000000001" x2="685.5000000000001" y1="177.05855600000004" y2="176.058556"/>
-  <line stroke="#888888" x1="685.5000000000001" x2="686.5000000000001" y1="176.058556" y2="176.058556"/>
-  <line stroke="#888888" x1="686.5000000000001" x2="686.5000000000001" y1="176.058556" y2="177.05855600000004"/>
-  <line stroke="#888888" x1="686.5000000000001" x2="685.5000000000001" y1="177.05855600000004" y2="177.05855600000004"/>
-  <line stroke="#888888" x1="705.5000000000001" x2="705.5000000000001" y1="177.05855600000004" y2="176.058556"/>
-  <line stroke="#888888" x1="705.5000000000001" x2="706.5000000000001" y1="176.058556" y2="176.058556"/>
-  <line stroke="#888888" x1="706.5000000000001" x2="706.5000000000001" y1="176.058556" y2="177.05855600000004"/>
-  <line stroke="#888888" x1="706.5000000000001" x2="705.5000000000001" y1="177.05855600000004" y2="177.05855600000004"/>
-  <line stroke="#888888" x1="685.5000000000001" x2="685.5000000000001" y1="179.55855600000004" y2="178.558556"/>
-  <line stroke="#888888" x1="685.5000000000001" x2="686.5000000000001" y1="178.558556" y2="178.558556"/>
-  <line stroke="#888888" x1="686.5000000000001" x2="686.5000000000001" y1="178.558556" y2="179.55855600000004"/>
-  <line stroke="#888888" x1="686.5000000000001" x2="685.5000000000001" y1="179.55855600000004" y2="179.55855600000004"/>
-  <line stroke="#888888" x1="705.5000000000001" x2="705.5000000000001" y1="179.55855600000004" y2="178.558556"/>
-  <line stroke="#888888" x1="705.5000000000001" x2="706.5000000000001" y1="178.558556" y2="178.558556"/>
-  <line stroke="#888888" x1="706.5000000000001" x2="706.5000000000001" y1="178.558556" y2="179.55855600000004"/>
-  <line stroke="#888888" x1="706.5000000000001" x2="705.5000000000001" y1="179.55855600000004" y2="179.55855600000004"/>
-  <line stroke="#888888" x1="685.5000000000001" x2="685.5000000000001" y1="182.05855600000004" y2="181.058556"/>
-  <line stroke="#888888" x1="685.5000000000001" x2="686.5000000000001" y1="181.058556" y2="181.058556"/>
-  <line stroke="#888888" x1="686.5000000000001" x2="686.5000000000001" y1="181.058556" y2="182.05855600000004"/>
-  <line stroke="#888888" x1="686.5000000000001" x2="685.5000000000001" y1="182.05855600000004" y2="182.05855600000004"/>
-  <line stroke="#888888" x1="705.5000000000001" x2="705.5000000000001" y1="182.05855600000004" y2="181.058556"/>
-  <line stroke="#888888" x1="705.5000000000001" x2="706.5000000000001" y1="181.058556" y2="181.058556"/>
-  <line stroke="#888888" x1="706.5000000000001" x2="706.5000000000001" y1="181.058556" y2="182.05855600000004"/>
-  <line stroke="#888888" x1="706.5000000000001" x2="705.5000000000001" y1="182.05855600000004" y2="182.05855600000004"/>
-  <line stroke="#888888" x1="685.5000000000001" x2="685.5000000000001" y1="184.55855600000004" y2="183.55855600000004"/>
-  <line stroke="#888888" x1="685.5000000000001" x2="686.5000000000001" y1="183.55855600000004" y2="183.55855600000004"/>
-  <line stroke="#888888" x1="686.5000000000001" x2="686.5000000000001" y1="183.55855600000004" y2="184.55855600000004"/>
-  <line stroke="#888888" x1="686.5000000000001" x2="685.5000000000001" y1="184.55855600000004" y2="184.55855600000004"/>
-  <line stroke="#888888" x1="705.5000000000001" x2="705.5000000000001" y1="184.55855600000004" y2="183.55855600000004"/>
-  <line stroke="#888888" x1="705.5000000000001" x2="706.5000000000001" y1="183.55855600000004" y2="183.55855600000004"/>
-  <line stroke="#888888" x1="706.5000000000001" x2="706.5000000000001" y1="183.55855600000004" y2="184.55855600000004"/>
-  <line stroke="#888888" x1="706.5000000000001" x2="705.5000000000001" y1="184.55855600000004" y2="184.55855600000004"/>
-  <line stroke="#888888" x1="685.5000000000001" x2="685.5000000000001" y1="187.05855600000004" y2="186.05855600000004"/>
-  <line stroke="#888888" x1="685.5000000000001" x2="686.5000000000001" y1="186.05855600000004" y2="186.05855600000004"/>
-  <line stroke="#888888" x1="686.5000000000001" x2="686.5000000000001" y1="186.05855600000004" y2="187.05855600000004"/>
-  <line stroke="#888888" x1="686.5000000000001" x2="685.5000000000001" y1="187.05855600000004" y2="187.05855600000004"/>
-  <line stroke="#888888" x1="705.5000000000001" x2="705.5000000000001" y1="187.05855600000004" y2="186.05855600000004"/>
-  <line stroke="#888888" x1="705.5000000000001" x2="706.5000000000001" y1="186.05855600000004" y2="186.05855600000004"/>
-  <line stroke="#888888" x1="706.5000000000001" x2="706.5000000000001" y1="186.05855600000004" y2="187.05855600000004"/>
-  <line stroke="#888888" x1="706.5000000000001" x2="705.5000000000001" y1="187.05855600000004" y2="187.05855600000004"/>
-  <line stroke="#888888" x1="685.5000000000001" x2="685.5000000000001" y1="189.55855600000004" y2="188.55855600000004"/>
-  <line stroke="#888888" x1="685.5000000000001" x2="686.5000000000001" y1="188.55855600000004" y2="188.55855600000004"/>
-  <line stroke="#888888" x1="686.5000000000001" x2="686.5000000000001" y1="188.55855600000004" y2="189.55855600000004"/>
-  <line stroke="#888888" x1="686.5000000000001" x2="685.5000000000001" y1="189.55855600000004" y2="189.55855600000004"/>
-  <line stroke="#888888" x1="705.5000000000001" x2="705.5000000000001" y1="189.55855600000004" y2="188.55855600000004"/>
-  <line stroke="#888888" x1="705.5000000000001" x2="706.5000000000001" y1="188.55855600000004" y2="188.55855600000004"/>
-  <line stroke="#888888" x1="706.5000000000001" x2="706.5000000000001" y1="188.55855600000004" y2="189.55855600000004"/>
-  <line stroke="#888888" x1="706.5000000000001" x2="705.5000000000001" y1="189.55855600000004" y2="189.55855600000004"/>
-  <line stroke="#888888" x1="685.5000000000001" x2="685.5000000000001" y1="192.058556" y2="191.05855600000004"/>
-  <line stroke="#888888" x1="685.5000000000001" x2="686.5000000000001" y1="191.05855600000004" y2="191.05855600000004"/>
-  <line stroke="#888888" x1="686.5000000000001" x2="686.5000000000001" y1="191.05855600000004" y2="192.058556"/>
-  <line stroke="#888888" x1="686.5000000000001" x2="685.5000000000001" y1="192.058556" y2="192.058556"/>
-  <line stroke="#888888" x1="705.5000000000001" x2="705.5000000000001" y1="192.058556" y2="191.05855600000004"/>
-  <line stroke="#888888" x1="705.5000000000001" x2="706.5000000000001" y1="191.05855600000004" y2="191.05855600000004"/>
-  <line stroke="#888888" x1="706.5000000000001" x2="706.5000000000001" y1="191.05855600000004" y2="192.058556"/>
-  <line stroke="#888888" x1="706.5000000000001" x2="705.5000000000001" y1="192.058556" y2="192.058556"/>
-  <line stroke="#888888" x1="685.5000000000001" x2="685.5000000000001" y1="194.558556" y2="193.55855600000004"/>
-  <line stroke="#888888" x1="685.5000000000001" x2="686.5000000000001" y1="193.55855600000004" y2="193.55855600000004"/>
-  <line stroke="#888888" x1="686.5000000000001" x2="686.5000000000001" y1="193.55855600000004" y2="194.558556"/>
-  <line stroke="#888888" x1="686.5000000000001" x2="685.5000000000001" y1="194.558556" y2="194.558556"/>
-  <line stroke="#888888" x1="705.5000000000001" x2="705.5000000000001" y1="194.558556" y2="193.55855600000004"/>
-  <line stroke="#888888" x1="705.5000000000001" x2="706.5000000000001" y1="193.55855600000004" y2="193.55855600000004"/>
-  <line stroke="#888888" x1="706.5000000000001" x2="706.5000000000001" y1="193.55855600000004" y2="194.558556"/>
-  <line stroke="#888888" x1="706.5000000000001" x2="705.5000000000001" y1="194.558556" y2="194.558556"/>
-  <line stroke="#888888" x1="685.5000000000001" x2="685.5000000000001" y1="197.05855600000004" y2="196.05855600000004"/>
-  <line stroke="#888888" x1="685.5000000000001" x2="686.5000000000001" y1="196.05855600000004" y2="196.05855600000004"/>
-  <line stroke="#888888" x1="686.5000000000001" x2="686.5000000000001" y1="196.05855600000004" y2="197.05855600000004"/>
-  <line stroke="#888888" x1="686.5000000000001" x2="685.5000000000001" y1="197.05855600000004" y2="197.05855600000004"/>
-  <line stroke="#888888" x1="705.5000000000001" x2="705.5000000000001" y1="197.05855600000004" y2="196.05855600000004"/>
-  <line stroke="#888888" x1="705.5000000000001" x2="706.5000000000001" y1="196.05855600000004" y2="196.05855600000004"/>
-  <line stroke="#888888" x1="706.5000000000001" x2="706.5000000000001" y1="196.05855600000004" y2="197.05855600000004"/>
-  <line stroke="#888888" x1="706.5000000000001" x2="705.5000000000001" y1="197.05855600000004" y2="197.05855600000004"/>
-  <line stroke="#888888" x1="685.5000000000001" x2="685.5000000000001" y1="199.55855600000004" y2="198.55855600000004"/>
-  <line stroke="#888888" x1="685.5000000000001" x2="686.5000000000001" y1="198.55855600000004" y2="198.55855600000004"/>
-  <line stroke="#888888" x1="686.5000000000001" x2="686.5000000000001" y1="198.55855600000004" y2="199.55855600000004"/>
-  <line stroke="#888888" x1="686.5000000000001" x2="685.5000000000001" y1="199.55855600000004" y2="199.55855600000004"/>
-  <line stroke="#888888" x1="705.5000000000001" x2="705.5000000000001" y1="199.55855600000004" y2="198.55855600000004"/>
-  <line stroke="#888888" x1="705.5000000000001" x2="706.5000000000001" y1="198.55855600000004" y2="198.55855600000004"/>
-  <line stroke="#888888" x1="706.5000000000001" x2="706.5000000000001" y1="198.55855600000004" y2="199.55855600000004"/>
-  <line stroke="#888888" x1="706.5000000000001" x2="705.5000000000001" y1="199.55855600000004" y2="199.55855600000004"/>
-  <line stroke="#888888" x1="685.5000000000001" x2="685.5000000000001" y1="202.05855600000004" y2="201.058556"/>
-  <line stroke="#888888" x1="685.5000000000001" x2="686.5000000000001" y1="201.058556" y2="201.058556"/>
-  <line stroke="#888888" x1="686.5000000000001" x2="686.5000000000001" y1="201.058556" y2="202.05855600000004"/>
-  <line stroke="#888888" x1="686.5000000000001" x2="685.5000000000001" y1="202.05855600000004" y2="202.05855600000004"/>
-  <line stroke="#888888" x1="705.5000000000001" x2="705.5000000000001" y1="202.05855600000004" y2="201.058556"/>
-  <line stroke="#888888" x1="705.5000000000001" x2="706.5000000000001" y1="201.058556" y2="201.058556"/>
-  <line stroke="#888888" x1="706.5000000000001" x2="706.5000000000001" y1="201.058556" y2="202.05855600000004"/>
-  <line stroke="#888888" x1="706.5000000000001" x2="705.5000000000001" y1="202.05855600000004" y2="202.05855600000004"/>
-  <line stroke="#888888" x1="685.5000000000001" x2="685.5000000000001" y1="204.55855600000004" y2="203.558556"/>
-  <line stroke="#888888" x1="685.5000000000001" x2="686.5000000000001" y1="203.558556" y2="203.558556"/>
-  <line stroke="#888888" x1="686.5000000000001" x2="686.5000000000001" y1="203.558556" y2="204.55855600000004"/>
-  <line stroke="#888888" x1="686.5000000000001" x2="685.5000000000001" y1="204.55855600000004" y2="204.55855600000004"/>
-  <line stroke="#888888" x1="705.5000000000001" x2="705.5000000000001" y1="204.55855600000004" y2="203.558556"/>
-  <line stroke="#888888" x1="705.5000000000001" x2="706.5000000000001" y1="203.558556" y2="203.558556"/>
-  <line stroke="#888888" x1="706.5000000000001" x2="706.5000000000001" y1="203.558556" y2="204.55855600000004"/>
-  <line stroke="#888888" x1="706.5000000000001" x2="705.5000000000001" y1="204.55855600000004" y2="204.55855600000004"/>
-  <line stroke="#888888" x1="685.5000000000001" x2="685.5000000000001" y1="207.05855600000004" y2="206.05855600000004"/>
-  <line stroke="#888888" x1="685.5000000000001" x2="686.5000000000001" y1="206.05855600000004" y2="206.05855600000004"/>
-  <line stroke="#888888" x1="686.5000000000001" x2="686.5000000000001" y1="206.05855600000004" y2="207.05855600000004"/>
-  <line stroke="#888888" x1="686.5000000000001" x2="685.5000000000001" y1="207.05855600000004" y2="207.05855600000004"/>
-  <line stroke="#888888" x1="705.5000000000001" x2="705.5000000000001" y1="207.05855600000004" y2="206.05855600000004"/>
-  <line stroke="#888888" x1="705.5000000000001" x2="706.5000000000001" y1="206.05855600000004" y2="206.05855600000004"/>
-  <line stroke="#888888" x1="706.5000000000001" x2="706.5000000000001" y1="206.05855600000004" y2="207.05855600000004"/>
-  <line stroke="#888888" x1="706.5000000000001" x2="705.5000000000001" y1="207.05855600000004" y2="207.05855600000004"/>
-  <line stroke="#888888" x1="685.5000000000001" x2="685.5000000000001" y1="209.55855600000004" y2="208.55855600000004"/>
-  <line stroke="#888888" x1="685.5000000000001" x2="686.5000000000001" y1="208.55855600000004" y2="208.55855600000004"/>
-  <line stroke="#888888" x1="686.5000000000001" x2="686.5000000000001" y1="208.55855600000004" y2="209.55855600000004"/>
-  <line stroke="#888888" x1="686.5000000000001" x2="685.5000000000001" y1="209.55855600000004" y2="209.55855600000004"/>
-  <line stroke="#888888" x1="705.5000000000001" x2="705.5000000000001" y1="209.55855600000004" y2="208.55855600000004"/>
-  <line stroke="#888888" x1="705.5000000000001" x2="706.5000000000001" y1="208.55855600000004" y2="208.55855600000004"/>
-  <line stroke="#888888" x1="706.5000000000001" x2="706.5000000000001" y1="208.55855600000004" y2="209.55855600000004"/>
-  <line stroke="#888888" x1="706.5000000000001" x2="705.5000000000001" y1="209.55855600000004" y2="209.55855600000004"/>
-  <line stroke="#888888" x1="685.5000000000001" x2="685.5000000000001" y1="212.05855600000004" y2="211.05855600000004"/>
-  <line stroke="#888888" x1="685.5000000000001" x2="686.5000000000001" y1="211.05855600000004" y2="211.05855600000004"/>
-  <line stroke="#888888" x1="686.5000000000001" x2="686.5000000000001" y1="211.05855600000004" y2="212.05855600000004"/>
-  <line stroke="#888888" x1="686.5000000000001" x2="685.5000000000001" y1="212.05855600000004" y2="212.05855600000004"/>
-  <line stroke="#888888" x1="704.5000000000001" x2="704.5000000000001" y1="213.05855600000004" y2="210.05855600000004"/>
-  <line stroke="#888888" x1="704.5000000000001" x2="707.5000000000001" y1="210.05855600000004" y2="210.05855600000004"/>
-  <line stroke="#888888" x1="707.5000000000001" x2="707.5000000000001" y1="210.05855600000004" y2="213.05855600000004"/>
-  <line stroke="#888888" x1="707.5000000000001" x2="704.5000000000001" y1="213.05855600000004" y2="213.05855600000004"/>
-  <line stroke="#888888" x1="700.2500000000001" x2="691.7500000000001" y1="170.05855600000004" y2="170.05855600000004"/>
-  <line stroke="#888888" x1="691.7500000000001" x2="691.7500000000001" y1="170.05855600000004" y2="169.558556"/>
-  <line stroke="#888888" x1="691.7500000000001" x2="700.2500000000001" y1="169.558556" y2="169.558556"/>
-  <line stroke="#888888" x1="700.2500000000001" x2="700.2500000000001" y1="169.558556" y2="170.05855600000004"/>
-  <line stroke="#888888" x1="691.7500000000001" x2="700.2500000000001" y1="217.80855600000004" y2="217.80855600000004"/>
-  <line stroke="#888888" x1="700.2500000000001" x2="700.2500000000001" y1="217.80855600000004" y2="218.30855600000004"/>
-  <line stroke="#888888" x1="700.2500000000001" x2="691.7500000000001" y1="218.30855600000004" y2="218.30855600000004"/>
-  <line stroke="#888888" x1="691.7500000000001" x2="691.7500000000001" y1="218.30855600000004" y2="217.80855600000004"/>
-  <line stroke="#888888" x1="723.0000000000001" x2="723.0000000000001" y1="213.30855600000004" y2="200.30855600000004"/>
-  <line stroke="#888888" x1="723.0000000000001" x2="753.0000000000001" y1="200.30855600000004" y2="200.30855600000004"/>
-  <line stroke="#888888" x1="753.0000000000001" x2="753.0000000000001" y1="200.30855600000004" y2="213.30855600000004"/>
-  <line stroke="#888888" x1="753.0000000000001" x2="723.0000000000001" y1="213.30855600000004" y2="213.30855600000004"/>
-  <line stroke="#888888" x1="730.0681818181819" x2="718.659090909091" y1="167.80855600000004" y2="167.80855600000004"/>
-  <line stroke="#888888" x1="718.659090909091" x2="718.659090909091" y1="167.80855600000004" y2="167.308556"/>
-  <line stroke="#888888" x1="718.659090909091" x2="730.0681818181819" y1="167.308556" y2="167.308556"/>
-  <line stroke="#888888" x1="730.0681818181819" x2="730.0681818181819" y1="167.308556" y2="167.80855600000004"/>
-  <line stroke="#888888" x1="757.3409090909092" x2="745.9318181818182" y1="167.80855600000004" y2="167.80855600000004"/>
-  <line stroke="#888888" x1="745.9318181818182" x2="745.9318181818182" y1="167.80855600000004" y2="167.308556"/>
-  <line stroke="#888888" x1="745.9318181818182" x2="757.3409090909092" y1="167.308556" y2="167.308556"/>
-  <line stroke="#888888" x1="757.3409090909092" x2="757.3409090909092" y1="167.308556" y2="167.80855600000004"/>
-  <line stroke="#888888" x1="760.25" x2="760.25" y1="184.74037418181823" y2="173.14946509090913"/>
-  <line stroke="#888888" x1="760.25" x2="760.75" y1="173.14946509090913" y2="173.14946509090913"/>
-  <line stroke="#888888" x1="760.75" x2="760.75" y1="173.14946509090913" y2="184.74037418181823"/>
-  <line stroke="#888888" x1="760.75" x2="760.25" y1="184.74037418181823" y2="184.74037418181823"/>
-  <line stroke="#888888" x1="760.25" x2="760.25" y1="212.46764690909094" y2="200.87673781818185"/>
-  <line stroke="#888888" x1="760.25" x2="760.75" y1="200.87673781818185" y2="200.87673781818185"/>
-  <line stroke="#888888" x1="760.75" x2="760.75" y1="200.87673781818185" y2="212.46764690909094"/>
-  <line stroke="#888888" x1="760.75" x2="760.25" y1="212.46764690909094" y2="212.46764690909094"/>
-  <line stroke="#888888" x1="600.5" x2="600.5" y1="175.55855600000004" y2="172.55855600000004"/>
-  <line stroke="#888888" x1="600.5" x2="603.5000000000001" y1="172.55855600000004" y2="172.55855600000004"/>
-  <line stroke="#888888" x1="603.5000000000001" x2="603.5000000000001" y1="172.55855600000004" y2="175.55855600000004"/>
-  <line stroke="#888888" x1="603.5000000000001" x2="600.5" y1="175.55855600000004" y2="175.55855600000004"/>
-  <line stroke="#888888" x1="621.5000000000001" x2="621.5000000000001" y1="174.55855600000004" y2="173.55855600000004"/>
-  <line stroke="#888888" x1="621.5000000000001" x2="622.5000000000001" y1="173.55855600000004" y2="173.55855600000004"/>
-  <line stroke="#888888" x1="622.5000000000001" x2="622.5000000000001" y1="173.55855600000004" y2="174.55855600000004"/>
-  <line stroke="#888888" x1="622.5000000000001" x2="621.5000000000001" y1="174.55855600000004" y2="174.55855600000004"/>
-  <line stroke="#888888" x1="601.5" x2="601.5" y1="177.05855600000004" y2="176.058556"/>
-  <line stroke="#888888" x1="601.5" x2="602.5000000000001" y1="176.058556" y2="176.058556"/>
-  <line stroke="#888888" x1="602.5000000000001" x2="602.5000000000001" y1="176.058556" y2="177.05855600000004"/>
-  <line stroke="#888888" x1="602.5000000000001" x2="601.5" y1="177.05855600000004" y2="177.05855600000004"/>
-  <line stroke="#888888" x1="621.5000000000001" x2="621.5000000000001" y1="177.05855600000004" y2="176.058556"/>
-  <line stroke="#888888" x1="621.5000000000001" x2="622.5000000000001" y1="176.058556" y2="176.058556"/>
-  <line stroke="#888888" x1="622.5000000000001" x2="622.5000000000001" y1="176.058556" y2="177.05855600000004"/>
-  <line stroke="#888888" x1="622.5000000000001" x2="621.5000000000001" y1="177.05855600000004" y2="177.05855600000004"/>
-  <line stroke="#888888" x1="601.5" x2="601.5" y1="179.55855600000004" y2="178.558556"/>
-  <line stroke="#888888" x1="601.5" x2="602.5000000000001" y1="178.558556" y2="178.558556"/>
-  <line stroke="#888888" x1="602.5000000000001" x2="602.5000000000001" y1="178.558556" y2="179.55855600000004"/>
-  <line stroke="#888888" x1="602.5000000000001" x2="601.5" y1="179.55855600000004" y2="179.55855600000004"/>
-  <line stroke="#888888" x1="621.5000000000001" x2="621.5000000000001" y1="179.55855600000004" y2="178.558556"/>
-  <line stroke="#888888" x1="621.5000000000001" x2="622.5000000000001" y1="178.558556" y2="178.558556"/>
-  <line stroke="#888888" x1="622.5000000000001" x2="622.5000000000001" y1="178.558556" y2="179.55855600000004"/>
-  <line stroke="#888888" x1="622.5000000000001" x2="621.5000000000001" y1="179.55855600000004" y2="179.55855600000004"/>
-  <line stroke="#888888" x1="601.5" x2="601.5" y1="182.05855600000004" y2="181.058556"/>
-  <line stroke="#888888" x1="601.5" x2="602.5000000000001" y1="181.058556" y2="181.058556"/>
-  <line stroke="#888888" x1="602.5000000000001" x2="602.5000000000001" y1="181.058556" y2="182.05855600000004"/>
-  <line stroke="#888888" x1="602.5000000000001" x2="601.5" y1="182.05855600000004" y2="182.05855600000004"/>
-  <line stroke="#888888" x1="621.5000000000001" x2="621.5000000000001" y1="182.05855600000004" y2="181.058556"/>
-  <line stroke="#888888" x1="621.5000000000001" x2="622.5000000000001" y1="181.058556" y2="181.058556"/>
-  <line stroke="#888888" x1="622.5000000000001" x2="622.5000000000001" y1="181.058556" y2="182.05855600000004"/>
-  <line stroke="#888888" x1="622.5000000000001" x2="621.5000000000001" y1="182.05855600000004" y2="182.05855600000004"/>
-  <line stroke="#888888" x1="601.5" x2="601.5" y1="184.55855600000004" y2="183.55855600000004"/>
-  <line stroke="#888888" x1="601.5" x2="602.5000000000001" y1="183.55855600000004" y2="183.55855600000004"/>
-  <line stroke="#888888" x1="602.5000000000001" x2="602.5000000000001" y1="183.55855600000004" y2="184.55855600000004"/>
-  <line stroke="#888888" x1="602.5000000000001" x2="601.5" y1="184.55855600000004" y2="184.55855600000004"/>
-  <line stroke="#888888" x1="621.5000000000001" x2="621.5000000000001" y1="184.55855600000004" y2="183.55855600000004"/>
-  <line stroke="#888888" x1="621.5000000000001" x2="622.5000000000001" y1="183.55855600000004" y2="183.55855600000004"/>
-  <line stroke="#888888" x1="622.5000000000001" x2="622.5000000000001" y1="183.55855600000004" y2="184.55855600000004"/>
-  <line stroke="#888888" x1="622.5000000000001" x2="621.5000000000001" y1="184.55855600000004" y2="184.55855600000004"/>
-  <line stroke="#888888" x1="601.5" x2="601.5" y1="187.05855600000004" y2="186.05855600000004"/>
-  <line stroke="#888888" x1="601.5" x2="602.5000000000001" y1="186.05855600000004" y2="186.05855600000004"/>
-  <line stroke="#888888" x1="602.5000000000001" x2="602.5000000000001" y1="186.05855600000004" y2="187.05855600000004"/>
-  <line stroke="#888888" x1="602.5000000000001" x2="601.5" y1="187.05855600000004" y2="187.05855600000004"/>
-  <line stroke="#888888" x1="621.5000000000001" x2="621.5000000000001" y1="187.05855600000004" y2="186.05855600000004"/>
-  <line stroke="#888888" x1="621.5000000000001" x2="622.5000000000001" y1="186.05855600000004" y2="186.05855600000004"/>
-  <line stroke="#888888" x1="622.5000000000001" x2="622.5000000000001" y1="186.05855600000004" y2="187.05855600000004"/>
-  <line stroke="#888888" x1="622.5000000000001" x2="621.5000000000001" y1="187.05855600000004" y2="187.05855600000004"/>
-  <line stroke="#888888" x1="601.5" x2="601.5" y1="189.55855600000004" y2="188.55855600000004"/>
-  <line stroke="#888888" x1="601.5" x2="602.5000000000001" y1="188.55855600000004" y2="188.55855600000004"/>
-  <line stroke="#888888" x1="602.5000000000001" x2="602.5000000000001" y1="188.55855600000004" y2="189.55855600000004"/>
-  <line stroke="#888888" x1="602.5000000000001" x2="601.5" y1="189.55855600000004" y2="189.55855600000004"/>
-  <line stroke="#888888" x1="621.5000000000001" x2="621.5000000000001" y1="189.55855600000004" y2="188.55855600000004"/>
-  <line stroke="#888888" x1="621.5000000000001" x2="622.5000000000001" y1="188.55855600000004" y2="188.55855600000004"/>
-  <line stroke="#888888" x1="622.5000000000001" x2="622.5000000000001" y1="188.55855600000004" y2="189.55855600000004"/>
-  <line stroke="#888888" x1="622.5000000000001" x2="621.5000000000001" y1="189.55855600000004" y2="189.55855600000004"/>
-  <line stroke="#888888" x1="601.5" x2="601.5" y1="192.058556" y2="191.05855600000004"/>
-  <line stroke="#888888" x1="601.5" x2="602.5000000000001" y1="191.05855600000004" y2="191.05855600000004"/>
-  <line stroke="#888888" x1="602.5000000000001" x2="602.5000000000001" y1="191.05855600000004" y2="192.058556"/>
-  <line stroke="#888888" x1="602.5000000000001" x2="601.5" y1="192.058556" y2="192.058556"/>
-  <line stroke="#888888" x1="621.5000000000001" x2="621.5000000000001" y1="192.058556" y2="191.05855600000004"/>
-  <line stroke="#888888" x1="621.5000000000001" x2="622.5000000000001" y1="191.05855600000004" y2="191.05855600000004"/>
-  <line stroke="#888888" x1="622.5000000000001" x2="622.5000000000001" y1="191.05855600000004" y2="192.058556"/>
-  <line stroke="#888888" x1="622.5000000000001" x2="621.5000000000001" y1="192.058556" y2="192.058556"/>
-  <line stroke="#888888" x1="601.5" x2="601.5" y1="194.558556" y2="193.55855600000004"/>
-  <line stroke="#888888" x1="601.5" x2="602.5000000000001" y1="193.55855600000004" y2="193.55855600000004"/>
-  <line stroke="#888888" x1="602.5000000000001" x2="602.5000000000001" y1="193.55855600000004" y2="194.558556"/>
-  <line stroke="#888888" x1="602.5000000000001" x2="601.5" y1="194.558556" y2="194.558556"/>
-  <line stroke="#888888" x1="621.5000000000001" x2="621.5000000000001" y1="194.558556" y2="193.55855600000004"/>
-  <line stroke="#888888" x1="621.5000000000001" x2="622.5000000000001" y1="193.55855600000004" y2="193.55855600000004"/>
-  <line stroke="#888888" x1="622.5000000000001" x2="622.5000000000001" y1="193.55855600000004" y2="194.558556"/>
-  <line stroke="#888888" x1="622.5000000000001" x2="621.5000000000001" y1="194.558556" y2="194.558556"/>
-  <line stroke="#888888" x1="601.5" x2="601.5" y1="197.05855600000004" y2="196.05855600000004"/>
-  <line stroke="#888888" x1="601.5" x2="602.5000000000001" y1="196.05855600000004" y2="196.05855600000004"/>
-  <line stroke="#888888" x1="602.5000000000001" x2="602.5000000000001" y1="196.05855600000004" y2="197.05855600000004"/>
-  <line stroke="#888888" x1="602.5000000000001" x2="601.5" y1="197.05855600000004" y2="197.05855600000004"/>
-  <line stroke="#888888" x1="621.5000000000001" x2="621.5000000000001" y1="197.05855600000004" y2="196.05855600000004"/>
-  <line stroke="#888888" x1="621.5000000000001" x2="622.5000000000001" y1="196.05855600000004" y2="196.05855600000004"/>
-  <line stroke="#888888" x1="622.5000000000001" x2="622.5000000000001" y1="196.05855600000004" y2="197.05855600000004"/>
-  <line stroke="#888888" x1="622.5000000000001" x2="621.5000000000001" y1="197.05855600000004" y2="197.05855600000004"/>
-  <line stroke="#888888" x1="601.5" x2="601.5" y1="199.55855600000004" y2="198.55855600000004"/>
-  <line stroke="#888888" x1="601.5" x2="602.5000000000001" y1="198.55855600000004" y2="198.55855600000004"/>
-  <line stroke="#888888" x1="602.5000000000001" x2="602.5000000000001" y1="198.55855600000004" y2="199.55855600000004"/>
-  <line stroke="#888888" x1="602.5000000000001" x2="601.5" y1="199.55855600000004" y2="199.55855600000004"/>
-  <line stroke="#888888" x1="621.5000000000001" x2="621.5000000000001" y1="199.55855600000004" y2="198.55855600000004"/>
-  <line stroke="#888888" x1="621.5000000000001" x2="622.5000000000001" y1="198.55855600000004" y2="198.55855600000004"/>
-  <line stroke="#888888" x1="622.5000000000001" x2="622.5000000000001" y1="198.55855600000004" y2="199.55855600000004"/>
-  <line stroke="#888888" x1="622.5000000000001" x2="621.5000000000001" y1="199.55855600000004" y2="199.55855600000004"/>
-  <line stroke="#888888" x1="601.5" x2="601.5" y1="202.05855600000004" y2="201.058556"/>
-  <line stroke="#888888" x1="601.5" x2="602.5000000000001" y1="201.058556" y2="201.058556"/>
-  <line stroke="#888888" x1="602.5000000000001" x2="602.5000000000001" y1="201.058556" y2="202.05855600000004"/>
-  <line stroke="#888888" x1="602.5000000000001" x2="601.5" y1="202.05855600000004" y2="202.05855600000004"/>
-  <line stroke="#888888" x1="621.5000000000001" x2="621.5000000000001" y1="202.05855600000004" y2="201.058556"/>
-  <line stroke="#888888" x1="621.5000000000001" x2="622.5000000000001" y1="201.058556" y2="201.058556"/>
-  <line stroke="#888888" x1="622.5000000000001" x2="622.5000000000001" y1="201.058556" y2="202.05855600000004"/>
-  <line stroke="#888888" x1="622.5000000000001" x2="621.5000000000001" y1="202.05855600000004" y2="202.05855600000004"/>
-  <line stroke="#888888" x1="601.5" x2="601.5" y1="204.55855600000004" y2="203.558556"/>
-  <line stroke="#888888" x1="601.5" x2="602.5000000000001" y1="203.558556" y2="203.558556"/>
-  <line stroke="#888888" x1="602.5000000000001" x2="602.5000000000001" y1="203.558556" y2="204.55855600000004"/>
-  <line stroke="#888888" x1="602.5000000000001" x2="601.5" y1="204.55855600000004" y2="204.55855600000004"/>
-  <line stroke="#888888" x1="621.5000000000001" x2="621.5000000000001" y1="204.55855600000004" y2="203.558556"/>
-  <line stroke="#888888" x1="621.5000000000001" x2="622.5000000000001" y1="203.558556" y2="203.558556"/>
-  <line stroke="#888888" x1="622.5000000000001" x2="622.5000000000001" y1="203.558556" y2="204.55855600000004"/>
-  <line stroke="#888888" x1="622.5000000000001" x2="621.5000000000001" y1="204.55855600000004" y2="204.55855600000004"/>
-  <line stroke="#888888" x1="601.5" x2="601.5" y1="207.05855600000004" y2="206.05855600000004"/>
-  <line stroke="#888888" x1="601.5" x2="602.5000000000001" y1="206.05855600000004" y2="206.05855600000004"/>
-  <line stroke="#888888" x1="602.5000000000001" x2="602.5000000000001" y1="206.05855600000004" y2="207.05855600000004"/>
-  <line stroke="#888888" x1="602.5000000000001" x2="601.5" y1="207.05855600000004" y2="207.05855600000004"/>
-  <line stroke="#888888" x1="621.5000000000001" x2="621.5000000000001" y1="207.05855600000004" y2="206.05855600000004"/>
-  <line stroke="#888888" x1="621.5000000000001" x2="622.5000000000001" y1="206.05855600000004" y2="206.05855600000004"/>
-  <line stroke="#888888" x1="622.5000000000001" x2="622.5000000000001" y1="206.05855600000004" y2="207.05855600000004"/>
-  <line stroke="#888888" x1="622.5000000000001" x2="621.5000000000001" y1="207.05855600000004" y2="207.05855600000004"/>
-  <line stroke="#888888" x1="601.5" x2="601.5" y1="209.55855600000004" y2="208.55855600000004"/>
-  <line stroke="#888888" x1="601.5" x2="602.5000000000001" y1="208.55855600000004" y2="208.55855600000004"/>
-  <line stroke="#888888" x1="602.5000000000001" x2="602.5000000000001" y1="208.55855600000004" y2="209.55855600000004"/>
-  <line stroke="#888888" x1="602.5000000000001" x2="601.5" y1="209.55855600000004" y2="209.55855600000004"/>
-  <line stroke="#888888" x1="621.5000000000001" x2="621.5000000000001" y1="209.55855600000004" y2="208.55855600000004"/>
-  <line stroke="#888888" x1="621.5000000000001" x2="622.5000000000001" y1="208.55855600000004" y2="208.55855600000004"/>
-  <line stroke="#888888" x1="622.5000000000001" x2="622.5000000000001" y1="208.55855600000004" y2="209.55855600000004"/>
-  <line stroke="#888888" x1="622.5000000000001" x2="621.5000000000001" y1="209.55855600000004" y2="209.55855600000004"/>
-  <line stroke="#888888" x1="601.5" x2="601.5" y1="212.05855600000004" y2="211.05855600000004"/>
-  <line stroke="#888888" x1="601.5" x2="602.5000000000001" y1="211.05855600000004" y2="211.05855600000004"/>
-  <line stroke="#888888" x1="602.5000000000001" x2="602.5000000000001" y1="211.05855600000004" y2="212.05855600000004"/>
-  <line stroke="#888888" x1="602.5000000000001" x2="601.5" y1="212.05855600000004" y2="212.05855600000004"/>
-  <line stroke="#888888" x1="620.5000000000001" x2="620.5000000000001" y1="213.05855600000004" y2="210.05855600000004"/>
-  <line stroke="#888888" x1="620.5000000000001" x2="623.5000000000001" y1="210.05855600000004" y2="210.05855600000004"/>
-  <line stroke="#888888" x1="623.5000000000001" x2="623.5000000000001" y1="210.05855600000004" y2="213.05855600000004"/>
-  <line stroke="#888888" x1="623.5000000000001" x2="620.5000000000001" y1="213.05855600000004" y2="213.05855600000004"/>
-  <line stroke="#888888" x1="616.2500000000001" x2="607.7500000000001" y1="170.05855600000004" y2="170.05855600000004"/>
-  <line stroke="#888888" x1="607.7500000000001" x2="607.7500000000001" y1="170.05855600000004" y2="169.558556"/>
-  <line stroke="#888888" x1="607.7500000000001" x2="616.2500000000001" y1="169.558556" y2="169.558556"/>
-  <line stroke="#888888" x1="616.2500000000001" x2="616.2500000000001" y1="169.558556" y2="170.05855600000004"/>
-  <line stroke="#888888" x1="607.7500000000001" x2="616.2500000000001" y1="217.80855600000004" y2="217.80855600000004"/>
-  <line stroke="#888888" x1="616.2500000000001" x2="616.2500000000001" y1="217.80855600000004" y2="218.30855600000004"/>
-  <line stroke="#888888" x1="616.2500000000001" x2="607.7500000000001" y1="218.30855600000004" y2="218.30855600000004"/>
-  <line stroke="#888888" x1="607.7500000000001" x2="607.7500000000001" y1="218.30855600000004" y2="217.80855600000004"/>
-  <line stroke="#888888" x1="592.5" x2="597.5000000000001" y1="173.39946509090913" y2="173.39946509090913"/>
-  <line stroke="#888888" x1="597.5000000000001" x2="597.5000000000001" y1="173.39946509090913" y2="184.49037418181823"/>
-  <line stroke="#888888" x1="597.5000000000001" x2="592.5" y1="184.49037418181823" y2="184.49037418181823"/>
-  <line stroke="#888888" x1="592.5" x2="597.5000000000001" y1="201.12673781818185" y2="201.12673781818185"/>
-  <line stroke="#888888" x1="597.5000000000001" x2="597.5000000000001" y1="201.12673781818185" y2="212.21764690909094"/>
-  <line stroke="#888888" x1="597.5000000000001" x2="592.5" y1="212.21764690909094" y2="212.21764690909094"/>
-  <line stroke="#888888" x1="617.7500000000001" x2="621.2500000000001" y1="146.308556" y2="146.308556"/>
-  <line stroke="#888888" x1="621.2500000000001" x2="621.2500000000001" y1="146.308556" y2="154.30855600000004"/>
-  <line stroke="#888888" x1="621.2500000000001" x2="617.7500000000001" y1="154.30855600000004" y2="154.30855600000004"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="850.733401821533" x2="850.733401821533" y1="100.30855600000002" y2="200.30855600000004"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="800.7334018215329" x2="800.7334018215329" y1="100.30855600000002" y2="200.30855600000004"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="825.733401821533" x2="800.7334018215329" y1="100.30855600000002" y2="100.30855600000002"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="850.733401821533" x2="825.733401821533" y1="100.30855600000002" y2="100.30855600000002"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="825.733401821533" x2="800.7334018215329" y1="46.45690792865498" y2="100.30855600000002"/>
-  <line stroke="#000000" x1="792.2466086902074" x2="786.4900052558701" y1="80.42847270018157" y2="86.2684116177914"/>
-  <line stroke="#000000" x1="825.733401821533" x2="792.2466086902074" y1="46.456907928654964" y2="80.42847270018157"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="800.7334018215329" x2="786.4900052558701" y1="100.30855600000002" y2="86.2684116177914"/>
-  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="800.7334018215329" x2="780.733401821533" y1="100.30855600000002" y2="92.10835053540121"/>
-  <line stroke="#000000" x1="786.4900052558701" x2="780.733401821533" y1="86.2684116177914" y2="92.10835053540121"/>
-  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="780.733401821533" x2="780.733401821533" y1="100.30855600000002" y2="92.10835053540121"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="800.7334018215329" x2="780.733401821533" y1="100.30855600000002" y2="100.30855600000002"/>
-  <line stroke="#000000" x1="778.0000000000001" x2="780.733401821533" y1="100.30855600000002" y2="100.30855600000002"/>
-  <line stroke="#000000" x1="778.0000000000001" x2="778.0000000000001" y1="92.10835053540121" y2="100.30855600000002"/>
-  <line stroke="#000000" x1="780.733401821533" x2="778.0000000000001" y1="92.10835053540121" y2="92.10835053540121"/>
-  <line stroke="#000000" x1="780.733401821533" x2="780.733401821533" y1="100.30855600000002" y2="200.30855600000004"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="780.733401821533" x2="800.7334018215329" y1="200.30855600000004" y2="200.30855600000004"/>
-  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="780.733401821533" x2="800.7334018215329" y1="208.50876146459882" y2="200.30855600000004"/>
-  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="780.733401821533" x2="780.733401821533" y1="208.50876146459882" y2="200.30855600000004"/>
-  <line stroke="#000000" x1="780.733401821533" x2="786.4900052558701" y1="208.50876146459882" y2="214.34870038220865"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="786.4900052558701" x2="800.7334018215329" y1="214.34870038220865" y2="200.30855600000004"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="825.733401821533" x2="800.7334018215329" y1="254.16020407134508" y2="200.30855600000004"/>
-  <line stroke="#000000" x1="792.2466086902074" x2="825.733401821533" y1="220.18863929981848" y2="254.16020407134508"/>
-  <line stroke="#000000" x1="786.4900052558701" x2="792.2466086902074" y1="214.34870038220865" y2="220.18863929981848"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="800.7334018215329" x2="825.733401821533" y1="200.30855600000004" y2="200.30855600000004"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="825.733401821533" x2="850.733401821533" y1="200.30855600000004" y2="200.308556"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="825.733401821533" x2="850.733401821533" y1="254.16020407134508" y2="200.308556"/>
-  <line stroke="#000000" x1="859.2201949528585" x2="864.9767983871958" y1="220.18863929981845" y2="214.34870038220865"/>
-  <line stroke="#000000" x1="825.733401821533" x2="859.2201949528585" y1="254.16020407134508" y2="220.18863929981845"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="850.733401821533" x2="864.9767983871958" y1="200.30855600000004" y2="214.34870038220865"/>
-  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="850.733401821533" x2="870.733401821533" y1="200.308556" y2="208.5087614645988"/>
-  <line stroke="#000000" x1="864.9767983871958" x2="870.733401821533" y1="214.34870038220865" y2="208.5087614645988"/>
-  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="870.733401821533" x2="870.733401821533" y1="200.308556" y2="208.5087614645988"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="850.733401821533" x2="870.733401821533" y1="200.308556" y2="200.308556"/>
-  <line stroke="#000000" x1="873.4668036430659" x2="870.733401821533" y1="200.30855599999998" y2="200.30855599999998"/>
-  <line stroke="#000000" x1="873.4668036430659" x2="873.4668036430659" y1="208.5087614645988" y2="200.30855599999998"/>
-  <line stroke="#000000" x1="870.733401821533" x2="873.4668036430659" y1="208.5087614645988" y2="208.5087614645988"/>
-  <line stroke="#000000" x1="870.733401821533" x2="870.733401821533" y1="200.308556" y2="100.30855600000002"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="870.733401821533" x2="850.733401821533" y1="100.30855600000002" y2="100.30855600000002"/>
-  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="870.7334018215329" x2="850.733401821533" y1="92.10835053540121" y2="100.30855600000002"/>
-  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="870.7334018215329" x2="870.7334018215329" y1="92.10835053540121" y2="100.30855600000002"/>
-  <line stroke="#000000" x1="870.7334018215329" x2="864.9767983871958" y1="92.10835053540121" y2="86.2684116177914"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="864.9767983871958" x2="850.733401821533" y1="86.2684116177914" y2="100.30855600000002"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="825.7334018215329" x2="850.733401821533" y1="46.45690792865502" y2="100.30855600000004"/>
-  <line stroke="#000000" x1="859.2201949528585" x2="825.7334018215329" y1="80.42847270018159" y2="46.45690792865502"/>
-  <line stroke="#000000" x1="864.9767983871958" x2="859.2201949528585" y1="86.26841161779141" y2="80.42847270018159"/>
-  <line stroke="#000000" x1="873.4668036430659" x2="870.733401821533" y1="92.10835053540121" y2="92.10835053540121"/>
-  <line stroke="#000000" x1="873.4668036430659" x2="873.4668036430659" y1="100.30855600000002" y2="92.10835053540121"/>
-  <line stroke="#000000" x1="870.733401821533" x2="873.4668036430659" y1="100.30855600000002" y2="100.30855600000002"/>
-  <line stroke="#000000" x1="778.0000000000001" x2="780.733401821533" y1="208.50876146459882" y2="208.50876146459882"/>
-  <line stroke="#000000" x1="778.0000000000001" x2="778.0000000000001" y1="200.30855600000004" y2="208.50876146459882"/>
-  <line stroke="#000000" x1="780.733401821533" x2="778.0000000000001" y1="200.30855600000004" y2="200.30855600000004"/>
-  <line stroke="#888888" x1="792.1412698700124" x2="789.8713984490114" y1="83.81172921234263" y2="86.11446043235414"/>
-  <line stroke="#888888" x1="789.8713984490114" x2="789.5153135348698" y1="86.11446043235414" y2="85.76345682279894"/>
-  <line stroke="#888888" x1="789.5153135348698" x2="791.7851849558709" y1="85.76345682279894" y2="83.46072560278743"/>
-  <line stroke="#888888" x1="791.7851849558709" x2="792.1412698700124" y1="83.46072560278743" y2="83.81172921234263"/>
-  <line stroke="#888888" x1="778.6833504553833" x2="780.0500513661498" y1="94.84175235693415" y2="94.84175235693415"/>
-  <line stroke="#888888" x1="780.0500513661498" x2="780.0500513661498" y1="94.84175235693415" y2="97.57515417846707"/>
-  <line stroke="#888888" x1="780.0500513661498" x2="778.6833504553833" y1="97.57515417846707" y2="97.57515417846707"/>
-  <line stroke="#888888" x1="789.8713984490114" x2="792.1412698700124" y1="214.50265156764593" y2="216.8053827876574"/>
-  <line stroke="#888888" x1="792.1412698700124" x2="791.7851849558709" y1="216.8053827876574" y2="217.15638639721263"/>
-  <line stroke="#888888" x1="791.7851849558709" x2="789.5153135348698" y1="217.15638639721263" y2="214.85365517720115"/>
-  <line stroke="#888888" x1="789.5153135348698" x2="789.8713984490114" y1="214.85365517720115" y2="214.50265156764593"/>
-  <line stroke="#888888" x1="859.3255337730535" x2="861.5954051940545" y1="216.8053827876574" y2="214.50265156764587"/>
-  <line stroke="#888888" x1="861.5954051940545" x2="861.951490108196" y1="214.50265156764587" y2="214.8536551772011"/>
-  <line stroke="#888888" x1="861.951490108196" x2="859.681618687195" y1="214.8536551772011" y2="217.1563863972126"/>
-  <line stroke="#888888" x1="859.681618687195" x2="859.3255337730535" y1="217.1563863972126" y2="216.8053827876574"/>
-  <line stroke="#888888" x1="872.7834531876827" x2="871.4167522769161" y1="205.77535964306585" y2="205.77535964306585"/>
-  <line stroke="#888888" x1="871.4167522769161" x2="871.4167522769161" y1="205.77535964306585" y2="203.04195782153292"/>
-  <line stroke="#888888" x1="871.4167522769161" x2="872.7834531876827" y1="203.04195782153292" y2="203.04195782153292"/>
-  <line stroke="#888888" x1="861.5954051940544" x2="859.3255337730535" y1="86.11446043235415" y2="83.81172921234264"/>
-  <line stroke="#888888" x1="859.3255337730535" x2="859.681618687195" y1="83.81172921234264" y2="83.46072560278743"/>
-  <line stroke="#888888" x1="859.681618687195" x2="861.951490108196" y1="83.46072560278743" y2="85.76345682279894"/>
-  <line stroke="#888888" x1="861.951490108196" x2="861.5954051940544" y1="85.76345682279894" y2="86.11446043235415"/>
-  <line stroke="#888888" x1="872.7834531876827" x2="871.4167522769161" y1="97.57515417846707" y2="97.57515417846707"/>
-  <line stroke="#888888" x1="871.4167522769161" x2="871.4167522769161" y1="97.57515417846707" y2="94.84175235693415"/>
-  <line stroke="#888888" x1="871.4167522769161" x2="872.7834531876827" y1="94.84175235693415" y2="94.84175235693415"/>
-  <line stroke="#888888" x1="778.6833504553833" x2="780.0500513661498" y1="203.04195782153298" y2="203.04195782153298"/>
-  <line stroke="#888888" x1="780.0500513661498" x2="780.0500513661498" y1="203.04195782153298" y2="205.7753596430659"/>
-  <line stroke="#888888" x1="780.0500513661498" x2="778.6833504553833" y1="205.7753596430659" y2="205.7753596430659"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="280.00000000000006" x2="280.00000000000006" y1="70.00000000000001" y2="298.00000000000006"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="190.00000000000003" x2="190.00000000000003" y1="70.00000000000001" y2="298.00000000000006"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="235.00000000000003" x2="190.00000000000003" y1="70.00000000000001" y2="70.00000000000001"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="280.00000000000006" x2="235.00000000000003" y1="70.00000000000001" y2="70.00000000000001"/>
+  <line stroke="#000000" x1="260.0" x2="190.00000000000003" y1="-2.8421709430404014e-14" y2="-2.8421709430404014e-14"/>
+  <line stroke="#000000" x1="235.00000000000003" x2="260.0" y1="-2.8421709430404014e-14" y2="-2.8421709430404014e-14"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="190.00000000000003" x2="190.00000000000003" y1="70.0" y2="-2.8421709430404014e-14"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="190.00000000000003" x2="120.00000000000003" y1="70.0" y2="-2.8421709430404014e-14"/>
+  <line stroke="#000000" x1="190.00000000000003" x2="120.00000000000003" y1="-2.8421709430404014e-14" y2="-2.8421709430404014e-14"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="120.00000000000001" x2="120.00000000000001" y1="70.0" y2="0.0"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="190.00000000000003" x2="120.00000000000001" y1="70.00000000000001" y2="70.0"/>
+  <line stroke="#000000" x1="96.66666666666666" x2="120.00000000000001" y1="70.0" y2="70.0"/>
+  <line stroke="#000000" x1="96.66666666666669" x2="96.66666666666666" y1="0.0" y2="70.0"/>
+  <line stroke="#000000" x1="120.00000000000003" x2="96.66666666666669" y1="0.0" y2="0.0"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="120.0" x2="190.00000000000003" y1="298.00000000000006" y2="298.00000000000006"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="119.99999999999999" x2="190.00000000000003" y1="368.00000000000006" y2="298.00000000000006"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="119.99999999999999" x2="120.0" y1="368.00000000000006" y2="298.00000000000006"/>
+  <line stroke="#000000" x1="119.99999999999999" x2="190.0" y1="368.00000000000006" y2="368.00000000000006"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="190.0" x2="190.00000000000003" y1="368.00000000000006" y2="298.00000000000006"/>
+  <line stroke="#000000" x1="259.99999999999994" x2="235.0" y1="368.00000000000006" y2="368.00000000000006"/>
+  <line stroke="#000000" x1="190.0" x2="259.99999999999994" y1="368.00000000000006" y2="368.00000000000006"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="190.00000000000003" x2="235.00000000000003" y1="298.00000000000006" y2="298.00000000000006"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="235.00000000000003" x2="280.00000000000006" y1="298.00000000000006" y2="298.00000000000006"/>
+  <line stroke="#000000" x1="210.00000000000003" x2="280.00000000000006" y1="368.00000000000006" y2="368.00000000000006"/>
+  <line stroke="#000000" x1="235.0" x2="210.00000000000003" y1="368.00000000000006" y2="368.00000000000006"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="280.00000000000006" x2="280.00000000000006" y1="298.00000000000006" y2="368.00000000000006"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="280.00000000000006" x2="350.0" y1="298.00000000000006" y2="368.00000000000006"/>
+  <line stroke="#000000" x1="280.00000000000006" x2="350.0" y1="368.00000000000006" y2="368.00000000000006"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="350.0" x2="350.0" y1="298.0000000000001" y2="368.00000000000006"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="280.00000000000006" x2="350.0" y1="298.00000000000006" y2="298.0000000000001"/>
+  <line stroke="#000000" x1="373.3333333333333" x2="350.0" y1="298.0000000000001" y2="298.0000000000001"/>
+  <line stroke="#000000" x1="373.33333333333326" x2="373.3333333333333" y1="368.00000000000006" y2="298.0000000000001"/>
+  <line stroke="#000000" x1="349.99999999999994" x2="373.33333333333326" y1="368.00000000000006" y2="368.00000000000006"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="350.00000000000006" x2="280.0000000000001" y1="70.0" y2="69.99999999999997"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="350.00000000000006" x2="280.0000000000001" y1="-2.8421709430404014e-14" y2="69.99999999999996"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="350.00000000000006" x2="350.00000000000006" y1="-2.8421709430404014e-14" y2="69.99999999999999"/>
+  <line stroke="#000000" x1="350.00000000000006" x2="280.00000000000017" y1="-2.8421709430404014e-14" y2="-5.684341886080803e-14"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="280.00000000000017" x2="280.0000000000001" y1="-5.684341886080803e-14" y2="69.99999999999997"/>
+  <line stroke="#000000" x1="210.0000000000001" x2="235.00000000000009" y1="-1.1368683772161605e-13" y2="-8.526512829121203e-14"/>
+  <line stroke="#000000" x1="280.0000000000001" x2="210.0000000000001" y1="-5.684341886080803e-14" y2="-1.1368683772161605e-13"/>
+  <line stroke="#000000" x1="373.33333333333337" x2="350.00000000000006" y1="0.0" y2="0.0"/>
+  <line stroke="#000000" x1="373.33333333333337" x2="373.33333333333337" y1="70.00000000000003" y2="0.0"/>
+  <line stroke="#000000" x1="350.00000000000006" x2="373.33333333333337" y1="70.00000000000001" y2="70.00000000000003"/>
+  <line stroke="#000000" x1="350.0" x2="350.0" y1="298.0000000000001" y2="298.0000000000001"/>
+  <line stroke="#000000" x1="350.00000000000006" x2="350.00000000000006" y1="70.0" y2="70.0"/>
+  <line stroke="#000000" x1="350.0" x2="350.00000000000006" y1="131.0" y2="70.0"/>
+  <line stroke="#000000" x1="350.0" x2="350.0" y1="141.0" y2="131.0"/>
+  <line stroke="#000000" x1="350.0" x2="350.0" y1="238.00000000000003" y2="165.00000000000003"/>
+  <line stroke="#000000" x1="350.0" x2="350.0" y1="238.00000000000003" y2="238.00000000000003"/>
+  <line stroke="#000000" x1="350.00000000000006" x2="350.00000000000006" y1="70.0" y2="70.0"/>
+  <line stroke="#000000" x1="384.00000000000006" x2="350.0" y1="141.0" y2="141.0"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="350.0" x2="384.00000000000006" y1="165.00000000000003" y2="165.00000000000006"/>
+  <line stroke="#000000" x1="420.00000000000006" x2="384.00000000000006" y1="141.00000000000003" y2="141.0"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="420.00000000000006" x2="420.00000000000006" y1="141.00000000000003" y2="165.00000000000006"/>
+  <line stroke="#000000" x1="384.00000000000006" x2="420.00000000000006" y1="165.00000000000006" y2="165.00000000000006"/>
+  <line stroke="#000000" x1="420.00000000000006" x2="465.00000000000006" y1="165.00000000000006" y2="165.00000000000009"/>
+  <line stroke="#000000" x1="465.00000000000006" x2="420.00000000000006" y1="141.00000000000006" y2="141.00000000000003"/>
+  <line stroke="#000000" x1="465.00000000000006" x2="465.00000000000006" y1="165.00000000000009" y2="141.00000000000006"/>
+  <line stroke="#000000" x1="350.0" x2="350.0" y1="165.00000000000003" y2="185.00000000000003"/>
+  <line stroke="#000000" x1="384.00000000000006" x2="384.00000000000006" y1="185.00000000000006" y2="165.00000000000006"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="350.0" x2="384.00000000000006" y1="185.00000000000003" y2="185.00000000000006"/>
+  <line stroke="#000000" x1="350.0" x2="350.0" y1="185.00000000000003" y2="209.00000000000003"/>
+  <line stroke="#000000" x1="384.00000000000006" x2="384.00000000000006" y1="209.00000000000006" y2="185.00000000000006"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="350.0" x2="384.00000000000006" y1="209.00000000000003" y2="209.00000000000006"/>
+  <line stroke="#000000" x1="350.0" x2="350.0" y1="209.00000000000006" y2="229.00000000000006"/>
+  <line stroke="#000000" x1="384.00000000000006" x2="384.00000000000006" y1="229.00000000000006" y2="209.00000000000006"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="384.00000000000006" x2="350.0" y1="229.00000000000006" y2="229.00000000000006"/>
+  <line stroke="#000000" x1="384.00000000000006" x2="384.00000000000006" y1="239.00000000000006" y2="229.00000000000006"/>
+  <line stroke="#000000" x1="350.0" x2="384.00000000000006" y1="239.00000000000006" y2="239.00000000000006"/>
+  <line stroke="#000000" x1="350.0" x2="350.0" y1="229.00000000000006" y2="239.00000000000006"/>
+  <line stroke="#000000" x1="350.0" x2="411.65427803486153" y1="298.00000000000006" y2="298.0000000000001"/>
+  <line stroke="#000000" x1="411.65427803486153" x2="350.0" y1="238.00000000000009" y2="238.00000000000003"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="411.65427803486153" x2="411.65427803486153" y1="238.00000000000009" y2="298.0000000000001"/>
+  <line stroke="#000000" x1="438.65427803486153" x2="411.65427803486153" y1="238.00000000000009" y2="238.00000000000009"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="438.65427803486153" x2="438.65427803486153" y1="298.0000000000001" y2="238.00000000000009"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="411.65427803486153" x2="438.65427803486153" y1="298.0000000000001" y2="298.0000000000001"/>
+  <line stroke="#000000" x1="500.30855606972295" x2="438.65427803486153" y1="238.0000000000001" y2="238.00000000000009"/>
+  <line stroke="#000000" x1="500.30855606972295" x2="500.30855606972295" y1="298.00000000000017" y2="238.0000000000001"/>
+  <line stroke="#000000" x1="438.6542780348615" x2="500.30855606972295" y1="298.0000000000001" y2="298.00000000000017"/>
+  <line stroke="#000000" x1="411.6542780348615" x2="411.6542780348615" y1="298.0000000000001" y2="315.0000000000001"/>
+  <line stroke="#000000" x1="438.6542780348615" x2="438.6542780348615" y1="315.00000000000017" y2="298.0000000000001"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="411.6542780348615" x2="438.6542780348615" y1="315.0000000000001" y2="315.00000000000017"/>
+  <line stroke="#000000" x1="411.6542780348615" x2="411.6542780348615" y1="315.0000000000001" y2="375.00000000000017"/>
+  <line stroke="#000000" x1="438.6542780348615" x2="438.6542780348615" y1="375.00000000000017" y2="315.00000000000017"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="411.6542780348615" x2="438.6542780348615" y1="375.00000000000017" y2="375.00000000000017"/>
+  <line stroke="#000000" x1="411.6542780348614" x2="411.6542780348614" y1="375.00000000000017" y2="392.00000000000017"/>
+  <line stroke="#000000" x1="438.65427803486136" x2="438.65427803486136" y1="392.00000000000017" y2="375.00000000000017"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="438.65427803486136" x2="411.6542780348614" y1="392.00000000000017" y2="392.00000000000017"/>
+  <line stroke="#000000" x1="438.65427803486136" x2="438.65427803486136" y1="402.00000000000017" y2="392.00000000000017"/>
+  <line stroke="#000000" x1="411.6542780348614" x2="438.65427803486136" y1="402.00000000000017" y2="402.00000000000017"/>
+  <line stroke="#000000" x1="411.6542780348614" x2="411.6542780348614" y1="392.00000000000017" y2="402.00000000000017"/>
+  <line stroke="#000000" x1="96.66666666666666" x2="120.0" y1="368.00000000000006" y2="368.00000000000006"/>
+  <line stroke="#000000" x1="96.66666666666666" x2="96.66666666666666" y1="298.00000000000006" y2="368.00000000000006"/>
+  <line stroke="#000000" x1="120.0" x2="96.66666666666666" y1="298.00000000000006" y2="298.00000000000006"/>
+  <line stroke="#000000" x1="120.00000000000001" x2="120.00000000000001" y1="70.00000000000001" y2="70.00000000000001"/>
+  <line stroke="#000000" x1="120.0" x2="120.0" y1="298.00000000000006" y2="298.00000000000006"/>
+  <line stroke="#000000" x1="110.0" x2="120.0" y1="298.00000000000006" y2="298.00000000000006"/>
+  <line stroke="#000000" x1="110.0" x2="110.0" y1="238.00000000000003" y2="298.00000000000006"/>
+  <line stroke="#000000" x1="120.0" x2="110.0" y1="238.00000000000003" y2="238.00000000000003"/>
+  <line stroke="#000000" x1="120.0" x2="120.0" y1="165.00000000000003" y2="238.00000000000003"/>
+  <line stroke="#000000" x1="120.00000000000001" x2="120.0" y1="131.0" y2="141.0"/>
+  <line stroke="#000000" x1="120.00000000000001" x2="120.00000000000001" y1="70.00000000000001" y2="70.00000000000001"/>
+  <line stroke="#000000" x1="120.0" x2="120.0" y1="238.00000000000003" y2="238.00000000000003"/>
+  <line stroke="#000000" x1="120.00000000000001" x2="86.00000000000001" y1="141.0" y2="141.0"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="86.00000000000001" x2="120.00000000000001" y1="165.00000000000003" y2="165.00000000000003"/>
+  <line stroke="#000000" x1="50.0" x2="86.00000000000001" y1="165.00000000000003" y2="165.00000000000003"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="50.0" x2="50.0" y1="165.00000000000003" y2="141.0"/>
+  <line stroke="#000000" x1="86.00000000000001" x2="50.0" y1="141.0" y2="141.0"/>
+  <line stroke="#000000" x1="50.0" x2="5.000000000000001" y1="141.0" y2="141.0"/>
+  <line stroke="#000000" x1="5.000000000000001" x2="50.0" y1="165.00000000000003" y2="165.00000000000003"/>
+  <line stroke="#000000" x1="0.0" x2="5.000000000000001" y1="165.00000000000003" y2="165.00000000000003"/>
+  <line stroke="#000000" x1="0.0" x2="0.0" y1="141.0" y2="165.00000000000003"/>
+  <line stroke="#000000" x1="5.000000000000001" x2="0.0" y1="141.0" y2="141.0"/>
+  <line stroke="#000000" x1="86.00000000000001" x2="86.00000000000001" y1="165.00000000000003" y2="185.00000000000003"/>
+  <line stroke="#000000" x1="120.00000000000001" x2="120.00000000000001" y1="185.00000000000003" y2="165.00000000000003"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="86.00000000000001" x2="120.00000000000001" y1="185.00000000000003" y2="185.00000000000003"/>
+  <line stroke="#000000" x1="86.00000000000001" x2="86.00000000000001" y1="185.00000000000003" y2="209.00000000000003"/>
+  <line stroke="#000000" x1="120.00000000000001" x2="120.00000000000001" y1="209.00000000000003" y2="185.00000000000003"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="86.00000000000001" x2="120.00000000000001" y1="209.00000000000003" y2="209.00000000000003"/>
+  <line stroke="#000000" x1="86.00000000000001" x2="86.00000000000001" y1="209.00000000000003" y2="229.00000000000003"/>
+  <line stroke="#000000" x1="120.00000000000001" x2="120.00000000000001" y1="229.00000000000003" y2="209.00000000000003"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="120.00000000000001" x2="86.00000000000001" y1="229.00000000000003" y2="229.00000000000003"/>
+  <line stroke="#000000" x1="120.00000000000001" x2="120.00000000000001" y1="239.00000000000003" y2="229.00000000000003"/>
+  <line stroke="#000000" x1="86.00000000000001" x2="120.00000000000001" y1="239.00000000000003" y2="239.00000000000003"/>
+  <line stroke="#000000" x1="86.00000000000001" x2="86.00000000000001" y1="229.00000000000003" y2="239.00000000000003"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="83.86137800081468" x2="83.86137800081468" y1="131.0" y2="70.00000000000001"/>
+  <line stroke="#000000" x1="120.00000000000001" x2="83.86137800081468" y1="70.00000000000001" y2="70.00000000000001"/>
+  <line stroke="#000000" x1="83.86137800081468" x2="120.0" y1="131.0" y2="131.0"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="59.86137800081469" x2="59.86137800081469" y1="70.00000000000001" y2="131.0"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="59.86137800081469" x2="83.86137800081468" y1="70.00000000000001" y2="70.00000000000001"/>
+  <line stroke="#000000" x1="23.722756001629364" x2="59.86137800081469" y1="131.0" y2="131.0"/>
+  <line stroke="#000000" x1="59.86137800081469" x2="23.722756001629364" y1="70.0" y2="70.0"/>
+  <line stroke="#000000" x1="13.722756001629365" x2="23.722756001629364" y1="131.0" y2="131.0"/>
+  <line stroke="#000000" x1="13.722756001629365" x2="13.722756001629365" y1="70.0" y2="131.0"/>
+  <line stroke="#000000" x1="23.722756001629364" x2="13.722756001629365" y1="70.0" y2="70.0"/>
+  <line stroke="#000000" x1="59.86137800081469" x2="59.86137800081469" y1="60.00000000000001" y2="70.00000000000001"/>
+  <line stroke="#000000" x1="83.86137800081468" x2="59.86137800081469" y1="60.00000000000001" y2="60.00000000000001"/>
+  <line stroke="#000000" x1="83.86137800081468" x2="83.86137800081468" y1="70.00000000000001" y2="60.00000000000001"/>
+  <line stroke="#000000" x1="83.86137800081468" x2="83.86137800081468" y1="141.0" y2="131.0"/>
+  <line stroke="#000000" x1="59.86137800081469" x2="83.86137800081468" y1="141.0" y2="141.0"/>
+  <line stroke="#000000" x1="59.86137800081469" x2="59.86137800081469" y1="131.0" y2="141.0"/>
+  <line stroke="#888888" x1="236.91666666666669" x2="213.08333333333334" y1="17.74999999999997" y2="17.74999999999997"/>
+  <line stroke="#888888" x1="213.08333333333334" x2="213.08333333333334" y1="17.74999999999997" y2="17.249999999999975"/>
+  <line stroke="#888888" x1="213.08333333333334" x2="236.91666666666669" y1="17.249999999999975" y2="17.249999999999975"/>
+  <line stroke="#888888" x1="236.91666666666669" x2="236.91666666666669" y1="17.249999999999975" y2="17.74999999999997"/>
+  <line stroke="#888888" x1="102.50000000000001" x2="114.1666666666667" y1="23.333333333333318" y2="23.333333333333318"/>
+  <line stroke="#888888" x1="114.1666666666667" x2="114.16666666666669" y1="23.333333333333318" y2="46.66666666666666"/>
+  <line stroke="#888888" x1="114.16666666666669" x2="102.50000000000004" y1="46.66666666666666" y2="46.66666666666666"/>
+  <line stroke="#888888" x1="213.08333333333334" x2="236.91666666666666" y1="350.25" y2="350.25"/>
+  <line stroke="#888888" x1="236.91666666666666" x2="236.91666666666666" y1="350.25" y2="350.75"/>
+  <line stroke="#888888" x1="236.91666666666666" x2="213.08333333333334" y1="350.75" y2="350.75"/>
+  <line stroke="#888888" x1="213.08333333333334" x2="213.08333333333334" y1="350.75" y2="350.25"/>
+  <line stroke="#888888" x1="233.08333333333334" x2="256.9166666666667" y1="350.25" y2="350.25"/>
+  <line stroke="#888888" x1="256.9166666666667" x2="256.9166666666667" y1="350.25" y2="350.75"/>
+  <line stroke="#888888" x1="256.9166666666667" x2="233.08333333333334" y1="350.75" y2="350.75"/>
+  <line stroke="#888888" x1="233.08333333333334" x2="233.08333333333334" y1="350.75" y2="350.25"/>
+  <line stroke="#888888" x1="367.5" x2="355.83333333333337" y1="344.6666666666668" y2="344.6666666666668"/>
+  <line stroke="#888888" x1="355.83333333333337" x2="355.83333333333337" y1="344.6666666666668" y2="321.3333333333334"/>
+  <line stroke="#888888" x1="355.83333333333337" x2="367.50000000000006" y1="321.3333333333334" y2="321.3333333333334"/>
+  <line stroke="#888888" x1="256.91666666666674" x2="233.08333333333343" y1="17.749999999999915" y2="17.74999999999989"/>
+  <line stroke="#888888" x1="233.08333333333343" x2="233.08333333333343" y1="17.74999999999989" y2="17.249999999999886"/>
+  <line stroke="#888888" x1="233.08333333333343" x2="256.91666666666674" y1="17.249999999999886" y2="17.24999999999992"/>
+  <line stroke="#888888" x1="256.91666666666674" x2="256.91666666666674" y1="17.24999999999992" y2="17.749999999999915"/>
+  <line stroke="#888888" x1="367.5000000000001" x2="355.8333333333334" y1="46.66666666666669" y2="46.66666666666666"/>
+  <line stroke="#888888" x1="355.8333333333334" x2="355.8333333333334" y1="46.66666666666666" y2="23.333333333333346"/>
+  <line stroke="#888888" x1="355.8333333333334" x2="367.50000000000006" y1="23.333333333333346" y2="23.333333333333346"/>
+  <line stroke="#888888" x1="342.2500000000001" x2="342.2500000000001" y1="92.43181818181819" y2="80.84090909090908"/>
+  <line stroke="#888888" x1="342.2500000000001" x2="342.7500000000001" y1="80.84090909090908" y2="80.84090909090908"/>
+  <line stroke="#888888" x1="342.7500000000001" x2="342.7500000000001" y1="80.84090909090908" y2="92.43181818181819"/>
+  <line stroke="#888888" x1="342.7500000000001" x2="342.2500000000001" y1="92.43181818181819" y2="92.43181818181819"/>
+  <line stroke="#888888" x1="342.25000000000006" x2="342.25000000000006" y1="120.15909090909092" y2="108.56818181818183"/>
+  <line stroke="#888888" x1="342.25000000000006" x2="342.75000000000006" y1="108.56818181818183" y2="108.56818181818183"/>
+  <line stroke="#888888" x1="342.75000000000006" x2="342.75000000000006" y1="108.56818181818183" y2="120.15909090909092"/>
+  <line stroke="#888888" x1="342.75000000000006" x2="342.25000000000006" y1="120.15909090909092" y2="120.15909090909092"/>
+  <line stroke="#888888" x1="372.9166666666667" x2="361.0833333333334" y1="148.75000000000003" y2="148.75000000000003"/>
+  <line stroke="#888888" x1="361.0833333333334" x2="361.0833333333334" y1="148.75000000000003" y2="148.25"/>
+  <line stroke="#888888" x1="361.0833333333334" x2="372.9166666666667" y1="148.25" y2="148.25"/>
+  <line stroke="#888888" x1="372.9166666666667" x2="372.9166666666667" y1="148.25" y2="148.75000000000003"/>
+  <line stroke="#888888" x1="461.00000000000006" x2="461.00000000000006" y1="157.25000000000009" y2="148.75000000000009"/>
+  <line stroke="#888888" x1="461.00000000000006" x2="461.50000000000006" y1="148.75000000000009" y2="148.75000000000009"/>
+  <line stroke="#888888" x1="461.50000000000006" x2="461.50000000000006" y1="148.75000000000009" y2="157.25000000000009"/>
+  <line stroke="#888888" x1="461.50000000000006" x2="461.00000000000006" y1="157.25000000000009" y2="157.25000000000009"/>
+  <line stroke="#888888" x1="361.00000000000006" x2="361.00000000000006" y1="184.00000000000003" y2="180.00000000000006"/>
+  <line stroke="#888888" x1="361.00000000000006" x2="373.0" y1="180.00000000000006" y2="180.00000000000006"/>
+  <line stroke="#888888" x1="373.0" x2="373.0" y1="180.00000000000006" y2="184.00000000000003"/>
+  <line stroke="#888888" x1="373.0" x2="361.00000000000006" y1="184.00000000000003" y2="184.00000000000003"/>
+  <line stroke="#888888" x1="362.50000000000006" x2="362.50000000000006" y1="172.00000000000003" y2="168.0"/>
+  <line stroke="#888888" x1="362.50000000000006" x2="371.50000000000006" y1="168.0" y2="168.00000000000003"/>
+  <line stroke="#888888" x1="371.50000000000006" x2="371.50000000000006" y1="168.00000000000003" y2="172.00000000000006"/>
+  <line stroke="#888888" x1="371.50000000000006" x2="362.50000000000006" y1="172.00000000000006" y2="172.00000000000003"/>
+  <line stroke="#888888" x1="361.00000000000006" x2="361.00000000000006" y1="208.50000000000006" y2="185.50000000000006"/>
+  <line stroke="#888888" x1="361.00000000000006" x2="373.0" y1="185.50000000000006" y2="185.50000000000006"/>
+  <line stroke="#888888" x1="373.0" x2="373.0" y1="185.50000000000006" y2="208.50000000000006"/>
+  <line stroke="#888888" x1="373.0" x2="361.00000000000006" y1="208.50000000000006" y2="208.50000000000006"/>
+  <line stroke="#888888" x1="361.00000000000006" x2="361.00000000000006" y1="214.00000000000006" y2="210.00000000000006"/>
+  <line stroke="#888888" x1="361.00000000000006" x2="373.0" y1="210.00000000000006" y2="210.00000000000006"/>
+  <line stroke="#888888" x1="373.0" x2="373.0" y1="210.00000000000006" y2="214.00000000000006"/>
+  <line stroke="#888888" x1="373.0" x2="361.00000000000006" y1="214.00000000000006" y2="214.00000000000006"/>
+  <line stroke="#888888" x1="361.3333333333334" x2="361.3333333333334" y1="236.50000000000003" y2="231.50000000000006"/>
+  <line stroke="#888888" x1="361.3333333333334" x2="372.6666666666667" y1="231.50000000000006" y2="231.50000000000006"/>
+  <line stroke="#888888" x1="372.6666666666667" x2="372.6666666666667" y1="231.50000000000006" y2="236.50000000000003"/>
+  <line stroke="#888888" x1="416.15427803486153" x2="416.15427803486153" y1="297.5000000000001" y2="294.5000000000001"/>
+  <line stroke="#888888" x1="416.15427803486153" x2="434.15427803486153" y1="294.5000000000001" y2="294.5000000000001"/>
+  <line stroke="#888888" x1="434.15427803486153" x2="434.15427803486153" y1="294.5000000000001" y2="297.5000000000001"/>
+  <line stroke="#888888" x1="434.15427803486153" x2="416.15427803486153" y1="297.5000000000001" y2="297.5000000000001"/>
+  <line stroke="#888888" x1="429.90427803486153" x2="420.40427803486153" y1="245.75000000000009" y2="245.75000000000009"/>
+  <line stroke="#888888" x1="420.40427803486153" x2="420.40427803486153" y1="245.75000000000009" y2="245.25000000000009"/>
+  <line stroke="#888888" x1="420.40427803486153" x2="429.90427803486153" y1="245.25000000000009" y2="245.25000000000009"/>
+  <line stroke="#888888" x1="429.90427803486153" x2="429.90427803486153" y1="245.25000000000009" y2="245.75000000000009"/>
+  <line stroke="#888888" x1="492.55855606972295" x2="492.55855606972295" y1="278.25000000000017" y2="257.75000000000017"/>
+  <line stroke="#888888" x1="492.55855606972295" x2="493.05855606972295" y1="257.75000000000017" y2="257.75000000000017"/>
+  <line stroke="#888888" x1="493.05855606972295" x2="493.05855606972295" y1="257.75000000000017" y2="278.25000000000017"/>
+  <line stroke="#888888" x1="493.05855606972295" x2="492.55855606972295" y1="278.25000000000017" y2="278.25000000000017"/>
+  <line stroke="#888888" x1="416.1542780348615" x2="416.1542780348615" y1="301.0000000000001" y2="298.0000000000001"/>
+  <line stroke="#888888" x1="416.1542780348615" x2="434.1542780348615" y1="298.0000000000001" y2="298.0000000000001"/>
+  <line stroke="#888888" x1="434.1542780348615" x2="434.1542780348615" y1="298.0000000000001" y2="301.0000000000001"/>
+  <line stroke="#888888" x1="434.1542780348615" x2="416.1542780348615" y1="301.0000000000001" y2="301.0000000000001"/>
+  <line stroke="#888888" x1="420.6542780348614" x2="420.6542780348614" y1="399.5000000000001" y2="394.50000000000017"/>
+  <line stroke="#888888" x1="420.6542780348614" x2="429.65427803486136" y1="394.50000000000017" y2="394.50000000000017"/>
+  <line stroke="#888888" x1="429.65427803486136" x2="429.65427803486136" y1="394.50000000000017" y2="399.5000000000001"/>
+  <line stroke="#888888" x1="102.50000000000001" x2="114.16666666666667" y1="321.33333333333337" y2="321.33333333333337"/>
+  <line stroke="#888888" x1="114.16666666666667" x2="114.16666666666667" y1="321.33333333333337" y2="344.6666666666667"/>
+  <line stroke="#888888" x1="114.16666666666667" x2="102.50000000000001" y1="344.6666666666667" y2="344.6666666666667"/>
+  <line stroke="#888888" x1="112.5" x2="112.5" y1="258.0" y2="253.00000000000003"/>
+  <line stroke="#888888" x1="112.5" x2="117.5" y1="253.00000000000003" y2="258.0"/>
+  <line stroke="#888888" x1="117.5" x2="117.5" y1="258.0" y2="278.0"/>
+  <line stroke="#888888" x1="117.5" x2="112.5" y1="278.0" y2="283.0"/>
+  <line stroke="#888888" x1="112.5" x2="112.5" y1="283.0" y2="278.0"/>
+  <line stroke="#888888" x1="108.91666666666669" x2="97.08333333333336" y1="148.75000000000003" y2="148.75000000000003"/>
+  <line stroke="#888888" x1="97.08333333333336" x2="97.08333333333336" y1="148.75000000000003" y2="148.25"/>
+  <line stroke="#888888" x1="97.08333333333336" x2="108.91666666666669" y1="148.25" y2="148.25"/>
+  <line stroke="#888888" x1="108.91666666666669" x2="108.91666666666669" y1="148.25" y2="148.75000000000003"/>
+  <line stroke="#888888" x1="1.2500000000000002" x2="1.2500000000000002" y1="149.00000000000003" y2="146.50000000000003"/>
+  <line stroke="#888888" x1="1.2500000000000002" x2="3.7500000000000004" y1="146.50000000000003" y2="149.00000000000003"/>
+  <line stroke="#888888" x1="3.7500000000000004" x2="3.7500000000000004" y1="149.00000000000003" y2="157.0"/>
+  <line stroke="#888888" x1="3.7500000000000004" x2="1.2500000000000002" y1="157.0" y2="159.5"/>
+  <line stroke="#888888" x1="1.2500000000000002" x2="1.2500000000000002" y1="159.5" y2="157.0"/>
+  <line stroke="#888888" x1="97.00000000000001" x2="97.00000000000001" y1="184.00000000000003" y2="180.0"/>
+  <line stroke="#888888" x1="97.00000000000001" x2="109.00000000000001" y1="180.0" y2="180.0"/>
+  <line stroke="#888888" x1="109.00000000000001" x2="109.00000000000001" y1="180.0" y2="184.00000000000003"/>
+  <line stroke="#888888" x1="109.00000000000001" x2="97.00000000000001" y1="184.00000000000003" y2="184.00000000000003"/>
+  <line stroke="#888888" x1="98.50000000000001" x2="98.50000000000001" y1="172.00000000000003" y2="168.0"/>
+  <line stroke="#888888" x1="98.50000000000001" x2="107.50000000000001" y1="168.0" y2="168.0"/>
+  <line stroke="#888888" x1="107.50000000000001" x2="107.50000000000001" y1="168.0" y2="172.00000000000003"/>
+  <line stroke="#888888" x1="107.50000000000001" x2="98.50000000000001" y1="172.00000000000003" y2="172.00000000000003"/>
+  <line stroke="#888888" x1="97.00000000000001" x2="97.00000000000001" y1="208.50000000000003" y2="185.50000000000003"/>
+  <line stroke="#888888" x1="97.00000000000001" x2="109.00000000000001" y1="185.50000000000003" y2="185.50000000000003"/>
+  <line stroke="#888888" x1="109.00000000000001" x2="109.00000000000001" y1="185.50000000000003" y2="208.50000000000003"/>
+  <line stroke="#888888" x1="109.00000000000001" x2="97.00000000000001" y1="208.50000000000003" y2="208.50000000000003"/>
+  <line stroke="#888888" x1="97.00000000000001" x2="97.00000000000001" y1="214.0" y2="210.00000000000003"/>
+  <line stroke="#888888" x1="97.00000000000001" x2="109.00000000000001" y1="210.00000000000003" y2="210.00000000000003"/>
+  <line stroke="#888888" x1="109.00000000000001" x2="109.00000000000001" y1="210.00000000000003" y2="214.0"/>
+  <line stroke="#888888" x1="109.00000000000001" x2="97.00000000000001" y1="214.0" y2="214.0"/>
+  <line stroke="#888888" x1="97.33333333333336" x2="97.33333333333336" y1="236.50000000000003" y2="231.50000000000003"/>
+  <line stroke="#888888" x1="97.33333333333336" x2="108.66666666666669" y1="231.50000000000003" y2="231.50000000000003"/>
+  <line stroke="#888888" x1="108.66666666666669" x2="108.66666666666669" y1="231.50000000000003" y2="236.50000000000003"/>
+  <line stroke="#888888" x1="65.36137800081468" x2="65.36137800081468" y1="113.00000000000001" y2="102.00000000000001"/>
+  <line stroke="#888888" x1="65.36137800081468" x2="78.36137800081468" y1="102.00000000000001" y2="102.00000000000001"/>
+  <line stroke="#888888" x1="78.36137800081468" x2="78.36137800081468" y1="102.00000000000001" y2="113.00000000000001"/>
+  <line stroke="#888888" x1="78.36137800081468" x2="65.36137800081468" y1="113.00000000000001" y2="113.00000000000001"/>
+  <line stroke="#888888" x1="66.8613780008147" x2="66.8613780008147" y1="81.50000000000001" y2="75.50000000000001"/>
+  <line stroke="#888888" x1="66.8613780008147" x2="76.8613780008147" y1="75.50000000000001" y2="75.50000000000001"/>
+  <line stroke="#888888" x1="76.8613780008147" x2="76.8613780008147" y1="75.50000000000001" y2="81.50000000000001"/>
+  <line stroke="#888888" x1="76.8613780008147" x2="66.8613780008147" y1="81.50000000000001" y2="81.50000000000001"/>
+  <line stroke="#888888" x1="16.222756001629364" x2="21.222756001629367" y1="81.0909090909091" y2="81.0909090909091"/>
+  <line stroke="#888888" x1="21.222756001629367" x2="21.222756001629367" y1="81.0909090909091" y2="92.18181818181819"/>
+  <line stroke="#888888" x1="21.222756001629367" x2="16.222756001629364" y1="92.18181818181819" y2="92.18181818181819"/>
+  <line stroke="#888888" x1="16.222756001629364" x2="21.222756001629367" y1="108.81818181818183" y2="108.81818181818183"/>
+  <line stroke="#888888" x1="21.222756001629367" x2="21.222756001629367" y1="108.81818181818183" y2="119.90909090909092"/>
+  <line stroke="#888888" x1="21.222756001629367" x2="16.222756001629364" y1="119.90909090909092" y2="119.90909090909092"/>
+  <line stroke="#888888" x1="75.86137800081468" x2="75.86137800081468" y1="62.50000000000001" y2="67.50000000000001"/>
+  <line stroke="#888888" x1="75.86137800081468" x2="67.86137800081468" y1="67.50000000000001" y2="67.50000000000001"/>
+  <line stroke="#888888" x1="67.86137800081468" x2="67.86137800081468" y1="67.50000000000001" y2="62.50000000000001"/>
+  <line stroke="#888888" x1="67.86137800081468" x2="67.86137800081468" y1="138.5" y2="133.5"/>
+  <line stroke="#888888" x1="67.86137800081468" x2="75.86137800081468" y1="133.5" y2="133.5"/>
+  <line stroke="#888888" x1="75.86137800081468" x2="75.86137800081468" y1="133.5" y2="138.5"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="543.3085560697231" x2="604.308556069723" y1="172.00000000000003" y2="172.00000000000003"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="604.308556069723" x2="604.308556069723" y1="172.00000000000003" y2="196.00000000000003"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="604.308556069723" x2="543.3085560697231" y1="196.00000000000003" y2="196.00000000000003"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="543.3085560697231" x2="543.3085560697231" y1="196.00000000000003" y2="172.00000000000003"/>
+  <line stroke="#000000" x1="543.3085560697231" x2="543.3085560697231" y1="165.00000000000003" y2="172.00000000000003"/>
+  <line stroke="#000000" x1="603.308556069723" x2="543.3085560697231" y1="165.00000000000003" y2="165.00000000000003"/>
+  <line stroke="#000000" x1="603.308556069723" x2="603.308556069723" y1="172.00000000000003" y2="165.00000000000003"/>
+  <line stroke="#000000" x1="611.308556069723" x2="604.308556069723" y1="172.00000000000003" y2="172.00000000000003"/>
+  <line stroke="#000000" x1="611.308556069723" x2="611.308556069723" y1="196.00000000000003" y2="172.00000000000003"/>
+  <line stroke="#000000" x1="604.308556069723" x2="611.308556069723" y1="196.00000000000003" y2="196.00000000000003"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="604.308556069723" x2="604.308556069723" y1="196.00000000000003" y2="257.00000000000006"/>
+  <line stroke="#000000" x1="544.3085560697231" x2="604.308556069723" y1="257.00000000000006" y2="257.00000000000006"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="544.3085560697231" x2="544.3085560697231" y1="196.00000000000003" y2="257.00000000000006"/>
+  <line stroke="#000000" x1="628.3085560697231" x2="604.308556069723" y1="196.00000000000003" y2="196.00000000000003"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="628.3085560697231" x2="628.3085560697231" y1="196.00000000000003" y2="257.00000000000006"/>
+  <line stroke="#000000" x1="604.308556069723" x2="628.3085560697231" y1="257.00000000000006" y2="257.00000000000006"/>
+  <line stroke="#000000" x1="688.3085560697231" x2="628.3085560697231" y1="196.00000000000003" y2="196.00000000000003"/>
+  <line stroke="#000000" x1="688.3085560697231" x2="688.3085560697231" y1="257.00000000000006" y2="196.00000000000003"/>
+  <line stroke="#000000" x1="628.3085560697231" x2="688.3085560697231" y1="257.00000000000006" y2="257.00000000000006"/>
+  <line stroke="#000000" x1="544.3085560697231" x2="520.3085560697231" y1="196.00000000000003" y2="196.00000000000003"/>
+  <line stroke="#000000" x1="520.3085560697231" x2="544.3085560697231" y1="257.00000000000006" y2="257.00000000000006"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="520.3085560697231" x2="520.3085560697231" y1="257.00000000000006" y2="196.00000000000003"/>
+  <line stroke="#000000" x1="510.308556069723" x2="520.3085560697231" y1="257.00000000000006" y2="257.00000000000006"/>
+  <line stroke="#000000" x1="510.308556069723" x2="510.308556069723" y1="196.00000000000003" y2="257.00000000000006"/>
+  <line stroke="#000000" x1="520.3085560697231" x2="510.308556069723" y1="196.00000000000003" y2="196.00000000000003"/>
+  <line stroke="#000000" x1="536.308556069723" x2="543.3085560697231" y1="196.00000000000003" y2="196.00000000000003"/>
+  <line stroke="#000000" x1="536.308556069723" x2="536.308556069723" y1="172.00000000000003" y2="196.00000000000003"/>
+  <line stroke="#000000" x1="543.3085560697231" x2="536.308556069723" y1="172.00000000000003" y2="172.00000000000003"/>
+  <line stroke="#888888" x1="592.3994651606322" x2="595.8994651606321" y1="166.75000000000003" y2="166.75000000000003"/>
+  <line stroke="#888888" x1="595.8994651606321" x2="592.3994651606322" y1="166.75000000000003" y2="170.25000000000003"/>
+  <line stroke="#888888" x1="592.3994651606322" x2="581.4903742515411" y1="170.25000000000003" y2="170.25000000000003"/>
+  <line stroke="#888888" x1="581.4903742515411" x2="577.9903742515413" y1="170.25000000000003" y2="166.75000000000003"/>
+  <line stroke="#888888" x1="577.9903742515413" x2="581.4903742515411" y1="166.75000000000003" y2="166.75000000000003"/>
+  <line stroke="#888888" x1="565.1267378879049" x2="568.6267378879048" y1="166.75000000000003" y2="166.75000000000003"/>
+  <line stroke="#888888" x1="568.6267378879048" x2="565.1267378879049" y1="166.75000000000003" y2="170.25000000000003"/>
+  <line stroke="#888888" x1="565.1267378879049" x2="554.2176469788138" y1="170.25000000000003" y2="170.25000000000003"/>
+  <line stroke="#888888" x1="554.2176469788138" x2="550.717646978814" y1="170.25000000000003" y2="166.75000000000003"/>
+  <line stroke="#888888" x1="550.717646978814" x2="554.2176469788138" y1="166.75000000000003" y2="166.75000000000003"/>
+  <line stroke="#888888" x1="609.5585560697231" x2="606.058556069723" y1="188.00000000000003" y2="188.00000000000003"/>
+  <line stroke="#888888" x1="606.058556069723" x2="606.058556069723" y1="188.00000000000003" y2="180.0"/>
+  <line stroke="#888888" x1="606.058556069723" x2="609.5585560697231" y1="180.0" y2="180.0"/>
+  <line stroke="#888888" x1="551.8085560697231" x2="551.8085560697231" y1="247.50000000000003" y2="229.50000000000003"/>
+  <line stroke="#888888" x1="551.8085560697231" x2="586.8085560697231" y1="229.50000000000003" y2="229.50000000000003"/>
+  <line stroke="#888888" x1="586.8085560697231" x2="586.8085560697231" y1="229.50000000000003" y2="247.50000000000003"/>
+  <line stroke="#888888" x1="586.8085560697231" x2="551.8085560697231" y1="247.50000000000003" y2="247.50000000000003"/>
+  <line stroke="#888888" x1="604.8085560697231" x2="604.8085560697231" y1="209.25" y2="206.25000000000003"/>
+  <line stroke="#888888" x1="604.8085560697231" x2="607.8085560697231" y1="206.25000000000003" y2="206.25000000000003"/>
+  <line stroke="#888888" x1="607.8085560697231" x2="607.8085560697231" y1="206.25000000000003" y2="209.25"/>
+  <line stroke="#888888" x1="607.8085560697231" x2="604.8085560697231" y1="209.25" y2="209.25"/>
+  <line stroke="#888888" x1="625.8085560697231" x2="625.8085560697231" y1="208.25000000000003" y2="207.25000000000003"/>
+  <line stroke="#888888" x1="625.8085560697231" x2="626.8085560697231" y1="207.25000000000003" y2="207.25000000000003"/>
+  <line stroke="#888888" x1="626.8085560697231" x2="626.8085560697231" y1="207.25000000000003" y2="208.25000000000003"/>
+  <line stroke="#888888" x1="626.8085560697231" x2="625.8085560697231" y1="208.25000000000003" y2="208.25000000000003"/>
+  <line stroke="#888888" x1="605.8085560697231" x2="605.8085560697231" y1="210.75000000000003" y2="209.75000000000003"/>
+  <line stroke="#888888" x1="605.8085560697231" x2="606.8085560697231" y1="209.75000000000003" y2="209.75000000000003"/>
+  <line stroke="#888888" x1="606.8085560697231" x2="606.8085560697231" y1="209.75000000000003" y2="210.75000000000003"/>
+  <line stroke="#888888" x1="606.8085560697231" x2="605.8085560697231" y1="210.75000000000003" y2="210.75000000000003"/>
+  <line stroke="#888888" x1="625.8085560697231" x2="625.8085560697231" y1="210.75000000000003" y2="209.75000000000003"/>
+  <line stroke="#888888" x1="625.8085560697231" x2="626.8085560697231" y1="209.75000000000003" y2="209.75000000000003"/>
+  <line stroke="#888888" x1="626.8085560697231" x2="626.8085560697231" y1="209.75000000000003" y2="210.75000000000003"/>
+  <line stroke="#888888" x1="626.8085560697231" x2="625.8085560697231" y1="210.75000000000003" y2="210.75000000000003"/>
+  <line stroke="#888888" x1="605.8085560697231" x2="605.8085560697231" y1="213.25000000000003" y2="212.25000000000003"/>
+  <line stroke="#888888" x1="605.8085560697231" x2="606.8085560697231" y1="212.25000000000003" y2="212.25000000000003"/>
+  <line stroke="#888888" x1="606.8085560697231" x2="606.8085560697231" y1="212.25000000000003" y2="213.25000000000003"/>
+  <line stroke="#888888" x1="606.8085560697231" x2="605.8085560697231" y1="213.25000000000003" y2="213.25000000000003"/>
+  <line stroke="#888888" x1="625.8085560697231" x2="625.8085560697231" y1="213.25000000000003" y2="212.25000000000003"/>
+  <line stroke="#888888" x1="625.8085560697231" x2="626.8085560697231" y1="212.25000000000003" y2="212.25000000000003"/>
+  <line stroke="#888888" x1="626.8085560697231" x2="626.8085560697231" y1="212.25000000000003" y2="213.25000000000003"/>
+  <line stroke="#888888" x1="626.8085560697231" x2="625.8085560697231" y1="213.25000000000003" y2="213.25000000000003"/>
+  <line stroke="#888888" x1="605.8085560697231" x2="605.8085560697231" y1="215.75000000000003" y2="214.75000000000003"/>
+  <line stroke="#888888" x1="605.8085560697231" x2="606.8085560697231" y1="214.75000000000003" y2="214.75000000000003"/>
+  <line stroke="#888888" x1="606.8085560697231" x2="606.8085560697231" y1="214.75000000000003" y2="215.75000000000003"/>
+  <line stroke="#888888" x1="606.8085560697231" x2="605.8085560697231" y1="215.75000000000003" y2="215.75000000000003"/>
+  <line stroke="#888888" x1="625.8085560697231" x2="625.8085560697231" y1="215.75000000000003" y2="214.75000000000003"/>
+  <line stroke="#888888" x1="625.8085560697231" x2="626.8085560697231" y1="214.75000000000003" y2="214.75000000000003"/>
+  <line stroke="#888888" x1="626.8085560697231" x2="626.8085560697231" y1="214.75000000000003" y2="215.75000000000003"/>
+  <line stroke="#888888" x1="626.8085560697231" x2="625.8085560697231" y1="215.75000000000003" y2="215.75000000000003"/>
+  <line stroke="#888888" x1="605.8085560697231" x2="605.8085560697231" y1="218.25000000000003" y2="217.25000000000003"/>
+  <line stroke="#888888" x1="605.8085560697231" x2="606.8085560697231" y1="217.25000000000003" y2="217.25000000000003"/>
+  <line stroke="#888888" x1="606.8085560697231" x2="606.8085560697231" y1="217.25000000000003" y2="218.25000000000003"/>
+  <line stroke="#888888" x1="606.8085560697231" x2="605.8085560697231" y1="218.25000000000003" y2="218.25000000000003"/>
+  <line stroke="#888888" x1="625.8085560697231" x2="625.8085560697231" y1="218.25000000000003" y2="217.25000000000003"/>
+  <line stroke="#888888" x1="625.8085560697231" x2="626.8085560697231" y1="217.25000000000003" y2="217.25000000000003"/>
+  <line stroke="#888888" x1="626.8085560697231" x2="626.8085560697231" y1="217.25000000000003" y2="218.25000000000003"/>
+  <line stroke="#888888" x1="626.8085560697231" x2="625.8085560697231" y1="218.25000000000003" y2="218.25000000000003"/>
+  <line stroke="#888888" x1="605.8085560697231" x2="605.8085560697231" y1="220.75" y2="219.75000000000003"/>
+  <line stroke="#888888" x1="605.8085560697231" x2="606.8085560697231" y1="219.75000000000003" y2="219.75000000000003"/>
+  <line stroke="#888888" x1="606.8085560697231" x2="606.8085560697231" y1="219.75000000000003" y2="220.75"/>
+  <line stroke="#888888" x1="606.8085560697231" x2="605.8085560697231" y1="220.75" y2="220.75"/>
+  <line stroke="#888888" x1="625.8085560697231" x2="625.8085560697231" y1="220.75" y2="219.75000000000003"/>
+  <line stroke="#888888" x1="625.8085560697231" x2="626.8085560697231" y1="219.75000000000003" y2="219.75000000000003"/>
+  <line stroke="#888888" x1="626.8085560697231" x2="626.8085560697231" y1="219.75000000000003" y2="220.75"/>
+  <line stroke="#888888" x1="626.8085560697231" x2="625.8085560697231" y1="220.75" y2="220.75"/>
+  <line stroke="#888888" x1="605.8085560697231" x2="605.8085560697231" y1="223.25000000000003" y2="222.25000000000003"/>
+  <line stroke="#888888" x1="605.8085560697231" x2="606.8085560697231" y1="222.25000000000003" y2="222.25000000000003"/>
+  <line stroke="#888888" x1="606.8085560697231" x2="606.8085560697231" y1="222.25000000000003" y2="223.25000000000003"/>
+  <line stroke="#888888" x1="606.8085560697231" x2="605.8085560697231" y1="223.25000000000003" y2="223.25000000000003"/>
+  <line stroke="#888888" x1="625.8085560697231" x2="625.8085560697231" y1="223.25000000000003" y2="222.25000000000003"/>
+  <line stroke="#888888" x1="625.8085560697231" x2="626.8085560697231" y1="222.25000000000003" y2="222.25000000000003"/>
+  <line stroke="#888888" x1="626.8085560697231" x2="626.8085560697231" y1="222.25000000000003" y2="223.25000000000003"/>
+  <line stroke="#888888" x1="626.8085560697231" x2="625.8085560697231" y1="223.25000000000003" y2="223.25000000000003"/>
+  <line stroke="#888888" x1="605.8085560697231" x2="605.8085560697231" y1="225.75000000000003" y2="224.75000000000003"/>
+  <line stroke="#888888" x1="605.8085560697231" x2="606.8085560697231" y1="224.75000000000003" y2="224.75000000000003"/>
+  <line stroke="#888888" x1="606.8085560697231" x2="606.8085560697231" y1="224.75000000000003" y2="225.75000000000003"/>
+  <line stroke="#888888" x1="606.8085560697231" x2="605.8085560697231" y1="225.75000000000003" y2="225.75000000000003"/>
+  <line stroke="#888888" x1="625.8085560697231" x2="625.8085560697231" y1="225.75000000000003" y2="224.75000000000003"/>
+  <line stroke="#888888" x1="625.8085560697231" x2="626.8085560697231" y1="224.75000000000003" y2="224.75000000000003"/>
+  <line stroke="#888888" x1="626.8085560697231" x2="626.8085560697231" y1="224.75000000000003" y2="225.75000000000003"/>
+  <line stroke="#888888" x1="626.8085560697231" x2="625.8085560697231" y1="225.75000000000003" y2="225.75000000000003"/>
+  <line stroke="#888888" x1="605.8085560697231" x2="605.8085560697231" y1="228.25000000000003" y2="227.25000000000003"/>
+  <line stroke="#888888" x1="605.8085560697231" x2="606.8085560697231" y1="227.25000000000003" y2="227.25000000000003"/>
+  <line stroke="#888888" x1="606.8085560697231" x2="606.8085560697231" y1="227.25000000000003" y2="228.25000000000003"/>
+  <line stroke="#888888" x1="606.8085560697231" x2="605.8085560697231" y1="228.25000000000003" y2="228.25000000000003"/>
+  <line stroke="#888888" x1="625.8085560697231" x2="625.8085560697231" y1="228.25000000000003" y2="227.25000000000003"/>
+  <line stroke="#888888" x1="625.8085560697231" x2="626.8085560697231" y1="227.25000000000003" y2="227.25000000000003"/>
+  <line stroke="#888888" x1="626.8085560697231" x2="626.8085560697231" y1="227.25000000000003" y2="228.25000000000003"/>
+  <line stroke="#888888" x1="626.8085560697231" x2="625.8085560697231" y1="228.25000000000003" y2="228.25000000000003"/>
+  <line stroke="#888888" x1="605.8085560697231" x2="605.8085560697231" y1="230.75000000000003" y2="229.75"/>
+  <line stroke="#888888" x1="605.8085560697231" x2="606.8085560697231" y1="229.75" y2="229.75"/>
+  <line stroke="#888888" x1="606.8085560697231" x2="606.8085560697231" y1="229.75" y2="230.75000000000003"/>
+  <line stroke="#888888" x1="606.8085560697231" x2="605.8085560697231" y1="230.75000000000003" y2="230.75000000000003"/>
+  <line stroke="#888888" x1="625.8085560697231" x2="625.8085560697231" y1="230.75000000000003" y2="229.75"/>
+  <line stroke="#888888" x1="625.8085560697231" x2="626.8085560697231" y1="229.75" y2="229.75"/>
+  <line stroke="#888888" x1="626.8085560697231" x2="626.8085560697231" y1="229.75" y2="230.75000000000003"/>
+  <line stroke="#888888" x1="626.8085560697231" x2="625.8085560697231" y1="230.75000000000003" y2="230.75000000000003"/>
+  <line stroke="#888888" x1="605.8085560697231" x2="605.8085560697231" y1="233.25000000000003" y2="232.25000000000003"/>
+  <line stroke="#888888" x1="605.8085560697231" x2="606.8085560697231" y1="232.25000000000003" y2="232.25000000000003"/>
+  <line stroke="#888888" x1="606.8085560697231" x2="606.8085560697231" y1="232.25000000000003" y2="233.25000000000003"/>
+  <line stroke="#888888" x1="606.8085560697231" x2="605.8085560697231" y1="233.25000000000003" y2="233.25000000000003"/>
+  <line stroke="#888888" x1="625.8085560697231" x2="625.8085560697231" y1="233.25000000000003" y2="232.25000000000003"/>
+  <line stroke="#888888" x1="625.8085560697231" x2="626.8085560697231" y1="232.25000000000003" y2="232.25000000000003"/>
+  <line stroke="#888888" x1="626.8085560697231" x2="626.8085560697231" y1="232.25000000000003" y2="233.25000000000003"/>
+  <line stroke="#888888" x1="626.8085560697231" x2="625.8085560697231" y1="233.25000000000003" y2="233.25000000000003"/>
+  <line stroke="#888888" x1="605.8085560697231" x2="605.8085560697231" y1="235.75000000000003" y2="234.75000000000003"/>
+  <line stroke="#888888" x1="605.8085560697231" x2="606.8085560697231" y1="234.75000000000003" y2="234.75000000000003"/>
+  <line stroke="#888888" x1="606.8085560697231" x2="606.8085560697231" y1="234.75000000000003" y2="235.75000000000003"/>
+  <line stroke="#888888" x1="606.8085560697231" x2="605.8085560697231" y1="235.75000000000003" y2="235.75000000000003"/>
+  <line stroke="#888888" x1="625.8085560697231" x2="625.8085560697231" y1="235.75000000000003" y2="234.75000000000003"/>
+  <line stroke="#888888" x1="625.8085560697231" x2="626.8085560697231" y1="234.75000000000003" y2="234.75000000000003"/>
+  <line stroke="#888888" x1="626.8085560697231" x2="626.8085560697231" y1="234.75000000000003" y2="235.75000000000003"/>
+  <line stroke="#888888" x1="626.8085560697231" x2="625.8085560697231" y1="235.75000000000003" y2="235.75000000000003"/>
+  <line stroke="#888888" x1="605.8085560697231" x2="605.8085560697231" y1="238.25000000000003" y2="237.25000000000003"/>
+  <line stroke="#888888" x1="605.8085560697231" x2="606.8085560697231" y1="237.25000000000003" y2="237.25000000000003"/>
+  <line stroke="#888888" x1="606.8085560697231" x2="606.8085560697231" y1="237.25000000000003" y2="238.25000000000003"/>
+  <line stroke="#888888" x1="606.8085560697231" x2="605.8085560697231" y1="238.25000000000003" y2="238.25000000000003"/>
+  <line stroke="#888888" x1="625.8085560697231" x2="625.8085560697231" y1="238.25000000000003" y2="237.25000000000003"/>
+  <line stroke="#888888" x1="625.8085560697231" x2="626.8085560697231" y1="237.25000000000003" y2="237.25000000000003"/>
+  <line stroke="#888888" x1="626.8085560697231" x2="626.8085560697231" y1="237.25000000000003" y2="238.25000000000003"/>
+  <line stroke="#888888" x1="626.8085560697231" x2="625.8085560697231" y1="238.25000000000003" y2="238.25000000000003"/>
+  <line stroke="#888888" x1="605.8085560697231" x2="605.8085560697231" y1="240.75000000000003" y2="239.75000000000003"/>
+  <line stroke="#888888" x1="605.8085560697231" x2="606.8085560697231" y1="239.75000000000003" y2="239.75000000000003"/>
+  <line stroke="#888888" x1="606.8085560697231" x2="606.8085560697231" y1="239.75000000000003" y2="240.75000000000003"/>
+  <line stroke="#888888" x1="606.8085560697231" x2="605.8085560697231" y1="240.75000000000003" y2="240.75000000000003"/>
+  <line stroke="#888888" x1="625.8085560697231" x2="625.8085560697231" y1="240.75000000000003" y2="239.75000000000003"/>
+  <line stroke="#888888" x1="625.8085560697231" x2="626.8085560697231" y1="239.75000000000003" y2="239.75000000000003"/>
+  <line stroke="#888888" x1="626.8085560697231" x2="626.8085560697231" y1="239.75000000000003" y2="240.75000000000003"/>
+  <line stroke="#888888" x1="626.8085560697231" x2="625.8085560697231" y1="240.75000000000003" y2="240.75000000000003"/>
+  <line stroke="#888888" x1="605.8085560697231" x2="605.8085560697231" y1="243.25000000000003" y2="242.25000000000003"/>
+  <line stroke="#888888" x1="605.8085560697231" x2="606.8085560697231" y1="242.25000000000003" y2="242.25000000000003"/>
+  <line stroke="#888888" x1="606.8085560697231" x2="606.8085560697231" y1="242.25000000000003" y2="243.25000000000003"/>
+  <line stroke="#888888" x1="606.8085560697231" x2="605.8085560697231" y1="243.25000000000003" y2="243.25000000000003"/>
+  <line stroke="#888888" x1="625.8085560697231" x2="625.8085560697231" y1="243.25000000000003" y2="242.25000000000003"/>
+  <line stroke="#888888" x1="625.8085560697231" x2="626.8085560697231" y1="242.25000000000003" y2="242.25000000000003"/>
+  <line stroke="#888888" x1="626.8085560697231" x2="626.8085560697231" y1="242.25000000000003" y2="243.25000000000003"/>
+  <line stroke="#888888" x1="626.8085560697231" x2="625.8085560697231" y1="243.25000000000003" y2="243.25000000000003"/>
+  <line stroke="#888888" x1="605.8085560697231" x2="605.8085560697231" y1="245.75000000000003" y2="244.75000000000003"/>
+  <line stroke="#888888" x1="605.8085560697231" x2="606.8085560697231" y1="244.75000000000003" y2="244.75000000000003"/>
+  <line stroke="#888888" x1="606.8085560697231" x2="606.8085560697231" y1="244.75000000000003" y2="245.75000000000003"/>
+  <line stroke="#888888" x1="606.8085560697231" x2="605.8085560697231" y1="245.75000000000003" y2="245.75000000000003"/>
+  <line stroke="#888888" x1="624.8085560697231" x2="624.8085560697231" y1="246.75000000000003" y2="243.75000000000003"/>
+  <line stroke="#888888" x1="624.8085560697231" x2="627.8085560697231" y1="243.75000000000003" y2="243.75000000000003"/>
+  <line stroke="#888888" x1="627.8085560697231" x2="627.8085560697231" y1="243.75000000000003" y2="246.75000000000003"/>
+  <line stroke="#888888" x1="627.8085560697231" x2="624.8085560697231" y1="246.75000000000003" y2="246.75000000000003"/>
+  <line stroke="#888888" x1="620.5585560697231" x2="612.0585560697231" y1="203.75000000000003" y2="203.75000000000003"/>
+  <line stroke="#888888" x1="612.0585560697231" x2="612.0585560697231" y1="203.75000000000003" y2="203.25000000000003"/>
+  <line stroke="#888888" x1="612.0585560697231" x2="620.5585560697231" y1="203.25000000000003" y2="203.25000000000003"/>
+  <line stroke="#888888" x1="620.5585560697231" x2="620.5585560697231" y1="203.25000000000003" y2="203.75000000000003"/>
+  <line stroke="#888888" x1="612.0585560697231" x2="620.5585560697231" y1="251.50000000000003" y2="251.50000000000003"/>
+  <line stroke="#888888" x1="620.5585560697231" x2="620.5585560697231" y1="251.50000000000003" y2="252.00000000000003"/>
+  <line stroke="#888888" x1="620.5585560697231" x2="612.0585560697231" y1="252.00000000000003" y2="252.00000000000003"/>
+  <line stroke="#888888" x1="612.0585560697231" x2="612.0585560697231" y1="252.00000000000003" y2="251.50000000000003"/>
+  <line stroke="#888888" x1="643.3085560697231" x2="643.3085560697231" y1="247.00000000000003" y2="234.00000000000003"/>
+  <line stroke="#888888" x1="643.3085560697231" x2="673.3085560697231" y1="234.00000000000003" y2="234.00000000000003"/>
+  <line stroke="#888888" x1="673.3085560697231" x2="673.3085560697231" y1="234.00000000000003" y2="247.00000000000003"/>
+  <line stroke="#888888" x1="673.3085560697231" x2="643.3085560697231" y1="247.00000000000003" y2="247.00000000000003"/>
+  <line stroke="#888888" x1="650.3767378879048" x2="638.967646978814" y1="201.50000000000003" y2="201.50000000000003"/>
+  <line stroke="#888888" x1="638.967646978814" x2="638.967646978814" y1="201.50000000000003" y2="201.00000000000003"/>
+  <line stroke="#888888" x1="638.967646978814" x2="650.3767378879048" y1="201.00000000000003" y2="201.00000000000003"/>
+  <line stroke="#888888" x1="650.3767378879048" x2="650.3767378879048" y1="201.00000000000003" y2="201.50000000000003"/>
+  <line stroke="#888888" x1="677.6494651606322" x2="666.2403742515412" y1="201.50000000000003" y2="201.50000000000003"/>
+  <line stroke="#888888" x1="666.2403742515412" x2="666.2403742515412" y1="201.50000000000003" y2="201.00000000000003"/>
+  <line stroke="#888888" x1="666.2403742515412" x2="677.6494651606322" y1="201.00000000000003" y2="201.00000000000003"/>
+  <line stroke="#888888" x1="677.6494651606322" x2="677.6494651606322" y1="201.00000000000003" y2="201.50000000000003"/>
+  <line stroke="#888888" x1="680.558556069723" x2="680.558556069723" y1="218.43181818181822" y2="206.84090909090912"/>
+  <line stroke="#888888" x1="680.558556069723" x2="681.058556069723" y1="206.84090909090912" y2="206.84090909090912"/>
+  <line stroke="#888888" x1="681.058556069723" x2="681.058556069723" y1="206.84090909090912" y2="218.43181818181822"/>
+  <line stroke="#888888" x1="681.058556069723" x2="680.558556069723" y1="218.43181818181822" y2="218.43181818181822"/>
+  <line stroke="#888888" x1="680.558556069723" x2="680.558556069723" y1="246.15909090909093" y2="234.5681818181818"/>
+  <line stroke="#888888" x1="680.558556069723" x2="681.058556069723" y1="234.5681818181818" y2="234.5681818181818"/>
+  <line stroke="#888888" x1="681.058556069723" x2="681.058556069723" y1="234.5681818181818" y2="246.15909090909093"/>
+  <line stroke="#888888" x1="681.058556069723" x2="680.558556069723" y1="246.15909090909093" y2="246.15909090909093"/>
+  <line stroke="#888888" x1="520.8085560697231" x2="520.8085560697231" y1="209.25" y2="206.25000000000003"/>
+  <line stroke="#888888" x1="520.8085560697231" x2="523.8085560697231" y1="206.25000000000003" y2="206.25000000000003"/>
+  <line stroke="#888888" x1="523.8085560697231" x2="523.8085560697231" y1="206.25000000000003" y2="209.25"/>
+  <line stroke="#888888" x1="523.8085560697231" x2="520.8085560697231" y1="209.25" y2="209.25"/>
+  <line stroke="#888888" x1="541.8085560697231" x2="541.8085560697231" y1="208.25000000000003" y2="207.25000000000003"/>
+  <line stroke="#888888" x1="541.8085560697231" x2="542.8085560697231" y1="207.25000000000003" y2="207.25000000000003"/>
+  <line stroke="#888888" x1="542.8085560697231" x2="542.8085560697231" y1="207.25000000000003" y2="208.25000000000003"/>
+  <line stroke="#888888" x1="542.8085560697231" x2="541.8085560697231" y1="208.25000000000003" y2="208.25000000000003"/>
+  <line stroke="#888888" x1="521.808556069723" x2="521.808556069723" y1="210.75000000000003" y2="209.75000000000003"/>
+  <line stroke="#888888" x1="521.808556069723" x2="522.808556069723" y1="209.75000000000003" y2="209.75000000000003"/>
+  <line stroke="#888888" x1="522.808556069723" x2="522.808556069723" y1="209.75000000000003" y2="210.75000000000003"/>
+  <line stroke="#888888" x1="522.808556069723" x2="521.808556069723" y1="210.75000000000003" y2="210.75000000000003"/>
+  <line stroke="#888888" x1="541.8085560697231" x2="541.8085560697231" y1="210.75000000000003" y2="209.75000000000003"/>
+  <line stroke="#888888" x1="541.8085560697231" x2="542.8085560697231" y1="209.75000000000003" y2="209.75000000000003"/>
+  <line stroke="#888888" x1="542.8085560697231" x2="542.8085560697231" y1="209.75000000000003" y2="210.75000000000003"/>
+  <line stroke="#888888" x1="542.8085560697231" x2="541.8085560697231" y1="210.75000000000003" y2="210.75000000000003"/>
+  <line stroke="#888888" x1="521.808556069723" x2="521.808556069723" y1="213.25000000000003" y2="212.25000000000003"/>
+  <line stroke="#888888" x1="521.808556069723" x2="522.808556069723" y1="212.25000000000003" y2="212.25000000000003"/>
+  <line stroke="#888888" x1="522.808556069723" x2="522.808556069723" y1="212.25000000000003" y2="213.25000000000003"/>
+  <line stroke="#888888" x1="522.808556069723" x2="521.808556069723" y1="213.25000000000003" y2="213.25000000000003"/>
+  <line stroke="#888888" x1="541.8085560697231" x2="541.8085560697231" y1="213.25000000000003" y2="212.25000000000003"/>
+  <line stroke="#888888" x1="541.8085560697231" x2="542.8085560697231" y1="212.25000000000003" y2="212.25000000000003"/>
+  <line stroke="#888888" x1="542.8085560697231" x2="542.8085560697231" y1="212.25000000000003" y2="213.25000000000003"/>
+  <line stroke="#888888" x1="542.8085560697231" x2="541.8085560697231" y1="213.25000000000003" y2="213.25000000000003"/>
+  <line stroke="#888888" x1="521.808556069723" x2="521.808556069723" y1="215.75000000000003" y2="214.75000000000003"/>
+  <line stroke="#888888" x1="521.808556069723" x2="522.808556069723" y1="214.75000000000003" y2="214.75000000000003"/>
+  <line stroke="#888888" x1="522.808556069723" x2="522.808556069723" y1="214.75000000000003" y2="215.75000000000003"/>
+  <line stroke="#888888" x1="522.808556069723" x2="521.808556069723" y1="215.75000000000003" y2="215.75000000000003"/>
+  <line stroke="#888888" x1="541.8085560697231" x2="541.8085560697231" y1="215.75000000000003" y2="214.75000000000003"/>
+  <line stroke="#888888" x1="541.8085560697231" x2="542.8085560697231" y1="214.75000000000003" y2="214.75000000000003"/>
+  <line stroke="#888888" x1="542.8085560697231" x2="542.8085560697231" y1="214.75000000000003" y2="215.75000000000003"/>
+  <line stroke="#888888" x1="542.8085560697231" x2="541.8085560697231" y1="215.75000000000003" y2="215.75000000000003"/>
+  <line stroke="#888888" x1="521.808556069723" x2="521.808556069723" y1="218.25000000000003" y2="217.25000000000003"/>
+  <line stroke="#888888" x1="521.808556069723" x2="522.808556069723" y1="217.25000000000003" y2="217.25000000000003"/>
+  <line stroke="#888888" x1="522.808556069723" x2="522.808556069723" y1="217.25000000000003" y2="218.25000000000003"/>
+  <line stroke="#888888" x1="522.808556069723" x2="521.808556069723" y1="218.25000000000003" y2="218.25000000000003"/>
+  <line stroke="#888888" x1="541.8085560697231" x2="541.8085560697231" y1="218.25000000000003" y2="217.25000000000003"/>
+  <line stroke="#888888" x1="541.8085560697231" x2="542.8085560697231" y1="217.25000000000003" y2="217.25000000000003"/>
+  <line stroke="#888888" x1="542.8085560697231" x2="542.8085560697231" y1="217.25000000000003" y2="218.25000000000003"/>
+  <line stroke="#888888" x1="542.8085560697231" x2="541.8085560697231" y1="218.25000000000003" y2="218.25000000000003"/>
+  <line stroke="#888888" x1="521.808556069723" x2="521.808556069723" y1="220.75" y2="219.75000000000003"/>
+  <line stroke="#888888" x1="521.808556069723" x2="522.808556069723" y1="219.75000000000003" y2="219.75000000000003"/>
+  <line stroke="#888888" x1="522.808556069723" x2="522.808556069723" y1="219.75000000000003" y2="220.75"/>
+  <line stroke="#888888" x1="522.808556069723" x2="521.808556069723" y1="220.75" y2="220.75"/>
+  <line stroke="#888888" x1="541.8085560697231" x2="541.8085560697231" y1="220.75" y2="219.75000000000003"/>
+  <line stroke="#888888" x1="541.8085560697231" x2="542.8085560697231" y1="219.75000000000003" y2="219.75000000000003"/>
+  <line stroke="#888888" x1="542.8085560697231" x2="542.8085560697231" y1="219.75000000000003" y2="220.75"/>
+  <line stroke="#888888" x1="542.8085560697231" x2="541.8085560697231" y1="220.75" y2="220.75"/>
+  <line stroke="#888888" x1="521.808556069723" x2="521.808556069723" y1="223.25000000000003" y2="222.25000000000003"/>
+  <line stroke="#888888" x1="521.808556069723" x2="522.808556069723" y1="222.25000000000003" y2="222.25000000000003"/>
+  <line stroke="#888888" x1="522.808556069723" x2="522.808556069723" y1="222.25000000000003" y2="223.25000000000003"/>
+  <line stroke="#888888" x1="522.808556069723" x2="521.808556069723" y1="223.25000000000003" y2="223.25000000000003"/>
+  <line stroke="#888888" x1="541.8085560697231" x2="541.8085560697231" y1="223.25000000000003" y2="222.25000000000003"/>
+  <line stroke="#888888" x1="541.8085560697231" x2="542.8085560697231" y1="222.25000000000003" y2="222.25000000000003"/>
+  <line stroke="#888888" x1="542.8085560697231" x2="542.8085560697231" y1="222.25000000000003" y2="223.25000000000003"/>
+  <line stroke="#888888" x1="542.8085560697231" x2="541.8085560697231" y1="223.25000000000003" y2="223.25000000000003"/>
+  <line stroke="#888888" x1="521.808556069723" x2="521.808556069723" y1="225.75000000000003" y2="224.75000000000003"/>
+  <line stroke="#888888" x1="521.808556069723" x2="522.808556069723" y1="224.75000000000003" y2="224.75000000000003"/>
+  <line stroke="#888888" x1="522.808556069723" x2="522.808556069723" y1="224.75000000000003" y2="225.75000000000003"/>
+  <line stroke="#888888" x1="522.808556069723" x2="521.808556069723" y1="225.75000000000003" y2="225.75000000000003"/>
+  <line stroke="#888888" x1="541.8085560697231" x2="541.8085560697231" y1="225.75000000000003" y2="224.75000000000003"/>
+  <line stroke="#888888" x1="541.8085560697231" x2="542.8085560697231" y1="224.75000000000003" y2="224.75000000000003"/>
+  <line stroke="#888888" x1="542.8085560697231" x2="542.8085560697231" y1="224.75000000000003" y2="225.75000000000003"/>
+  <line stroke="#888888" x1="542.8085560697231" x2="541.8085560697231" y1="225.75000000000003" y2="225.75000000000003"/>
+  <line stroke="#888888" x1="521.808556069723" x2="521.808556069723" y1="228.25000000000003" y2="227.25000000000003"/>
+  <line stroke="#888888" x1="521.808556069723" x2="522.808556069723" y1="227.25000000000003" y2="227.25000000000003"/>
+  <line stroke="#888888" x1="522.808556069723" x2="522.808556069723" y1="227.25000000000003" y2="228.25000000000003"/>
+  <line stroke="#888888" x1="522.808556069723" x2="521.808556069723" y1="228.25000000000003" y2="228.25000000000003"/>
+  <line stroke="#888888" x1="541.8085560697231" x2="541.8085560697231" y1="228.25000000000003" y2="227.25000000000003"/>
+  <line stroke="#888888" x1="541.8085560697231" x2="542.8085560697231" y1="227.25000000000003" y2="227.25000000000003"/>
+  <line stroke="#888888" x1="542.8085560697231" x2="542.8085560697231" y1="227.25000000000003" y2="228.25000000000003"/>
+  <line stroke="#888888" x1="542.8085560697231" x2="541.8085560697231" y1="228.25000000000003" y2="228.25000000000003"/>
+  <line stroke="#888888" x1="521.808556069723" x2="521.808556069723" y1="230.75000000000003" y2="229.75"/>
+  <line stroke="#888888" x1="521.808556069723" x2="522.808556069723" y1="229.75" y2="229.75"/>
+  <line stroke="#888888" x1="522.808556069723" x2="522.808556069723" y1="229.75" y2="230.75000000000003"/>
+  <line stroke="#888888" x1="522.808556069723" x2="521.808556069723" y1="230.75000000000003" y2="230.75000000000003"/>
+  <line stroke="#888888" x1="541.8085560697231" x2="541.8085560697231" y1="230.75000000000003" y2="229.75"/>
+  <line stroke="#888888" x1="541.8085560697231" x2="542.8085560697231" y1="229.75" y2="229.75"/>
+  <line stroke="#888888" x1="542.8085560697231" x2="542.8085560697231" y1="229.75" y2="230.75000000000003"/>
+  <line stroke="#888888" x1="542.8085560697231" x2="541.8085560697231" y1="230.75000000000003" y2="230.75000000000003"/>
+  <line stroke="#888888" x1="521.808556069723" x2="521.808556069723" y1="233.25000000000003" y2="232.25000000000003"/>
+  <line stroke="#888888" x1="521.808556069723" x2="522.808556069723" y1="232.25000000000003" y2="232.25000000000003"/>
+  <line stroke="#888888" x1="522.808556069723" x2="522.808556069723" y1="232.25000000000003" y2="233.25000000000003"/>
+  <line stroke="#888888" x1="522.808556069723" x2="521.808556069723" y1="233.25000000000003" y2="233.25000000000003"/>
+  <line stroke="#888888" x1="541.8085560697231" x2="541.8085560697231" y1="233.25000000000003" y2="232.25000000000003"/>
+  <line stroke="#888888" x1="541.8085560697231" x2="542.8085560697231" y1="232.25000000000003" y2="232.25000000000003"/>
+  <line stroke="#888888" x1="542.8085560697231" x2="542.8085560697231" y1="232.25000000000003" y2="233.25000000000003"/>
+  <line stroke="#888888" x1="542.8085560697231" x2="541.8085560697231" y1="233.25000000000003" y2="233.25000000000003"/>
+  <line stroke="#888888" x1="521.808556069723" x2="521.808556069723" y1="235.75000000000003" y2="234.75000000000003"/>
+  <line stroke="#888888" x1="521.808556069723" x2="522.808556069723" y1="234.75000000000003" y2="234.75000000000003"/>
+  <line stroke="#888888" x1="522.808556069723" x2="522.808556069723" y1="234.75000000000003" y2="235.75000000000003"/>
+  <line stroke="#888888" x1="522.808556069723" x2="521.808556069723" y1="235.75000000000003" y2="235.75000000000003"/>
+  <line stroke="#888888" x1="541.8085560697231" x2="541.8085560697231" y1="235.75000000000003" y2="234.75000000000003"/>
+  <line stroke="#888888" x1="541.8085560697231" x2="542.8085560697231" y1="234.75000000000003" y2="234.75000000000003"/>
+  <line stroke="#888888" x1="542.8085560697231" x2="542.8085560697231" y1="234.75000000000003" y2="235.75000000000003"/>
+  <line stroke="#888888" x1="542.8085560697231" x2="541.8085560697231" y1="235.75000000000003" y2="235.75000000000003"/>
+  <line stroke="#888888" x1="521.808556069723" x2="521.808556069723" y1="238.25000000000003" y2="237.25000000000003"/>
+  <line stroke="#888888" x1="521.808556069723" x2="522.808556069723" y1="237.25000000000003" y2="237.25000000000003"/>
+  <line stroke="#888888" x1="522.808556069723" x2="522.808556069723" y1="237.25000000000003" y2="238.25000000000003"/>
+  <line stroke="#888888" x1="522.808556069723" x2="521.808556069723" y1="238.25000000000003" y2="238.25000000000003"/>
+  <line stroke="#888888" x1="541.8085560697231" x2="541.8085560697231" y1="238.25000000000003" y2="237.25000000000003"/>
+  <line stroke="#888888" x1="541.8085560697231" x2="542.8085560697231" y1="237.25000000000003" y2="237.25000000000003"/>
+  <line stroke="#888888" x1="542.8085560697231" x2="542.8085560697231" y1="237.25000000000003" y2="238.25000000000003"/>
+  <line stroke="#888888" x1="542.8085560697231" x2="541.8085560697231" y1="238.25000000000003" y2="238.25000000000003"/>
+  <line stroke="#888888" x1="521.808556069723" x2="521.808556069723" y1="240.75000000000003" y2="239.75000000000003"/>
+  <line stroke="#888888" x1="521.808556069723" x2="522.808556069723" y1="239.75000000000003" y2="239.75000000000003"/>
+  <line stroke="#888888" x1="522.808556069723" x2="522.808556069723" y1="239.75000000000003" y2="240.75000000000003"/>
+  <line stroke="#888888" x1="522.808556069723" x2="521.808556069723" y1="240.75000000000003" y2="240.75000000000003"/>
+  <line stroke="#888888" x1="541.8085560697231" x2="541.8085560697231" y1="240.75000000000003" y2="239.75000000000003"/>
+  <line stroke="#888888" x1="541.8085560697231" x2="542.8085560697231" y1="239.75000000000003" y2="239.75000000000003"/>
+  <line stroke="#888888" x1="542.8085560697231" x2="542.8085560697231" y1="239.75000000000003" y2="240.75000000000003"/>
+  <line stroke="#888888" x1="542.8085560697231" x2="541.8085560697231" y1="240.75000000000003" y2="240.75000000000003"/>
+  <line stroke="#888888" x1="521.808556069723" x2="521.808556069723" y1="243.25000000000003" y2="242.25000000000003"/>
+  <line stroke="#888888" x1="521.808556069723" x2="522.808556069723" y1="242.25000000000003" y2="242.25000000000003"/>
+  <line stroke="#888888" x1="522.808556069723" x2="522.808556069723" y1="242.25000000000003" y2="243.25000000000003"/>
+  <line stroke="#888888" x1="522.808556069723" x2="521.808556069723" y1="243.25000000000003" y2="243.25000000000003"/>
+  <line stroke="#888888" x1="541.8085560697231" x2="541.8085560697231" y1="243.25000000000003" y2="242.25000000000003"/>
+  <line stroke="#888888" x1="541.8085560697231" x2="542.8085560697231" y1="242.25000000000003" y2="242.25000000000003"/>
+  <line stroke="#888888" x1="542.8085560697231" x2="542.8085560697231" y1="242.25000000000003" y2="243.25000000000003"/>
+  <line stroke="#888888" x1="542.8085560697231" x2="541.8085560697231" y1="243.25000000000003" y2="243.25000000000003"/>
+  <line stroke="#888888" x1="521.808556069723" x2="521.808556069723" y1="245.75000000000003" y2="244.75000000000003"/>
+  <line stroke="#888888" x1="521.808556069723" x2="522.808556069723" y1="244.75000000000003" y2="244.75000000000003"/>
+  <line stroke="#888888" x1="522.808556069723" x2="522.808556069723" y1="244.75000000000003" y2="245.75000000000003"/>
+  <line stroke="#888888" x1="522.808556069723" x2="521.808556069723" y1="245.75000000000003" y2="245.75000000000003"/>
+  <line stroke="#888888" x1="540.808556069723" x2="540.808556069723" y1="246.75000000000003" y2="243.75000000000003"/>
+  <line stroke="#888888" x1="540.808556069723" x2="543.8085560697231" y1="243.75000000000003" y2="243.75000000000003"/>
+  <line stroke="#888888" x1="543.8085560697231" x2="543.8085560697231" y1="243.75000000000003" y2="246.75000000000003"/>
+  <line stroke="#888888" x1="543.8085560697231" x2="540.808556069723" y1="246.75000000000003" y2="246.75000000000003"/>
+  <line stroke="#888888" x1="536.558556069723" x2="528.0585560697231" y1="203.75000000000003" y2="203.75000000000003"/>
+  <line stroke="#888888" x1="528.0585560697231" x2="528.0585560697231" y1="203.75000000000003" y2="203.25000000000003"/>
+  <line stroke="#888888" x1="528.0585560697231" x2="536.558556069723" y1="203.25000000000003" y2="203.25000000000003"/>
+  <line stroke="#888888" x1="536.558556069723" x2="536.558556069723" y1="203.25000000000003" y2="203.75000000000003"/>
+  <line stroke="#888888" x1="528.0585560697231" x2="536.558556069723" y1="251.50000000000003" y2="251.50000000000003"/>
+  <line stroke="#888888" x1="536.558556069723" x2="536.558556069723" y1="251.50000000000003" y2="252.00000000000003"/>
+  <line stroke="#888888" x1="536.558556069723" x2="528.0585560697231" y1="252.00000000000003" y2="252.00000000000003"/>
+  <line stroke="#888888" x1="528.0585560697231" x2="528.0585560697231" y1="252.00000000000003" y2="251.50000000000003"/>
+  <line stroke="#888888" x1="512.808556069723" x2="517.808556069723" y1="207.09090909090912" y2="207.09090909090912"/>
+  <line stroke="#888888" x1="517.808556069723" x2="517.808556069723" y1="207.09090909090912" y2="218.1818181818182"/>
+  <line stroke="#888888" x1="517.808556069723" x2="512.808556069723" y1="218.1818181818182" y2="218.1818181818182"/>
+  <line stroke="#888888" x1="512.808556069723" x2="517.808556069723" y1="234.81818181818184" y2="234.81818181818184"/>
+  <line stroke="#888888" x1="517.808556069723" x2="517.808556069723" y1="234.81818181818184" y2="245.90909090909093"/>
+  <line stroke="#888888" x1="517.808556069723" x2="512.808556069723" y1="245.90909090909093" y2="245.90909090909093"/>
+  <line stroke="#888888" x1="538.0585560697231" x2="541.5585560697231" y1="180.0" y2="180.0"/>
+  <line stroke="#888888" x1="541.5585560697231" x2="541.5585560697231" y1="180.0" y2="188.00000000000003"/>
+  <line stroke="#888888" x1="541.5585560697231" x2="538.0585560697231" y1="188.00000000000003" y2="188.00000000000003"/>
 </svg>
diff --git a/rocolib/output/BoatWithServoStackBattery/graph-model.png b/rocolib/output/BoatWithServoStackBattery/graph-model.png
index 32ae3a27d2a14a5902e81df50fdaf26034f4fc6a..60017b4635ca5d4524bfc077b44be9dc6102e09e 100644
Binary files a/rocolib/output/BoatWithServoStackBattery/graph-model.png and b/rocolib/output/BoatWithServoStackBattery/graph-model.png differ
diff --git a/rocolib/output/BoatWithServoStackBattery/graph-model.stl b/rocolib/output/BoatWithServoStackBattery/graph-model.stl
index 58ad33b6514144985063f9baf19b77fc2e1fd804..de92c0a79d86cdc1a167f38da4b72dd6180ffcae 100644
--- a/rocolib/output/BoatWithServoStackBattery/graph-model.stl
+++ b/rocolib/output/BoatWithServoStackBattery/graph-model.stl
@@ -1,660 +1,814 @@
 solid python
 facet normal 0 0 0
 outer loop
-vertex 0.1680 -0.0617 0.0000
-vertex 0.2280 -0.0617 0.0000
-vertex 0.2280 0.0000 0.0000
+vertex -0.0450 0.1140 0.0000
+vertex -0.0450 -0.1140 0.0000
+vertex 0.0450 -0.1140 0.0000
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.2280 0.0000 0.0000
-vertex 0.1680 0.0000 0.0000
-vertex 0.1680 -0.0617 0.0000
+vertex 0.0450 -0.1140 0.0000
+vertex 0.0450 0.1140 0.0000
+vertex -0.0450 0.1140 0.0000
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.2280 -0.0807 0.0191
-vertex 0.1680 -0.0807 0.0191
-vertex 0.1680 -0.0807 0.0807
+vertex -0.0450 0.1140 -0.0700
+vertex -0.0450 -0.1140 -0.0700
+vertex -0.0450 -0.1140 0.0000
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.1680 -0.0807 0.0807
-vertex 0.2280 -0.0807 0.0807
-vertex 0.2280 -0.0807 0.0191
+vertex -0.0450 -0.1140 0.0000
+vertex -0.0450 0.1140 0.0000
+vertex -0.0450 0.1140 -0.0700
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.1680 -0.0807 0.0191
-vertex 0.1680 -0.0617 -0.0000
-vertex 0.1680 -0.0737 -0.0120
+vertex 0.0450 0.1140 -0.0000
+vertex 0.0450 -0.1140 -0.0000
+vertex 0.0450 -0.1140 -0.0700
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.1680 -0.0737 -0.0120
-vertex 0.1680 -0.0928 0.0071
-vertex 0.1680 -0.0807 0.0191
+vertex 0.0450 -0.1140 -0.0700
+vertex 0.0450 0.1140 -0.0700
+vertex 0.0450 0.1140 -0.0000
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.1680 -0.0928 0.0071
-vertex 0.1680 -0.0737 -0.0120
-vertex 0.2280 -0.0737 -0.0120
+vertex -0.0450 -0.1140 0.0000
+vertex -0.0450 -0.1140 -0.0700
+vertex 0.0000 -0.1140 -0.0700
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.2280 -0.0737 -0.0120
-vertex 0.2280 -0.0928 0.0071
-vertex 0.1680 -0.0928 0.0071
+vertex 0.0000 -0.1140 0.0000
+vertex -0.0450 -0.1140 0.0000
+vertex 0.0000 -0.1140 -0.0700
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.2280 -0.0737 -0.0120
-vertex 0.2280 -0.0670 0.0011
-vertex 0.2280 -0.0797 0.0138
+vertex 0.0000 -0.1140 -0.0000
+vertex 0.0000 -0.1140 -0.0700
+vertex 0.0450 -0.1140 -0.0000
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.2280 -0.0670 0.0011
-vertex 0.2280 -0.0737 -0.0120
-vertex 0.2280 -0.0617 0.0000
+vertex 0.0000 -0.1140 -0.0700
+vertex 0.0450 -0.1140 -0.0700
+vertex 0.0450 -0.1140 -0.0000
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.2280 -0.0928 0.0071
-vertex 0.2280 -0.0797 0.0138
-vertex 0.2280 -0.0807 0.0191
+vertex -0.0450 -0.1140 -0.0700
+vertex -0.0450 -0.1140 0.0000
+vertex 0.0250 -0.1140 -0.0700
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.2280 -0.0797 0.0138
-vertex 0.2280 -0.0928 0.0071
-vertex 0.2280 -0.0737 -0.0120
+vertex -0.0450 -0.1140 -0.0700
+vertex 0.0250 -0.1140 -0.0700
+vertex -0.0450 -0.1140 0.0000
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.2280 -0.0617 0.0000
-vertex 0.2280 -0.0648 0.0032
-vertex 0.2280 -0.0670 0.0011
+vertex 0.0450 -0.1140 -0.0700
+vertex -0.0250 -0.1140 -0.0700
+vertex 0.0450 -0.1140 -0.0000
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.2280 -0.0776 0.0159
-vertex 0.2280 -0.0807 0.0191
-vertex 0.2280 -0.0797 0.0138
+vertex 0.0450 -0.1140 -0.0700
+vertex 0.0450 -0.1140 -0.0000
+vertex -0.0250 -0.1140 -0.0700
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.2280 -0.0617 0.0000
-vertex 0.2275 -0.0648 0.0032
-vertex 0.2275 -0.0776 0.0159
+vertex 0.0450 0.1140 0.0000
+vertex 0.0450 0.1140 -0.0700
+vertex -0.0000 0.1140 -0.0700
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.2275 -0.0648 0.0032
-vertex 0.2280 -0.0617 0.0000
-vertex 0.2245 -0.0648 0.0032
+vertex -0.0000 0.1140 0.0000
+vertex 0.0450 0.1140 -0.0000
+vertex -0.0000 0.1140 -0.0700
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.2280 -0.0807 0.0191
-vertex 0.2275 -0.0776 0.0159
-vertex 0.2245 -0.0776 0.0159
+vertex -0.0000 0.1140 0.0000
+vertex -0.0000 0.1140 -0.0700
+vertex -0.0450 0.1140 0.0000
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.2275 -0.0776 0.0159
-vertex 0.2280 -0.0807 0.0191
-vertex 0.2280 -0.0617 0.0000
+vertex -0.0000 0.1140 -0.0700
+vertex -0.0450 0.1140 -0.0700
+vertex -0.0450 0.1140 0.0000
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.2245 -0.0648 0.0032
-vertex 0.1680 -0.0617 0.0000
-vertex 0.1680 -0.0807 0.0191
+vertex 0.0450 0.1140 -0.0700
+vertex 0.0450 0.1140 -0.0000
+vertex -0.0250 0.1140 -0.0700
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.1680 -0.0617 0.0000
-vertex 0.2245 -0.0648 0.0032
-vertex 0.2280 -0.0617 0.0000
+vertex 0.0450 0.1140 -0.0700
+vertex -0.0250 0.1140 -0.0700
+vertex 0.0450 0.1140 -0.0000
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.2245 -0.0776 0.0159
-vertex 0.1680 -0.0807 0.0191
-vertex 0.2280 -0.0807 0.0191
+vertex -0.0450 0.1140 -0.0700
+vertex 0.0250 0.1140 -0.0700
+vertex -0.0450 0.1140 0.0000
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.1680 -0.0807 0.0191
-vertex 0.2245 -0.0776 0.0159
-vertex 0.2245 -0.0648 0.0032
+vertex -0.0450 0.1140 -0.0700
+vertex -0.0450 0.1140 0.0000
+vertex 0.0250 0.1140 -0.0700
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.1570 -0.0340 0.0000
-vertex 0.1330 -0.0340 0.0000
-vertex 0.1330 -0.0700 0.0000
+vertex 0.0450 0.0540 -0.1317
+vertex 0.0450 0.1140 -0.1317
+vertex 0.0450 0.1140 -0.0700
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.1330 -0.0700 0.0000
-vertex 0.1570 -0.0700 0.0000
-vertex 0.1570 -0.0340 0.0000
+vertex 0.0450 0.1140 -0.0700
+vertex 0.0450 0.0540 -0.0700
+vertex 0.0450 0.0540 -0.1317
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0950 -0.0340 0.0000
-vertex 0.0710 -0.0340 0.0000
-vertex 0.0710 -0.0700 0.0000
+vertex 0.0641 0.1140 -0.1507
+vertex 0.0641 0.0540 -0.1507
+vertex 0.1257 0.0540 -0.1507
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0710 -0.0700 0.0000
-vertex 0.0950 -0.0700 0.0000
-vertex 0.0950 -0.0340 0.0000
+vertex 0.1257 0.0540 -0.1507
+vertex 0.1257 0.1140 -0.1507
+vertex 0.0641 0.1140 -0.1507
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.1330 -0.0700 0.0450
-vertex 0.1570 -0.0700 0.0450
-vertex 0.1570 -0.0700 0.0000
+vertex 0.0641 0.0540 -0.1507
+vertex 0.0450 0.0540 -0.1317
+vertex 0.0330 0.0540 -0.1437
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.1570 -0.0700 0.0000
-vertex 0.1330 -0.0700 0.0000
-vertex 0.1330 -0.0700 0.0450
+vertex 0.0330 0.0540 -0.1437
+vertex 0.0521 0.0540 -0.1628
+vertex 0.0641 0.0540 -0.1507
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.1570 -0.0340 -0.0000
-vertex 0.1570 -0.0230 -0.0150
-vertex 0.1570 -0.0110 -0.0150
+vertex 0.0521 0.0540 -0.1628
+vertex 0.0330 0.0540 -0.1437
+vertex 0.0330 0.1140 -0.1437
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.1570 -0.0230 -0.0150
-vertex 0.1570 -0.0340 -0.0000
-vertex 0.1570 -0.0340 -0.0200
+vertex 0.0330 0.1140 -0.1437
+vertex 0.0521 0.1140 -0.1628
+vertex 0.0521 0.0540 -0.1628
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.1570 0.0000 -0.0000
-vertex 0.1570 -0.0110 -0.0150
-vertex 0.1570 0.0000 -0.0200
+vertex 0.0330 0.1140 -0.1437
+vertex 0.0461 0.1140 -0.1370
+vertex 0.0588 0.1140 -0.1497
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.1570 -0.0110 -0.0150
-vertex 0.1570 0.0000 -0.0000
-vertex 0.1570 -0.0340 -0.0000
+vertex 0.0461 0.1140 -0.1370
+vertex 0.0330 0.1140 -0.1437
+vertex 0.0450 0.1140 -0.1317
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.1570 -0.0230 -0.0190
-vertex 0.1570 -0.0340 -0.0200
-vertex 0.1570 0.0000 -0.0200
+vertex 0.0521 0.1140 -0.1628
+vertex 0.0588 0.1140 -0.1497
+vertex 0.0641 0.1140 -0.1507
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.1570 -0.0340 -0.0200
-vertex 0.1570 -0.0230 -0.0190
-vertex 0.1570 -0.0230 -0.0150
+vertex 0.0588 0.1140 -0.1497
+vertex 0.0521 0.1140 -0.1628
+vertex 0.0330 0.1140 -0.1437
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.1570 -0.0110 -0.0190
-vertex 0.1570 0.0000 -0.0200
-vertex 0.1570 -0.0110 -0.0150
+vertex 0.0450 0.1140 -0.1317
+vertex 0.0482 0.1140 -0.1348
+vertex 0.0461 0.1140 -0.1370
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.1570 0.0000 -0.0200
-vertex 0.1570 -0.0110 -0.0190
-vertex 0.1570 -0.0230 -0.0190
+vertex 0.0609 0.1140 -0.1476
+vertex 0.0641 0.1140 -0.1507
+vertex 0.0588 0.1140 -0.1497
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.1570 -0.0340 -0.0200
-vertex 0.1565 -0.0230 -0.0200
-vertex 0.1565 -0.0110 -0.0200
+vertex 0.0450 0.1140 -0.1317
+vertex 0.0482 0.1135 -0.1348
+vertex 0.0609 0.1135 -0.1476
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.1565 -0.0230 -0.0200
-vertex 0.1570 -0.0340 -0.0200
-vertex 0.1330 -0.0340 -0.0200
+vertex 0.0482 0.1135 -0.1348
+vertex 0.0450 0.1140 -0.1317
+vertex 0.0482 0.1105 -0.1348
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.1570 0.0000 -0.0200
-vertex 0.1565 -0.0110 -0.0200
-vertex 0.1335 -0.0110 -0.0200
+vertex 0.0641 0.1140 -0.1507
+vertex 0.0609 0.1135 -0.1476
+vertex 0.0609 0.1105 -0.1476
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.1565 -0.0110 -0.0200
-vertex 0.1570 0.0000 -0.0200
-vertex 0.1570 -0.0340 -0.0200
+vertex 0.0609 0.1135 -0.1476
+vertex 0.0641 0.1140 -0.1507
+vertex 0.0450 0.1140 -0.1317
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.1335 -0.0230 -0.0200
-vertex 0.1330 -0.0340 -0.0200
-vertex 0.1330 0.0000 -0.0200
+vertex 0.0482 0.1105 -0.1348
+vertex 0.0450 0.0540 -0.1317
+vertex 0.0641 0.0540 -0.1507
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.1330 -0.0340 -0.0200
-vertex 0.1335 -0.0230 -0.0200
-vertex 0.1565 -0.0230 -0.0200
+vertex 0.0450 0.0540 -0.1317
+vertex 0.0482 0.1105 -0.1348
+vertex 0.0450 0.1140 -0.1317
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.1335 -0.0110 -0.0200
-vertex 0.1330 0.0000 -0.0200
-vertex 0.1570 0.0000 -0.0200
+vertex 0.0609 0.1105 -0.1476
+vertex 0.0641 0.0540 -0.1507
+vertex 0.0641 0.1140 -0.1507
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.1330 0.0000 -0.0200
-vertex 0.1335 -0.0110 -0.0200
-vertex 0.1335 -0.0230 -0.0200
+vertex 0.0641 0.0540 -0.1507
+vertex 0.0609 0.1105 -0.1476
+vertex 0.0482 0.1105 -0.1348
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.1330 -0.0340 -0.0200
-vertex 0.1330 -0.0230 -0.0150
-vertex 0.1330 -0.0230 -0.0190
+vertex -0.0450 -0.0430 -0.1040
+vertex -0.0450 -0.0190 -0.1040
+vertex -0.0450 -0.0190 -0.1400
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.1330 -0.0230 -0.0150
-vertex 0.1330 -0.0340 -0.0200
-vertex 0.1330 -0.0340 0.0000
+vertex -0.0450 -0.0190 -0.1400
+vertex -0.0450 -0.0430 -0.1400
+vertex -0.0450 -0.0430 -0.1040
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.1330 -0.0340 -0.0200
-vertex 0.1330 -0.0230 -0.0190
-vertex 0.1330 -0.0110 -0.0190
+vertex 0.0450 -0.0190 -0.1040
+vertex 0.0450 -0.0430 -0.1040
+vertex 0.0450 -0.0430 -0.1400
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.1330 0.0000 -0.0200
-vertex 0.1330 -0.0110 -0.0190
-vertex 0.1330 -0.0110 -0.0150
+vertex 0.0450 -0.0430 -0.1400
+vertex 0.0450 -0.0190 -0.1400
+vertex 0.0450 -0.0190 -0.1040
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.1330 -0.0110 -0.0190
-vertex 0.1330 0.0000 -0.0200
-vertex 0.1330 -0.0340 -0.0200
+vertex -0.0900 -0.0190 -0.1400
+vertex -0.0900 -0.0430 -0.1400
+vertex -0.0450 -0.0430 -0.1400
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.1330 0.0000 -0.0200
-vertex 0.1330 -0.0110 -0.0150
-vertex 0.1330 0.0000 0.0000
+vertex -0.0450 -0.0430 -0.1400
+vertex -0.0450 -0.0190 -0.1400
+vertex -0.0900 -0.0190 -0.1400
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.1330 -0.0230 -0.0150
-vertex 0.1330 -0.0215 -0.0070
-vertex 0.1330 -0.0110 -0.0150
+vertex -0.0450 -0.0430 -0.1040
+vertex -0.0300 -0.0430 -0.0930
+vertex -0.0300 -0.0430 -0.0810
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.1330 -0.0215 -0.0070
-vertex 0.1330 -0.0340 0.0000
-vertex 0.1330 -0.0215 -0.0030
+vertex -0.0300 -0.0430 -0.0930
+vertex -0.0450 -0.0430 -0.1040
+vertex -0.0250 -0.0430 -0.1040
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.1330 -0.0340 0.0000
-vertex 0.1330 -0.0215 -0.0070
-vertex 0.1330 -0.0230 -0.0150
+vertex -0.0450 -0.0430 -0.0700
+vertex -0.0300 -0.0430 -0.0810
+vertex -0.0250 -0.0430 -0.0700
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.1330 -0.0215 -0.0030
-vertex 0.1330 -0.0340 0.0000
-vertex 0.1330 0.0000 0.0000
+vertex -0.0300 -0.0430 -0.0810
+vertex -0.0450 -0.0430 -0.0700
+vertex -0.0450 -0.0430 -0.1040
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.1330 -0.0125 -0.0070
-vertex 0.1330 -0.0125 -0.0030
-vertex 0.1330 0.0000 0.0000
+vertex -0.0260 -0.0430 -0.0930
+vertex -0.0250 -0.0430 -0.1040
+vertex -0.0250 -0.0430 -0.0700
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.1330 0.0000 0.0000
-vertex 0.1330 -0.0125 -0.0030
-vertex 0.1330 -0.0215 -0.0030
+vertex -0.0250 -0.0430 -0.1040
+vertex -0.0260 -0.0430 -0.0930
+vertex -0.0300 -0.0430 -0.0930
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.1330 -0.0125 -0.0070
-vertex 0.1330 0.0000 0.0000
-vertex 0.1330 -0.0110 -0.0150
+vertex -0.0260 -0.0430 -0.0810
+vertex -0.0250 -0.0430 -0.0700
+vertex -0.0300 -0.0430 -0.0810
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.1330 -0.0215 -0.0070
-vertex 0.1330 -0.0125 -0.0070
-vertex 0.1330 -0.0110 -0.0150
+vertex -0.0250 -0.0430 -0.0700
+vertex -0.0260 -0.0430 -0.0810
+vertex -0.0260 -0.0430 -0.0930
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.1330 0.0000 0.0000
-vertex 0.1330 -0.0340 0.0000
-vertex 0.1570 -0.0340 0.0000
+vertex -0.0250 -0.0430 -0.1040
+vertex -0.0250 -0.0425 -0.0930
+vertex -0.0250 -0.0425 -0.0810
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.1570 -0.0340 0.0000
-vertex 0.1570 0.0000 0.0000
-vertex 0.1330 0.0000 0.0000
+vertex -0.0250 -0.0425 -0.0930
+vertex -0.0250 -0.0430 -0.1040
+vertex -0.0250 -0.0190 -0.1040
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0710 0.0000 -0.0000
-vertex 0.0710 -0.0110 -0.0150
-vertex 0.0710 -0.0230 -0.0150
+vertex -0.0250 -0.0430 -0.0700
+vertex -0.0250 -0.0425 -0.0810
+vertex -0.0250 -0.0195 -0.0810
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0710 -0.0110 -0.0150
-vertex 0.0710 0.0000 -0.0000
-vertex 0.0710 0.0000 -0.0200
+vertex -0.0250 -0.0425 -0.0810
+vertex -0.0250 -0.0430 -0.0700
+vertex -0.0250 -0.0430 -0.1040
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0710 -0.0340 -0.0000
-vertex 0.0710 -0.0230 -0.0150
-vertex 0.0710 -0.0340 -0.0200
+vertex -0.0250 -0.0195 -0.0930
+vertex -0.0250 -0.0190 -0.1040
+vertex -0.0250 -0.0190 -0.0700
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0710 -0.0230 -0.0150
-vertex 0.0710 -0.0340 -0.0000
-vertex 0.0710 0.0000 -0.0000
+vertex -0.0250 -0.0190 -0.1040
+vertex -0.0250 -0.0195 -0.0930
+vertex -0.0250 -0.0425 -0.0930
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0710 -0.0110 -0.0190
-vertex 0.0710 0.0000 -0.0200
-vertex 0.0710 -0.0340 -0.0200
+vertex -0.0250 -0.0195 -0.0810
+vertex -0.0250 -0.0190 -0.0700
+vertex -0.0250 -0.0430 -0.0700
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0710 0.0000 -0.0200
-vertex 0.0710 -0.0110 -0.0190
-vertex 0.0710 -0.0110 -0.0150
+vertex -0.0250 -0.0190 -0.0700
+vertex -0.0250 -0.0195 -0.0810
+vertex -0.0250 -0.0195 -0.0930
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0710 -0.0230 -0.0190
-vertex 0.0710 -0.0340 -0.0200
-vertex 0.0710 -0.0230 -0.0150
+vertex -0.0250 -0.0190 -0.1040
+vertex -0.0300 -0.0190 -0.0930
+vertex -0.0260 -0.0190 -0.0930
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0710 -0.0340 -0.0200
-vertex 0.0710 -0.0230 -0.0190
-vertex 0.0710 -0.0110 -0.0190
+vertex -0.0300 -0.0190 -0.0930
+vertex -0.0250 -0.0190 -0.1040
+vertex -0.0450 -0.0190 -0.1040
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0710 0.0000 -0.0200
-vertex 0.0715 -0.0110 -0.0200
-vertex 0.0715 -0.0230 -0.0200
+vertex -0.0250 -0.0190 -0.1040
+vertex -0.0260 -0.0190 -0.0930
+vertex -0.0260 -0.0190 -0.0810
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0715 -0.0110 -0.0200
-vertex 0.0710 0.0000 -0.0200
-vertex 0.0950 0.0000 -0.0200
+vertex -0.0250 -0.0190 -0.0700
+vertex -0.0260 -0.0190 -0.0810
+vertex -0.0300 -0.0190 -0.0810
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0710 -0.0340 -0.0200
-vertex 0.0715 -0.0230 -0.0200
-vertex 0.0945 -0.0230 -0.0200
+vertex -0.0260 -0.0190 -0.0810
+vertex -0.0250 -0.0190 -0.0700
+vertex -0.0250 -0.0190 -0.1040
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0715 -0.0230 -0.0200
-vertex 0.0710 -0.0340 -0.0200
-vertex 0.0710 0.0000 -0.0200
+vertex -0.0250 -0.0190 -0.0700
+vertex -0.0300 -0.0190 -0.0810
+vertex -0.0450 -0.0190 -0.0700
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0945 -0.0110 -0.0200
-vertex 0.0950 0.0000 -0.0200
-vertex 0.0950 -0.0340 -0.0200
+vertex -0.0300 -0.0190 -0.0930
+vertex -0.0380 -0.0190 -0.0915
+vertex -0.0300 -0.0190 -0.0810
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0950 0.0000 -0.0200
-vertex 0.0945 -0.0110 -0.0200
-vertex 0.0715 -0.0110 -0.0200
+vertex -0.0380 -0.0190 -0.0915
+vertex -0.0450 -0.0190 -0.1040
+vertex -0.0420 -0.0190 -0.0915
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0945 -0.0230 -0.0200
-vertex 0.0950 -0.0340 -0.0200
-vertex 0.0710 -0.0340 -0.0200
+vertex -0.0450 -0.0190 -0.1040
+vertex -0.0380 -0.0190 -0.0915
+vertex -0.0300 -0.0190 -0.0930
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0950 -0.0340 -0.0200
-vertex 0.0945 -0.0230 -0.0200
-vertex 0.0945 -0.0110 -0.0200
+vertex -0.0420 -0.0190 -0.0915
+vertex -0.0450 -0.0190 -0.1040
+vertex -0.0450 -0.0190 -0.0700
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0950 0.0000 -0.0200
-vertex 0.0950 -0.0110 -0.0150
-vertex 0.0950 -0.0110 -0.0190
+vertex -0.0380 -0.0190 -0.0825
+vertex -0.0420 -0.0190 -0.0825
+vertex -0.0450 -0.0190 -0.0700
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0950 -0.0110 -0.0150
-vertex 0.0950 0.0000 -0.0200
-vertex 0.0950 0.0000 0.0000
+vertex -0.0450 -0.0190 -0.0700
+vertex -0.0420 -0.0190 -0.0825
+vertex -0.0420 -0.0190 -0.0915
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0950 0.0000 -0.0200
-vertex 0.0950 -0.0110 -0.0190
-vertex 0.0950 -0.0230 -0.0190
+vertex -0.0380 -0.0190 -0.0825
+vertex -0.0450 -0.0190 -0.0700
+vertex -0.0300 -0.0190 -0.0810
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0950 -0.0340 -0.0200
-vertex 0.0950 -0.0230 -0.0190
-vertex 0.0950 -0.0230 -0.0150
+vertex -0.0380 -0.0190 -0.0915
+vertex -0.0380 -0.0190 -0.0825
+vertex -0.0300 -0.0190 -0.0810
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0950 -0.0230 -0.0190
-vertex 0.0950 -0.0340 -0.0200
-vertex 0.0950 0.0000 -0.0200
+vertex -0.0450 -0.0190 -0.0700
+vertex -0.0450 -0.0190 -0.1040
+vertex -0.0450 -0.0430 -0.1040
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0950 -0.0340 -0.0200
-vertex 0.0950 -0.0230 -0.0150
-vertex 0.0950 -0.0340 0.0000
+vertex -0.0450 -0.0430 -0.1040
+vertex -0.0450 -0.0430 -0.0700
+vertex -0.0450 -0.0190 -0.0700
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0950 -0.0110 -0.0150
-vertex 0.0950 -0.0125 -0.0070
-vertex 0.0950 -0.0230 -0.0150
+vertex 0.0450 -0.0430 -0.0700
+vertex 0.0300 -0.0430 -0.0810
+vertex 0.0300 -0.0430 -0.0930
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0950 -0.0125 -0.0070
-vertex 0.0950 0.0000 0.0000
-vertex 0.0950 -0.0125 -0.0030
+vertex 0.0300 -0.0430 -0.0810
+vertex 0.0450 -0.0430 -0.0700
+vertex 0.0250 -0.0430 -0.0700
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0950 0.0000 0.0000
-vertex 0.0950 -0.0125 -0.0070
-vertex 0.0950 -0.0110 -0.0150
+vertex 0.0450 -0.0430 -0.1040
+vertex 0.0300 -0.0430 -0.0930
+vertex 0.0250 -0.0430 -0.1040
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0950 -0.0125 -0.0030
-vertex 0.0950 0.0000 0.0000
-vertex 0.0950 -0.0340 0.0000
+vertex 0.0300 -0.0430 -0.0930
+vertex 0.0450 -0.0430 -0.1040
+vertex 0.0450 -0.0430 -0.0700
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0950 -0.0215 -0.0070
-vertex 0.0950 -0.0215 -0.0030
-vertex 0.0950 -0.0340 0.0000
+vertex 0.0260 -0.0430 -0.0810
+vertex 0.0250 -0.0430 -0.0700
+vertex 0.0250 -0.0430 -0.1040
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0950 -0.0340 0.0000
-vertex 0.0950 -0.0215 -0.0030
-vertex 0.0950 -0.0125 -0.0030
+vertex 0.0250 -0.0430 -0.0700
+vertex 0.0260 -0.0430 -0.0810
+vertex 0.0300 -0.0430 -0.0810
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0950 -0.0215 -0.0070
-vertex 0.0950 -0.0340 0.0000
-vertex 0.0950 -0.0230 -0.0150
+vertex 0.0260 -0.0430 -0.0930
+vertex 0.0250 -0.0430 -0.1040
+vertex 0.0300 -0.0430 -0.0930
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0950 -0.0125 -0.0070
-vertex 0.0950 -0.0215 -0.0070
-vertex 0.0950 -0.0230 -0.0150
+vertex 0.0250 -0.0430 -0.1040
+vertex 0.0260 -0.0430 -0.0930
+vertex 0.0260 -0.0430 -0.0810
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0950 -0.0340 0.0000
-vertex 0.0950 0.0000 0.0000
-vertex 0.0710 0.0000 0.0000
+vertex 0.0250 -0.0430 -0.0700
+vertex 0.0250 -0.0425 -0.0810
+vertex 0.0250 -0.0425 -0.0930
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0710 0.0000 0.0000
-vertex 0.0710 -0.0340 0.0000
-vertex 0.0950 -0.0340 0.0000
+vertex 0.0250 -0.0425 -0.0810
+vertex 0.0250 -0.0430 -0.0700
+vertex 0.0250 -0.0190 -0.0700
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0710 -0.0700 0.0450
-vertex 0.0950 -0.0700 0.0450
-vertex 0.0950 -0.0700 0.0000
+vertex 0.0250 -0.0430 -0.1040
+vertex 0.0250 -0.0425 -0.0930
+vertex 0.0250 -0.0195 -0.0930
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0950 -0.0700 0.0000
-vertex 0.0710 -0.0700 0.0000
-vertex 0.0710 -0.0700 0.0450
+vertex 0.0250 -0.0425 -0.0930
+vertex 0.0250 -0.0430 -0.1040
+vertex 0.0250 -0.0430 -0.0700
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0250 -0.0195 -0.0810
+vertex 0.0250 -0.0190 -0.0700
+vertex 0.0250 -0.0190 -0.1040
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0250 -0.0190 -0.0700
+vertex 0.0250 -0.0195 -0.0810
+vertex 0.0250 -0.0425 -0.0810
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0250 -0.0195 -0.0930
+vertex 0.0250 -0.0190 -0.1040
+vertex 0.0250 -0.0430 -0.1040
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0250 -0.0190 -0.1040
+vertex 0.0250 -0.0195 -0.0930
+vertex 0.0250 -0.0195 -0.0810
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0250 -0.0190 -0.0700
+vertex 0.0300 -0.0190 -0.0810
+vertex 0.0260 -0.0190 -0.0810
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0300 -0.0190 -0.0810
+vertex 0.0250 -0.0190 -0.0700
+vertex 0.0450 -0.0190 -0.0700
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0250 -0.0190 -0.0700
+vertex 0.0260 -0.0190 -0.0810
+vertex 0.0260 -0.0190 -0.0930
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0250 -0.0190 -0.1040
+vertex 0.0260 -0.0190 -0.0930
+vertex 0.0300 -0.0190 -0.0930
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0260 -0.0190 -0.0930
+vertex 0.0250 -0.0190 -0.1040
+vertex 0.0250 -0.0190 -0.0700
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0250 -0.0190 -0.1040
+vertex 0.0300 -0.0190 -0.0930
+vertex 0.0450 -0.0190 -0.1040
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0300 -0.0190 -0.0810
+vertex 0.0380 -0.0190 -0.0825
+vertex 0.0300 -0.0190 -0.0930
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0380 -0.0190 -0.0825
+vertex 0.0450 -0.0190 -0.0700
+vertex 0.0420 -0.0190 -0.0825
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0450 -0.0190 -0.0700
+vertex 0.0380 -0.0190 -0.0825
+vertex 0.0300 -0.0190 -0.0810
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0420 -0.0190 -0.0825
+vertex 0.0450 -0.0190 -0.0700
+vertex 0.0450 -0.0190 -0.1040
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0380 -0.0190 -0.0915
+vertex 0.0420 -0.0190 -0.0915
+vertex 0.0450 -0.0190 -0.1040
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0450 -0.0190 -0.1040
+vertex 0.0420 -0.0190 -0.0915
+vertex 0.0420 -0.0190 -0.0825
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0380 -0.0190 -0.0915
+vertex 0.0450 -0.0190 -0.1040
+vertex 0.0300 -0.0190 -0.0930
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0380 -0.0190 -0.0825
+vertex 0.0380 -0.0190 -0.0915
+vertex 0.0300 -0.0190 -0.0930
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0450 -0.0190 -0.1040
+vertex 0.0450 -0.0190 -0.0700
+vertex 0.0450 -0.0430 -0.0700
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0450 -0.0430 -0.0700
+vertex 0.0450 -0.0430 -0.1040
+vertex 0.0450 -0.0190 -0.1040
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0900 -0.0430 -0.1400
+vertex 0.0900 -0.0190 -0.1400
+vertex 0.0450 -0.0190 -0.1400
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0450 -0.0190 -0.1400
+vertex 0.0450 -0.0430 -0.1400
+vertex 0.0900 -0.0430 -0.1400
 endloop
 endfacet
 facet normal 0 0 0
@@ -673,128 +827,128 @@ endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.1670 0.0000 0.0000
-vertex 0.1670 -0.0361 0.0000
-vertex 0.2280 -0.0361 0.0000
+vertex -0.0450 -0.0530 -0.0700
+vertex -0.0450 -0.0530 -0.1061
+vertex -0.0450 -0.1140 -0.1061
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.2280 -0.0361 0.0000
-vertex 0.2280 0.0000 0.0000
-vertex 0.1670 0.0000 0.0000
+vertex -0.0450 -0.1140 -0.1061
+vertex -0.0450 -0.1140 -0.0700
+vertex -0.0450 -0.0530 -0.0700
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.2280 -0.0531 -0.0531
-vertex 0.2280 -0.0531 -0.0170
-vertex 0.1670 -0.0531 -0.0170
+vertex 0.0081 -0.1140 -0.1231
+vertex -0.0280 -0.1140 -0.1231
+vertex -0.0280 -0.0530 -0.1231
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.1670 -0.0531 -0.0170
-vertex 0.1670 -0.0531 -0.0531
-vertex 0.2280 -0.0531 -0.0531
+vertex -0.0280 -0.0530 -0.1231
+vertex 0.0081 -0.0530 -0.1231
+vertex 0.0081 -0.1140 -0.1231
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.1670 -0.0531 -0.0170
-vertex 0.1960 -0.0492 -0.0131
-vertex 0.1850 -0.0492 -0.0131
+vertex -0.0280 -0.0530 -0.1231
+vertex -0.0319 -0.0820 -0.1192
+vertex -0.0319 -0.0710 -0.1192
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.1960 -0.0492 -0.0131
-vertex 0.1670 -0.0531 -0.0170
-vertex 0.2280 -0.0531 -0.0170
+vertex -0.0319 -0.0820 -0.1192
+vertex -0.0280 -0.0530 -0.1231
+vertex -0.0280 -0.1140 -0.1231
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.1670 -0.0531 -0.0170
-vertex 0.1850 -0.0492 -0.0131
-vertex 0.1850 -0.0400 -0.0039
+vertex -0.0280 -0.0530 -0.1231
+vertex -0.0319 -0.0710 -0.1192
+vertex -0.0411 -0.0710 -0.1100
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.1670 -0.0361 0.0000
-vertex 0.1850 -0.0400 -0.0039
-vertex 0.1960 -0.0400 -0.0039
+vertex -0.0450 -0.0530 -0.1061
+vertex -0.0411 -0.0710 -0.1100
+vertex -0.0411 -0.0820 -0.1100
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.1850 -0.0400 -0.0039
-vertex 0.1670 -0.0361 0.0000
-vertex 0.1670 -0.0531 -0.0170
+vertex -0.0411 -0.0710 -0.1100
+vertex -0.0450 -0.0530 -0.1061
+vertex -0.0280 -0.0530 -0.1231
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.1670 -0.0361 0.0000
-vertex 0.1960 -0.0400 -0.0039
-vertex 0.2280 -0.0361 0.0000
+vertex -0.0450 -0.0530 -0.1061
+vertex -0.0411 -0.0820 -0.1100
+vertex -0.0450 -0.1140 -0.1061
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.1960 -0.0492 -0.0131
-vertex 0.2165 -0.0482 -0.0120
-vertex 0.1960 -0.0400 -0.0039
+vertex -0.0319 -0.0820 -0.1192
+vertex -0.0330 -0.1025 -0.1182
+vertex -0.0411 -0.0820 -0.1100
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.2165 -0.0482 -0.0120
-vertex 0.2280 -0.0531 -0.0170
-vertex 0.2225 -0.0482 -0.0120
+vertex -0.0330 -0.1025 -0.1182
+vertex -0.0280 -0.1140 -0.1231
+vertex -0.0330 -0.1085 -0.1182
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.2280 -0.0531 -0.0170
-vertex 0.2165 -0.0482 -0.0120
-vertex 0.1960 -0.0492 -0.0131
+vertex -0.0280 -0.1140 -0.1231
+vertex -0.0330 -0.1025 -0.1182
+vertex -0.0319 -0.0820 -0.1192
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.2225 -0.0482 -0.0120
-vertex 0.2280 -0.0531 -0.0170
-vertex 0.2280 -0.0361 0.0000
+vertex -0.0330 -0.1085 -0.1182
+vertex -0.0280 -0.1140 -0.1231
+vertex -0.0450 -0.1140 -0.1061
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.2165 -0.0411 -0.0049
-vertex 0.2225 -0.0411 -0.0049
-vertex 0.2280 -0.0361 0.0000
+vertex -0.0401 -0.1025 -0.1111
+vertex -0.0401 -0.1085 -0.1111
+vertex -0.0450 -0.1140 -0.1061
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.2280 -0.0361 0.0000
-vertex 0.2225 -0.0411 -0.0049
-vertex 0.2225 -0.0482 -0.0120
+vertex -0.0450 -0.1140 -0.1061
+vertex -0.0401 -0.1085 -0.1111
+vertex -0.0330 -0.1085 -0.1182
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.2165 -0.0411 -0.0049
-vertex 0.2280 -0.0361 0.0000
-vertex 0.1960 -0.0400 -0.0039
+vertex -0.0401 -0.1025 -0.1111
+vertex -0.0450 -0.1140 -0.1061
+vertex -0.0411 -0.0820 -0.1100
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.2165 -0.0482 -0.0120
-vertex 0.2165 -0.0411 -0.0049
-vertex 0.1960 -0.0400 -0.0039
+vertex -0.0330 -0.1025 -0.1182
+vertex -0.0401 -0.1025 -0.1111
+vertex -0.0411 -0.0820 -0.1100
 endloop
 endfacet
 facet normal 0 0 0
@@ -3627,268 +3781,142 @@ endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0250 0.0500 0.0000
-vertex -0.0250 -0.0500 0.0000
-vertex 0.0250 -0.0500 0.0000
-endloop
-endfacet
-facet normal 0 0 0
-outer loop
-vertex 0.0250 -0.0500 0.0000
-vertex 0.0250 0.0500 0.0000
-vertex -0.0250 0.0500 0.0000
-endloop
-endfacet
-facet normal 0 0 0
-outer loop
-vertex -0.0250 0.0500 -0.0200
-vertex -0.0250 -0.0500 -0.0200
-vertex -0.0250 -0.0500 0.0000
+vertex 0.0250 -0.1164 -0.0468
+vertex 0.0250 -0.1140 -0.0700
+vertex -0.0450 -0.1140 -0.0700
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0250 -0.0500 0.0000
-vertex -0.0250 0.0500 0.0000
-vertex -0.0250 0.0500 -0.0200
+vertex -0.0450 -0.1140 -0.0700
+vertex -0.0450 -0.1164 -0.0468
+vertex 0.0250 -0.1164 -0.0468
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0250 0.0500 0.0000
-vertex 0.0250 -0.0500 0.0000
-vertex 0.0250 -0.0500 -0.0200
+vertex 0.0450 -0.1164 -0.0468
+vertex 0.0450 -0.1140 -0.0700
+vertex -0.0250 -0.1140 -0.0700
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0250 -0.0500 -0.0200
-vertex 0.0250 0.0500 -0.0200
-vertex 0.0250 0.0500 0.0000
+vertex -0.0250 -0.1140 -0.0700
+vertex -0.0250 -0.1164 -0.0468
+vertex 0.0450 -0.1164 -0.0468
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0250 -0.0500 0.0000
-vertex -0.0250 -0.0500 -0.0200
-vertex -0.0213 -0.0573 -0.0200
+vertex -0.0250 0.1164 -0.0468
+vertex -0.0250 0.1140 -0.0700
+vertex 0.0450 0.1140 -0.0700
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0213 -0.0573 -0.0200
-vertex 0.0000 -0.1000 -0.0200
-vertex -0.0250 -0.0500 0.0000
+vertex 0.0450 0.1140 -0.0700
+vertex 0.0450 0.1164 -0.0468
+vertex -0.0250 0.1164 -0.0468
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0000 -0.0500 0.0000
-vertex -0.0250 -0.0500 0.0000
-vertex -0.0000 -0.1000 -0.0200
+vertex -0.0450 0.1164 -0.0468
+vertex -0.0450 0.1140 -0.0700
+vertex 0.0250 0.1140 -0.0700
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0000 -0.0500 0.0000
-vertex 0.0000 -0.1000 -0.0200
-vertex 0.0250 -0.0500 0.0000
+vertex 0.0250 0.1140 -0.0700
+vertex 0.0250 0.1164 -0.0468
+vertex -0.0450 0.1164 -0.0468
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0213 -0.0573 -0.0200
-vertex 0.0250 -0.0500 -0.0200
-vertex 0.0250 -0.0500 0.0000
+vertex -0.0450 0.0540 -0.0800
+vertex -0.0450 0.0540 -0.0700
+vertex -0.0450 0.1140 -0.0700
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0250 -0.0500 0.0000
-vertex 0.0000 -0.1000 -0.0200
-vertex 0.0213 -0.0573 -0.0200
+vertex -0.0450 0.1140 -0.0700
+vertex -0.0450 0.1140 -0.0800
+vertex -0.0450 0.0540 -0.0800
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0250 -0.0500 -0.0200
-vertex -0.0250 -0.0500 0.0000
-vertex -0.0213 -0.0573 -0.0200
+vertex 0.0450 0.0640 -0.1317
+vertex 0.0450 0.0540 -0.1317
+vertex 0.0641 0.0540 -0.1507
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0250 -0.0500 -0.0200
-vertex -0.0213 -0.0573 -0.0200
-vertex -0.0250 -0.0500 0.0000
+vertex 0.0641 0.0540 -0.1507
+vertex 0.0641 0.0640 -0.1507
+vertex 0.0450 0.0640 -0.1317
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0250 -0.0500 -0.0200
-vertex 0.0213 -0.0573 -0.0200
-vertex 0.0250 -0.0500 0.0000
+vertex -0.0450 -0.0330 -0.1040
+vertex -0.0450 -0.0430 -0.1040
+vertex -0.0450 -0.0430 -0.0700
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0250 -0.0500 -0.0200
-vertex 0.0250 -0.0500 0.0000
-vertex 0.0213 -0.0573 -0.0200
+vertex -0.0450 -0.0430 -0.0700
+vertex -0.0450 -0.0330 -0.0700
+vertex -0.0450 -0.0330 -0.1040
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0250 0.0500 0.0000
-vertex 0.0250 0.0500 -0.0200
-vertex 0.0213 0.0573 -0.0200
+vertex 0.0450 -0.0330 -0.0700
+vertex 0.0450 -0.0430 -0.0700
+vertex 0.0450 -0.0430 -0.1040
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0213 0.0573 -0.0200
-vertex -0.0000 0.1000 -0.0200
-vertex 0.0250 0.0500 0.0000
+vertex 0.0450 -0.0430 -0.1040
+vertex 0.0450 -0.0330 -0.1040
+vertex 0.0450 -0.0330 -0.0700
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0000 0.0500 0.0000
-vertex 0.0250 0.0500 0.0000
-vertex -0.0000 0.1000 -0.0200
+vertex -0.0950 -0.0430 -0.1400
+vertex -0.0900 -0.0430 -0.1400
+vertex -0.0900 -0.0190 -0.1400
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0000 0.0500 0.0000
-vertex -0.0000 0.1000 -0.0200
-vertex -0.0250 0.0500 0.0000
+vertex -0.0900 -0.0190 -0.1400
+vertex -0.0950 -0.0190 -0.1400
+vertex -0.0950 -0.0430 -0.1400
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0213 0.0573 -0.0200
-vertex -0.0250 0.0500 -0.0200
-vertex -0.0250 0.0500 0.0000
+vertex -0.0280 -0.0430 -0.1231
+vertex -0.0280 -0.0530 -0.1231
+vertex -0.0450 -0.0530 -0.1061
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0250 0.0500 0.0000
-vertex -0.0000 0.1000 -0.0200
-vertex -0.0213 0.0573 -0.0200
-endloop
-endfacet
-facet normal 0 0 0
-outer loop
-vertex 0.0250 0.0500 -0.0200
-vertex 0.0250 0.0500 0.0000
-vertex 0.0213 0.0573 -0.0200
-endloop
-endfacet
-facet normal 0 0 0
-outer loop
-vertex 0.0250 0.0500 -0.0200
-vertex 0.0213 0.0573 -0.0200
-vertex 0.0250 0.0500 0.0000
-endloop
-endfacet
-facet normal 0 0 0
-outer loop
-vertex -0.0250 0.0500 -0.0200
-vertex -0.0213 0.0573 -0.0200
-vertex -0.0250 0.0500 0.0000
-endloop
-endfacet
-facet normal 0 0 0
-outer loop
-vertex -0.0250 0.0500 -0.0200
-vertex -0.0250 0.0500 0.0000
-vertex -0.0213 0.0573 -0.0200
-endloop
-endfacet
-facet normal 0 0 0
-outer loop
-vertex 0.0600 -0.0100 0.0000
-vertex 0.0600 0.0000 0.0000
-vertex 0.0000 0.0000 0.0000
-endloop
-endfacet
-facet normal 0 0 0
-outer loop
-vertex 0.0000 0.0000 0.0000
-vertex 0.0000 -0.0100 0.0000
-vertex 0.0600 -0.0100 0.0000
-endloop
-endfacet
-facet normal 0 0 0
-outer loop
-vertex 0.1780 -0.0617 -0.0000
-vertex 0.1680 -0.0617 -0.0000
-vertex 0.1680 -0.0807 0.0191
-endloop
-endfacet
-facet normal 0 0 0
-outer loop
-vertex 0.1680 -0.0807 0.0191
-vertex 0.1780 -0.0807 0.0191
-vertex 0.1780 -0.0617 -0.0000
-endloop
-endfacet
-facet normal 0 0 0
-outer loop
-vertex 0.1470 -0.0340 -0.0000
-vertex 0.1570 -0.0340 -0.0000
-vertex 0.1570 0.0000 -0.0000
-endloop
-endfacet
-facet normal 0 0 0
-outer loop
-vertex 0.1570 0.0000 -0.0000
-vertex 0.1470 0.0000 -0.0000
-vertex 0.1470 -0.0340 -0.0000
-endloop
-endfacet
-facet normal 0 0 0
-outer loop
-vertex 0.0810 0.0000 -0.0000
-vertex 0.0710 0.0000 -0.0000
-vertex 0.0710 -0.0340 -0.0000
-endloop
-endfacet
-facet normal 0 0 0
-outer loop
-vertex 0.0710 -0.0340 -0.0000
-vertex 0.0810 -0.0340 -0.0000
-vertex 0.0810 0.0000 -0.0000
-endloop
-endfacet
-facet normal 0 0 0
-outer loop
-vertex 0.1570 -0.0700 0.0500
-vertex 0.1570 -0.0700 0.0450
-vertex 0.1330 -0.0700 0.0450
-endloop
-endfacet
-facet normal 0 0 0
-outer loop
-vertex 0.1330 -0.0700 0.0450
-vertex 0.1330 -0.0700 0.0500
-vertex 0.1570 -0.0700 0.0500
-endloop
-endfacet
-facet normal 0 0 0
-outer loop
-vertex 0.1570 -0.0531 -0.0170
-vertex 0.1670 -0.0531 -0.0170
-vertex 0.1670 -0.0361 0.0000
-endloop
-endfacet
-facet normal 0 0 0
-outer loop
-vertex 0.1670 -0.0361 0.0000
-vertex 0.1570 -0.0361 0.0000
-vertex 0.1570 -0.0531 -0.0170
+vertex -0.0450 -0.0530 -0.1061
+vertex -0.0450 -0.0430 -0.1061
+vertex -0.0280 -0.0430 -0.1231
 endloop
 endfacet
 facet normal 0 0 0
@@ -3907,16 +3935,16 @@ endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.2280 -0.0291 -0.0071
-vertex 0.2280 -0.0361 0.0000
-vertex 0.2280 -0.0531 -0.0170
+vertex -0.0379 -0.1140 -0.0991
+vertex -0.0450 -0.1140 -0.1061
+vertex -0.0280 -0.1140 -0.1231
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.2280 -0.0531 -0.0170
-vertex 0.2280 -0.0460 -0.0240
-vertex 0.2280 -0.0291 -0.0071
+vertex -0.0280 -0.1140 -0.1231
+vertex -0.0210 -0.1140 -0.1160
+vertex -0.0379 -0.1140 -0.0991
 endloop
 endfacet
 facet normal 0 0 0
@@ -3963,72 +3991,16 @@ endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.2280 -0.0531 -0.0631
-vertex 0.2280 -0.0531 -0.0531
-vertex 0.1670 -0.0531 -0.0531
-endloop
-endfacet
-facet normal 0 0 0
-outer loop
-vertex 0.1670 -0.0531 -0.0531
-vertex 0.1670 -0.0531 -0.0631
-vertex 0.2280 -0.0531 -0.0631
-endloop
-endfacet
-facet normal 0 0 0
-outer loop
-vertex -0.0216 -0.0575 -0.0173
-vertex -0.0213 -0.0573 -0.0200
-vertex -0.0250 -0.0500 -0.0200
-endloop
-endfacet
-facet normal 0 0 0
-outer loop
-vertex -0.0250 -0.0500 -0.0200
-vertex -0.0253 -0.0501 -0.0173
-vertex -0.0216 -0.0575 -0.0173
-endloop
-endfacet
-facet normal 0 0 0
-outer loop
-vertex 0.0253 -0.0501 -0.0173
-vertex 0.0250 -0.0500 -0.0200
-vertex 0.0213 -0.0573 -0.0200
-endloop
-endfacet
-facet normal 0 0 0
-outer loop
-vertex 0.0213 -0.0573 -0.0200
-vertex 0.0216 -0.0575 -0.0173
-vertex 0.0253 -0.0501 -0.0173
-endloop
-endfacet
-facet normal 0 0 0
-outer loop
-vertex 0.0216 0.0575 -0.0173
-vertex 0.0213 0.0573 -0.0200
-vertex 0.0250 0.0500 -0.0200
-endloop
-endfacet
-facet normal 0 0 0
-outer loop
-vertex 0.0250 0.0500 -0.0200
-vertex 0.0253 0.0501 -0.0173
-vertex 0.0216 0.0575 -0.0173
-endloop
-endfacet
-facet normal 0 0 0
-outer loop
-vertex -0.0253 0.0501 -0.0173
-vertex -0.0250 0.0500 -0.0200
-vertex -0.0213 0.0573 -0.0200
+vertex 0.0181 -0.1140 -0.1231
+vertex 0.0081 -0.1140 -0.1231
+vertex 0.0081 -0.0530 -0.1231
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0213 0.0573 -0.0200
-vertex -0.0216 0.0575 -0.0173
-vertex -0.0253 0.0501 -0.0173
+vertex 0.0081 -0.0530 -0.1231
+vertex 0.0181 -0.0530 -0.1231
+vertex 0.0181 -0.1140 -0.1231
 endloop
 endfacet
 endsolid python
diff --git a/rocolib/output/BoatWithServoStackBattery/graph-silhouette.dxf b/rocolib/output/BoatWithServoStackBattery/graph-silhouette.dxf
index 5d79951aded7ba6258eeccd255f7263a8e10ada7..9470c890f1d76c59a98e67e71b7942882d2cdb72 100644
--- a/rocolib/output/BoatWithServoStackBattery/graph-silhouette.dxf
+++ b/rocolib/output/BoatWithServoStackBattery/graph-silhouette.dxf
@@ -938,74 +938,82 @@ MVIEW
 }
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
 0
  10
-228.00000000000003
+280.00000000000006
  20
-150.30855600000004
+70.00000000000001
  30
 0.0
  11
-228.00000000000003
+280.00000000000006
  21
-150.30855600000004
+298.00000000000006
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
 0
  10
-0.0
+190.00000000000003
  20
-150.30855600000004
+70.00000000000001
  30
 0.0
  11
-228.00000000000003
+190.00000000000003
  21
-150.30855600000004
+298.00000000000006
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
 0
  10
-0.0
+235.00000000000003
  20
-150.30855600000004
+70.00000000000001
  30
 0.0
  11
-0.0
+190.00000000000003
  21
-150.30855600000004
+70.00000000000001
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
 0
  10
-0.0
+280.00000000000006
  20
-140.30855600000004
+70.00000000000001
  30
 0.0
  11
-0.0
+235.00000000000003
  21
-150.30855600000004
+70.00000000000001
  31
 0.0
   0
@@ -1015,15 +1023,15 @@ LINE
   8
 0
  10
-60.00000000000001
+260.0
  20
-140.30855600000004
+-2.8421709430404014e-14
  30
 0.0
  11
-0.0
+190.00000000000003
  21
-140.30855600000004
+-2.8421709430404014e-14
  31
 0.0
   0
@@ -1033,51 +1041,55 @@ LINE
   8
 0
  10
-60.00000000000001
+235.00000000000003
  20
-150.30855600000004
+-2.8421709430404014e-14
  30
 0.0
  11
-60.00000000000001
+260.0
  21
-140.30855600000004
+-2.8421709430404014e-14
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
 0
  10
-133.00000000000003
+190.00000000000003
  20
-150.30855600000004
+70.0
  30
 0.0
  11
-60.00000000000001
+190.00000000000003
  21
-150.30855600000004
+-2.8421709430404014e-14
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+3
   8
 0
  10
-167.00000000000003
+190.00000000000003
  20
-150.30855600000004
+70.0
  30
 0.0
  11
-157.0
+120.00000000000003
  21
-150.30855600000004
+-2.8421709430404014e-14
  31
 0.0
   0
@@ -1087,51 +1099,35 @@ LINE
   8
 0
  10
-228.00000000000003
+190.00000000000003
  20
-150.30855600000004
+-2.8421709430404014e-14
  30
 0.0
  11
-228.00000000000003
+120.00000000000003
  21
-150.30855600000004
+-2.8421709430404014e-14
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+3
   8
 0
  10
-60.00000000000001
+120.00000000000001
  20
-150.30855600000004
+70.0
  30
 0.0
  11
-60.00000000000001
+120.00000000000001
  21
-150.30855600000004
- 31
-0.0
-  0
-LINE
- 62
-5
-  8
-0
- 10
-157.0
- 20
-150.30855600000004
- 30
 0.0
- 11
-157.0
- 21
-116.30855600000002
  31
 0.0
   0
@@ -1143,15 +1139,15 @@ DOTTED
   8
 0
  10
-133.00000000000003
+190.00000000000003
  20
-116.30855600000002
+70.00000000000001
  30
 0.0
  11
-133.00000000000003
+120.00000000000001
  21
-150.30855600000004
+70.0
  31
 0.0
   0
@@ -1161,35 +1157,33 @@ LINE
   8
 0
  10
-133.00000000000003
+96.66666666666666
  20
-80.30855600000002
+70.0
  30
 0.0
  11
-133.00000000000003
+120.00000000000001
  21
-116.30855600000002
+70.0
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-3
+5
   8
 0
  10
-133.00000000000003
+96.66666666666669
  20
-80.30855600000002
+0.0
  30
 0.0
  11
-157.0
+96.66666666666666
  21
-80.30855600000002
+70.0
  31
 0.0
   0
@@ -1199,69 +1193,75 @@ LINE
   8
 0
  10
-157.0
+120.00000000000003
  20
-116.30855600000002
+0.0
  30
 0.0
  11
-157.0
+96.66666666666669
  21
-80.30855600000002
+0.0
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
 0
  10
-157.0
+120.0
  20
-80.30855600000002
+298.00000000000006
  30
 0.0
  11
-157.0
+190.00000000000003
  21
-35.30855600000002
+298.00000000000006
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+3
   8
 0
  10
-133.00000000000003
+119.99999999999999
  20
-35.30855600000002
+368.00000000000006
  30
 0.0
  11
-133.00000000000003
+190.00000000000003
  21
-80.30855600000002
+298.00000000000006
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+3
   8
 0
  10
-133.00000000000003
+119.99999999999999
  20
-30.308556000000017
+368.00000000000006
  30
 0.0
  11
-133.00000000000003
+120.0
  21
-35.30855600000002
+298.00000000000006
  31
 0.0
   0
@@ -1271,33 +1271,35 @@ LINE
   8
 0
  10
-157.0
+119.99999999999999
  20
-30.308556000000017
+368.00000000000006
  30
 0.0
  11
-133.00000000000003
+190.0
  21
-30.308556000000017
+368.00000000000006
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
 0
  10
-157.0
+190.0
  20
-35.30855600000002
+368.00000000000006
  30
 0.0
  11
-157.0
+190.00000000000003
  21
-30.308556000000017
+298.00000000000006
  31
 0.0
   0
@@ -1307,15 +1309,15 @@ LINE
   8
 0
  10
-133.00000000000003
+259.99999999999994
  20
-116.30855600000002
+368.00000000000006
  30
 0.0
  11
-113.00000000000001
+235.0
  21
-116.30855600000002
+368.00000000000006
  31
 0.0
   0
@@ -1325,15 +1327,15 @@ LINE
   8
 0
  10
-113.00000000000001
+190.0
  20
-150.30855600000004
+368.00000000000006
  30
 0.0
  11
-133.00000000000003
+259.99999999999994
  21
-150.30855600000004
+368.00000000000006
  31
 0.0
   0
@@ -1345,51 +1347,15 @@ DOTTED
   8
 0
  10
-113.00000000000001
- 20
-116.30855600000002
- 30
-0.0
- 11
-113.00000000000001
- 21
-150.30855600000004
- 31
-0.0
-  0
-LINE
- 62
-5
-  8
-0
- 10
-113.00000000000001
+190.00000000000003
  20
-116.30855600000002
+298.00000000000006
  30
 0.0
  11
-89.00000000000001
+235.00000000000003
  21
-116.30855600000002
- 31
-0.0
-  0
-LINE
- 62
-5
-  8
-0
- 10
-89.00000000000001
- 20
-150.30855600000004
- 30
-0.0
- 11
-113.00000000000001
- 21
-150.30855600000004
+298.00000000000006
  31
 0.0
   0
@@ -1401,15 +1367,15 @@ DOTTED
   8
 0
  10
-89.00000000000001
+235.00000000000003
  20
-116.30855600000002
+298.00000000000006
  30
 0.0
  11
-89.00000000000001
+280.00000000000006
  21
-150.30855600000004
+298.00000000000006
  31
 0.0
   0
@@ -1419,15 +1385,15 @@ LINE
   8
 0
  10
-89.00000000000001
+210.00000000000003
  20
-116.30855600000002
+368.00000000000006
  30
 0.0
  11
-69.00000000000001
+280.00000000000006
  21
-116.30855600000002
+368.00000000000006
  31
 0.0
   0
@@ -1437,15 +1403,15 @@ LINE
   8
 0
  10
-69.00000000000001
+235.0
  20
-150.30855600000004
+368.00000000000006
  30
 0.0
  11
-89.00000000000001
+210.00000000000003
  21
-150.30855600000004
+368.00000000000006
  31
 0.0
   0
@@ -1457,33 +1423,35 @@ DOTTED
   8
 0
  10
-69.00000000000001
+280.00000000000006
  20
-150.30855600000004
+298.00000000000006
  30
 0.0
  11
-69.00000000000001
+280.00000000000006
  21
-116.30855600000002
+368.00000000000006
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+3
   8
 0
  10
-59.00000000000001
+280.00000000000006
  20
-150.30855600000004
+298.00000000000006
  30
 0.0
  11
-69.00000000000001
+350.0
  21
-150.30855600000004
+368.00000000000006
  31
 0.0
   0
@@ -1493,33 +1461,35 @@ LINE
   8
 0
  10
-59.00000000000001
+280.00000000000006
  20
-116.30855600000002
+368.00000000000006
  30
 0.0
  11
-59.00000000000001
+350.0
  21
-150.30855600000004
+368.00000000000006
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+3
   8
 0
  10
-69.00000000000001
+350.0
  20
-116.30855600000002
+298.0000000000001
  30
 0.0
  11
-59.00000000000001
+350.0
  21
-116.30855600000002
+368.00000000000006
  31
 0.0
   0
@@ -1531,15 +1501,15 @@ DOTTED
   8
 0
  10
-167.00000000000003
+280.00000000000006
  20
-114.16993400081472
+298.00000000000006
  30
 0.0
  11
-228.00000000000003
+350.0
  21
-114.16993400081472
+298.0000000000001
  31
 0.0
   0
@@ -1549,15 +1519,15 @@ LINE
   8
 0
  10
-228.00000000000003
+373.3333333333333
  20
-150.30855600000004
+298.0000000000001
  30
 0.0
  11
-228.00000000000003
+350.0
  21
-114.16993400081472
+298.0000000000001
  31
 0.0
   0
@@ -1567,35 +1537,33 @@ LINE
   8
 0
  10
-167.00000000000003
+373.33333333333326
  20
-114.16993400081472
+368.00000000000006
  30
 0.0
  11
-167.00000000000003
+373.3333333333333
  21
-150.30855600000004
+298.0000000000001
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
 0
  10
-228.00000000000003
+349.99999999999994
  20
-90.16993400081472
+368.00000000000006
  30
 0.0
  11
-167.00000000000003
+373.33333333333326
  21
-90.16993400081472
+368.00000000000006
  31
 0.0
   0
@@ -1607,51 +1575,55 @@ DOTTED
   8
 0
  10
-228.00000000000003
+350.00000000000006
  20
-90.16993400081472
+70.0
  30
 0.0
  11
-228.00000000000003
+280.0000000000001
  21
-114.16993400081472
+69.99999999999997
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+3
   8
 0
  10
-167.00000000000003
+350.00000000000006
  20
-54.03131200162941
+-2.8421709430404014e-14
  30
 0.0
  11
-167.00000000000003
+280.0000000000001
  21
-90.16993400081473
+69.99999999999996
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+3
   8
 0
  10
-228.00000000000003
+350.00000000000006
  20
-90.16993400081473
+-2.8421709430404014e-14
  30
 0.0
  11
-228.00000000000003
+350.00000000000006
  21
-54.03131200162941
+69.99999999999999
  31
 0.0
   0
@@ -1661,33 +1633,35 @@ LINE
   8
 0
  10
-167.00000000000003
+350.00000000000006
  20
-44.03131200162941
+-2.8421709430404014e-14
  30
 0.0
  11
-167.00000000000003
+280.00000000000017
  21
-54.03131200162941
+-5.684341886080803e-14
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
 0
  10
-228.00000000000003
+280.00000000000017
  20
-44.03131200162941
+-5.684341886080803e-14
  30
 0.0
  11
-167.00000000000003
+280.0000000000001
  21
-44.03131200162941
+69.99999999999997
  31
 0.0
   0
@@ -1697,15 +1671,15 @@ LINE
   8
 0
  10
-228.00000000000003
+210.0000000000001
  20
-54.03131200162941
+-1.1368683772161605e-13
  30
 0.0
  11
-228.00000000000003
+235.00000000000009
  21
-44.03131200162941
+-8.526512829121203e-14
  31
 0.0
   0
@@ -1715,15 +1689,15 @@ LINE
   8
 0
  10
-238.00000000000003
+280.0000000000001
  20
-90.16993400081472
+-5.684341886080803e-14
  30
 0.0
  11
-228.00000000000003
+210.0000000000001
  21
-90.16993400081472
+-1.1368683772161605e-13
  31
 0.0
   0
@@ -1733,51 +1707,15 @@ LINE
   8
 0
  10
-238.00000000000003
+373.33333333333337
  20
-114.16993400081472
- 30
 0.0
- 11
-238.00000000000003
- 21
-90.16993400081472
- 31
-0.0
-  0
-LINE
- 62
-5
-  8
-0
- 10
-228.00000000000003
- 20
-114.16993400081472
  30
 0.0
  11
-238.00000000000003
+350.00000000000006
  21
-114.16993400081472
- 31
-0.0
-  0
-LINE
- 62
-5
-  8
-0
- 10
-157.0
- 20
-114.16993400081472
- 30
 0.0
- 11
-167.00000000000003
- 21
-114.16993400081472
  31
 0.0
   0
@@ -1787,33 +1725,15 @@ LINE
   8
 0
  10
-157.0
+373.33333333333337
  20
-90.16993400081472
+70.00000000000003
  30
 0.0
  11
-157.0
+373.33333333333337
  21
-114.16993400081472
- 31
 0.0
-  0
-LINE
- 62
-5
-  8
-0
- 10
-167.00000000000003
- 20
-90.16993400081472
- 30
-0.0
- 11
-157.0
- 21
-90.16993400081472
  31
 0.0
   0
@@ -1823,15 +1743,15 @@ LINE
   8
 0
  10
-40.00000000000001
+350.00000000000006
  20
-142.80855600000004
+70.00000000000001
  30
 0.0
  11
-45.0
+373.33333333333337
  21
-142.80855600000004
+70.00000000000003
  31
 0.0
   0
@@ -1841,15 +1761,15 @@ LINE
   8
 0
  10
-45.0
+350.0
  20
-142.80855600000004
+298.0000000000001
  30
 0.0
  11
-40.00000000000001
+350.0
  21
-147.80855600000004
+298.0000000000001
  31
 0.0
   0
@@ -1859,15 +1779,15 @@ LINE
   8
 0
  10
-40.00000000000001
+350.00000000000006
  20
-147.80855600000004
+70.0
  30
 0.0
  11
-20.000000000000004
+350.00000000000006
  21
-147.80855600000004
+70.0
  31
 0.0
   0
@@ -1877,15 +1797,15 @@ LINE
   8
 0
  10
-20.000000000000004
+350.0
  20
-147.80855600000004
+131.0
  30
 0.0
  11
-15.000000000000002
+350.00000000000006
  21
-142.80855600000004
+70.0
  31
 0.0
   0
@@ -1895,15 +1815,15 @@ LINE
   8
 0
  10
-15.000000000000002
+350.0
  20
-142.80855600000004
+141.0
  30
 0.0
  11
-20.000000000000004
+350.0
  21
-142.80855600000004
+131.0
  31
 0.0
   0
@@ -1913,15 +1833,15 @@ LINE
   8
 0
  10
-149.25000000000003
+350.0
  20
-139.2252226666667
+238.00000000000003
  30
 0.0
  11
-149.25000000000003
+350.0
  21
-127.39188933333337
+165.00000000000003
  31
 0.0
   0
@@ -1931,15 +1851,15 @@ LINE
   8
 0
  10
-149.25000000000003
+350.0
  20
-127.39188933333337
+238.00000000000003
  30
 0.0
  11
-149.75
+350.0
  21
-127.39188933333337
+238.00000000000003
  31
 0.0
   0
@@ -1949,15 +1869,15 @@ LINE
   8
 0
  10
-149.75
+350.00000000000006
  20
-127.39188933333337
+70.0
  30
 0.0
  11
-149.75
+350.00000000000006
  21
-139.2252226666667
+70.0
  31
 0.0
   0
@@ -1967,33 +1887,35 @@ LINE
   8
 0
  10
-149.75
+384.00000000000006
  20
-139.2252226666667
+141.0
  30
 0.0
  11
-149.25000000000003
+350.0
  21
-139.2252226666667
+141.0
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
 0
  10
-149.00000000000003
+350.0
  20
-31.558556000000014
+165.00000000000003
  30
 0.0
  11
-151.50000000000003
+384.00000000000006
  21
-31.558556000000014
+165.00000000000006
  31
 0.0
   0
@@ -2003,33 +1925,35 @@ LINE
   8
 0
  10
-151.50000000000003
+420.00000000000006
  20
-31.558556000000014
+141.00000000000003
  30
 0.0
  11
-149.00000000000003
+384.00000000000006
  21
-34.05855600000001
+141.0
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+3
   8
 0
  10
-149.00000000000003
+420.00000000000006
  20
-34.05855600000001
+141.00000000000003
  30
 0.0
  11
-141.0
+420.00000000000006
  21
-34.05855600000001
+165.00000000000006
  31
 0.0
   0
@@ -2039,15 +1963,15 @@ LINE
   8
 0
  10
-141.0
+384.00000000000006
  20
-34.05855600000001
+165.00000000000006
  30
 0.0
  11
-138.5
+420.00000000000006
  21
-31.558556000000014
+165.00000000000006
  31
 0.0
   0
@@ -2057,15 +1981,15 @@ LINE
   8
 0
  10
-138.5
+420.00000000000006
  20
-31.558556000000014
+165.00000000000006
  30
 0.0
  11
-141.0
+465.00000000000006
  21
-31.558556000000014
+165.00000000000009
  31
 0.0
   0
@@ -2075,15 +1999,15 @@ LINE
   8
 0
  10
-114.00000000000001
+465.00000000000006
  20
-127.30855600000004
+141.00000000000006
  30
 0.0
  11
-118.00000000000001
+420.00000000000006
  21
-127.30855600000004
+141.00000000000003
  31
 0.0
   0
@@ -2093,15 +2017,15 @@ LINE
   8
 0
  10
-118.00000000000001
+465.00000000000006
  20
-127.30855600000004
+165.00000000000009
  30
 0.0
  11
-118.00000000000001
+465.00000000000006
  21
-139.30855600000004
+141.00000000000006
  31
 0.0
   0
@@ -2111,15 +2035,15 @@ LINE
   8
 0
  10
-118.00000000000001
+350.0
  20
-139.30855600000004
+165.00000000000003
  30
 0.0
  11
-114.00000000000001
+350.0
  21
-139.30855600000004
+185.00000000000003
  31
 0.0
   0
@@ -2129,33 +2053,35 @@ LINE
   8
 0
  10
-114.00000000000001
+384.00000000000006
  20
-139.30855600000004
+185.00000000000006
  30
 0.0
  11
-114.00000000000001
+384.00000000000006
  21
-127.30855600000004
+165.00000000000006
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
 0
  10
-126.00000000000001
+350.0
  20
-128.808556
+185.00000000000003
  30
 0.0
  11
-130.0
+384.00000000000006
  21
-128.808556
+185.00000000000006
  31
 0.0
   0
@@ -2165,15 +2091,15 @@ LINE
   8
 0
  10
-130.0
+350.0
  20
-128.808556
+185.00000000000003
  30
 0.0
  11
-130.0
+350.0
  21
-137.808556
+209.00000000000003
  31
 0.0
   0
@@ -2183,33 +2109,35 @@ LINE
   8
 0
  10
-130.0
+384.00000000000006
  20
-137.808556
+209.00000000000006
  30
 0.0
  11
-126.00000000000001
+384.00000000000006
  21
-137.808556
+185.00000000000006
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
 0
  10
-126.00000000000001
+350.0
  20
-137.808556
+209.00000000000003
  30
 0.0
  11
-126.00000000000001
+384.00000000000006
  21
-128.808556
+209.00000000000006
  31
 0.0
   0
@@ -2219,15 +2147,15 @@ LINE
   8
 0
  10
-89.50000000000001
+350.0
  20
-127.30855600000004
+209.00000000000006
  30
 0.0
  11
-112.50000000000001
+350.0
  21
-127.30855600000004
+229.00000000000006
  31
 0.0
   0
@@ -2237,33 +2165,35 @@ LINE
   8
 0
  10
-112.50000000000001
+384.00000000000006
  20
-127.30855600000004
+229.00000000000006
  30
 0.0
  11
-112.50000000000001
+384.00000000000006
  21
-139.30855600000004
+209.00000000000006
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
 0
  10
-112.50000000000001
+384.00000000000006
  20
-139.30855600000004
+229.00000000000006
  30
 0.0
  11
-89.50000000000001
+350.0
  21
-139.30855600000004
+229.00000000000006
  31
 0.0
   0
@@ -2273,15 +2203,15 @@ LINE
   8
 0
  10
-89.50000000000001
+384.00000000000006
  20
-139.30855600000004
+239.00000000000006
  30
 0.0
  11
-89.50000000000001
+384.00000000000006
  21
-127.30855600000004
+229.00000000000006
  31
 0.0
   0
@@ -2291,15 +2221,15 @@ LINE
   8
 0
  10
-84.0
+350.0
  20
-127.30855600000004
+239.00000000000006
  30
 0.0
  11
-88.00000000000001
+384.00000000000006
  21
-127.30855600000004
+239.00000000000006
  31
 0.0
   0
@@ -2309,15 +2239,15 @@ LINE
   8
 0
  10
-88.00000000000001
+350.0
  20
-127.30855600000004
+229.00000000000006
  30
 0.0
  11
-88.00000000000001
+350.0
  21
-139.30855600000004
+239.00000000000006
  31
 0.0
   0
@@ -2327,15 +2257,15 @@ LINE
   8
 0
  10
-88.00000000000001
+350.0
  20
-139.30855600000004
+298.00000000000006
  30
 0.0
  11
-84.0
+411.65427803486153
  21
-139.30855600000004
+298.0000000000001
  31
 0.0
   0
@@ -2345,33 +2275,35 @@ LINE
   8
 0
  10
-84.0
+411.65427803486153
  20
-139.30855600000004
+238.00000000000009
  30
 0.0
  11
-84.0
+350.0
  21
-127.30855600000004
+238.00000000000003
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+3
   8
 0
  10
-61.50000000000001
+411.65427803486153
  20
-127.64188933333337
+238.00000000000009
  30
 0.0
  11
-66.50000000000001
+411.65427803486153
  21
-127.64188933333337
+298.0000000000001
  31
 0.0
   0
@@ -2381,51 +2313,55 @@ LINE
   8
 0
  10
-66.50000000000001
+438.65427803486153
  20
-127.64188933333337
+238.00000000000009
  30
 0.0
  11
-66.50000000000001
+411.65427803486153
  21
-138.9752226666667
+238.00000000000009
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+3
   8
 0
  10
-66.50000000000001
+438.65427803486153
  20
-138.9752226666667
+298.0000000000001
  30
 0.0
  11
-61.50000000000001
+438.65427803486153
  21
-138.9752226666667
+238.00000000000009
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
 0
  10
-185.00000000000003
+411.65427803486153
  20
-95.66993400081472
+298.0000000000001
  30
 0.0
  11
-196.00000000000003
+438.65427803486153
  21
-95.66993400081472
+298.0000000000001
  31
 0.0
   0
@@ -2435,15 +2371,15 @@ LINE
   8
 0
  10
-196.00000000000003
+500.30855606972295
  20
-95.66993400081472
+238.0000000000001
  30
 0.0
  11
-196.00000000000003
+438.65427803486153
  21
-108.66993400081472
+238.00000000000009
  31
 0.0
   0
@@ -2453,15 +2389,15 @@ LINE
   8
 0
  10
-196.00000000000003
+500.30855606972295
  20
-108.66993400081472
+298.00000000000017
  30
 0.0
  11
-185.00000000000003
+500.30855606972295
  21
-108.66993400081472
+238.0000000000001
  31
 0.0
   0
@@ -2471,15 +2407,15 @@ LINE
   8
 0
  10
-185.00000000000003
+438.6542780348615
  20
-108.66993400081472
+298.0000000000001
  30
 0.0
  11
-185.00000000000003
+500.30855606972295
  21
-95.66993400081472
+298.00000000000017
  31
 0.0
   0
@@ -2489,15 +2425,15 @@ LINE
   8
 0
  10
-216.50000000000003
+411.6542780348615
  20
-97.16993400081472
+298.0000000000001
  30
 0.0
  11
-222.50000000000003
+411.6542780348615
  21
-97.16993400081472
+315.0000000000001
  31
 0.0
   0
@@ -2507,33 +2443,35 @@ LINE
   8
 0
  10
-222.50000000000003
+438.6542780348615
  20
-97.16993400081472
+315.00000000000017
  30
 0.0
  11
-222.50000000000003
+438.6542780348615
  21
-107.16993400081472
+298.0000000000001
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
 0
  10
-222.50000000000003
+411.6542780348615
  20
-107.16993400081472
+315.0000000000001
  30
 0.0
  11
-216.50000000000003
+438.6542780348615
  21
-107.16993400081472
+315.00000000000017
  31
 0.0
   0
@@ -2543,15 +2481,15 @@ LINE
   8
 0
  10
-216.50000000000003
+411.6542780348615
  20
-107.16993400081472
+315.0000000000001
  30
 0.0
  11
-216.50000000000003
+411.6542780348615
  21
-97.16993400081472
+375.00000000000017
  31
 0.0
   0
@@ -2561,33 +2499,35 @@ LINE
   8
 0
  10
-216.90909090909093
+438.6542780348615
  20
-46.5313120016294
+375.00000000000017
  30
 0.0
  11
-216.90909090909093
+438.6542780348615
  21
-51.53131200162941
+315.00000000000017
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
 0
  10
-216.90909090909093
+411.6542780348615
  20
-51.53131200162941
+375.00000000000017
  30
 0.0
  11
-205.81818181818184
+438.6542780348615
  21
-51.53131200162941
+375.00000000000017
  31
 0.0
   0
@@ -2597,15 +2537,15 @@ LINE
   8
 0
  10
-205.81818181818184
+411.6542780348614
  20
-51.53131200162941
+375.00000000000017
  30
 0.0
  11
-205.81818181818184
+411.6542780348614
  21
-46.5313120016294
+392.00000000000017
  31
 0.0
   0
@@ -2615,33 +2555,35 @@ LINE
   8
 0
  10
-189.18181818181822
+438.65427803486136
  20
-46.5313120016294
+392.00000000000017
  30
 0.0
  11
-189.18181818181822
+438.65427803486136
  21
-51.53131200162941
+375.00000000000017
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
 0
  10
-189.18181818181822
+438.65427803486136
  20
-51.53131200162941
+392.00000000000017
  30
 0.0
  11
-178.09090909090912
+411.6542780348614
  21
-51.53131200162941
+392.00000000000017
  31
 0.0
   0
@@ -2651,15 +2593,15 @@ LINE
   8
 0
  10
-178.09090909090912
+438.65427803486136
  20
-51.53131200162941
+402.00000000000017
  30
 0.0
  11
-178.09090909090912
+438.65427803486136
  21
-46.5313120016294
+392.00000000000017
  31
 0.0
   0
@@ -2669,15 +2611,15 @@ LINE
   8
 0
  10
-235.50000000000003
+411.6542780348614
  20
-106.16993400081472
+402.00000000000017
  30
 0.0
  11
-230.50000000000003
+438.65427803486136
  21
-106.16993400081472
+402.00000000000017
  31
 0.0
   0
@@ -2687,15 +2629,15 @@ LINE
   8
 0
  10
-230.50000000000003
+411.6542780348614
  20
-106.16993400081472
+392.00000000000017
  30
 0.0
  11
-230.50000000000003
+411.6542780348614
  21
-98.16993400081472
+402.00000000000017
  31
 0.0
   0
@@ -2705,15 +2647,15 @@ LINE
   8
 0
  10
-230.50000000000003
+96.66666666666666
  20
-98.16993400081472
+368.00000000000006
  30
 0.0
  11
-235.50000000000003
+120.0
  21
-98.16993400081472
+368.00000000000006
  31
 0.0
   0
@@ -2723,15 +2665,15 @@ LINE
   8
 0
  10
-159.5
+96.66666666666666
  20
-98.16993400081472
+298.00000000000006
  30
 0.0
  11
-164.50000000000003
+96.66666666666666
  21
-98.16993400081472
+368.00000000000006
  31
 0.0
   0
@@ -2741,15 +2683,15 @@ LINE
   8
 0
  10
-164.50000000000003
+120.0
  20
-98.16993400081472
+298.00000000000006
  30
 0.0
  11
-164.50000000000003
+96.66666666666666
  21
-106.16993400081472
+298.00000000000006
  31
 0.0
   0
@@ -2759,15 +2701,15 @@ LINE
   8
 0
  10
-164.50000000000003
+120.00000000000001
  20
-106.16993400081472
+70.00000000000001
  30
 0.0
  11
-159.5
+120.00000000000001
  21
-106.16993400081472
+70.00000000000001
  31
 0.0
   0
@@ -2777,15 +2719,15 @@ LINE
   8
 0
  10
-476.00000000000006
+120.0
  20
-150.30855600000004
+298.00000000000006
  30
 0.0
  11
-476.00000000000006
+120.0
  21
-150.30855600000004
+298.00000000000006
  31
 0.0
   0
@@ -2795,15 +2737,15 @@ LINE
   8
 0
  10
-248.00000000000006
+110.0
  20
-150.30855600000004
+298.00000000000006
  30
 0.0
  11
-476.00000000000006
+120.0
  21
-150.30855600000004
+298.00000000000006
  31
 0.0
   0
@@ -2813,15 +2755,15 @@ LINE
   8
 0
  10
-248.00000000000006
+110.0
  20
-150.30855600000004
+238.00000000000003
  30
 0.0
  11
-248.00000000000006
+110.0
  21
-150.30855600000004
+298.00000000000006
  31
 0.0
   0
@@ -2831,15 +2773,15 @@ LINE
   8
 0
  10
-309.0
+120.0
  20
-150.30855600000004
+238.00000000000003
  30
 0.0
  11
-248.00000000000006
+110.0
  21
-150.30855600000004
+238.00000000000003
  31
 0.0
   0
@@ -2849,15 +2791,15 @@ LINE
   8
 0
  10
-319.0
+120.0
  20
-150.30855600000004
+165.00000000000003
  30
 0.0
  11
-309.0
+120.0
  21
-150.30855600000004
+238.00000000000003
  31
 0.0
   0
@@ -2867,15 +2809,15 @@ LINE
   8
 0
  10
-416.00000000000006
+120.00000000000001
  20
-150.30855600000004
+131.0
  30
 0.0
  11
-343.00000000000006
+120.0
  21
-150.30855600000004
+141.0
  31
 0.0
   0
@@ -2885,15 +2827,15 @@ LINE
   8
 0
  10
-416.00000000000006
+120.00000000000001
  20
-150.30855600000004
+70.00000000000001
  30
 0.0
  11
-416.00000000000006
+120.00000000000001
  21
-150.30855600000004
+70.00000000000001
  31
 0.0
   0
@@ -2903,15 +2845,15 @@ LINE
   8
 0
  10
-248.00000000000006
+120.0
  20
-150.30855600000004
+238.00000000000003
  30
 0.0
  11
-248.00000000000006
+120.0
  21
-150.30855600000004
+238.00000000000003
  31
 0.0
   0
@@ -2921,15 +2863,15 @@ LINE
   8
 0
  10
-319.0
+120.00000000000001
  20
-116.30855600000002
+141.0
  30
 0.0
  11
-319.0
+86.00000000000001
  21
-150.30855600000004
+141.0
  31
 0.0
   0
@@ -2941,15 +2883,15 @@ DOTTED
   8
 0
  10
-343.00000000000006
+86.00000000000001
  20
-150.30855600000004
+165.00000000000003
  30
 0.0
  11
-343.00000000000006
+120.00000000000001
  21
-116.30855600000002
+165.00000000000003
  31
 0.0
   0
@@ -2959,15 +2901,15 @@ LINE
   8
 0
  10
-319.0
+50.0
  20
-80.30855600000002
+165.00000000000003
  30
 0.0
  11
-319.0
+86.00000000000001
  21
-116.30855600000002
+165.00000000000003
  31
 0.0
   0
@@ -2979,15 +2921,15 @@ DOTTED
   8
 0
  10
-319.0
+50.0
  20
-80.30855600000002
+165.00000000000003
  30
 0.0
  11
-343.00000000000006
+50.0
  21
-80.30855600000002
+141.0
  31
 0.0
   0
@@ -2997,15 +2939,15 @@ LINE
   8
 0
  10
-343.00000000000006
+86.00000000000001
  20
-116.30855600000002
+141.0
  30
 0.0
  11
-343.00000000000006
+50.0
  21
-80.30855600000002
+141.0
  31
 0.0
   0
@@ -3015,15 +2957,15 @@ LINE
   8
 0
  10
-343.00000000000006
+50.0
  20
-80.30855600000002
+141.0
  30
 0.0
  11
-343.00000000000006
+5.000000000000001
  21
-35.30855600000002
+141.0
  31
 0.0
   0
@@ -3033,15 +2975,15 @@ LINE
   8
 0
  10
-319.0
+5.000000000000001
  20
-35.30855600000002
+165.00000000000003
  30
 0.0
  11
-319.0
+50.0
  21
-80.30855600000002
+165.00000000000003
  31
 0.0
   0
@@ -3051,15 +2993,15 @@ LINE
   8
 0
  10
-343.00000000000006
+0.0
  20
-35.30855600000002
+165.00000000000003
  30
 0.0
  11
-319.0
+5.000000000000001
  21
-35.30855600000002
+165.00000000000003
  31
 0.0
   0
@@ -3069,15 +3011,15 @@ LINE
   8
 0
  10
-343.00000000000006
+0.0
  20
-150.30855600000004
+141.0
  30
 0.0
  11
-363.00000000000006
+0.0
  21
-150.30855600000004
+165.00000000000003
  31
 0.0
   0
@@ -3087,35 +3029,15 @@ LINE
   8
 0
  10
-363.00000000000006
+5.000000000000001
  20
-116.30855600000002
+141.0
  30
 0.0
  11
-343.00000000000006
- 21
-116.30855600000002
- 31
-0.0
-  0
-LINE
-  6
-DOTTED
- 62
-1
-  8
-0
- 10
-363.00000000000006
- 20
-150.30855600000004
- 30
 0.0
- 11
-363.00000000000006
  21
-116.30855600000002
+141.0
  31
 0.0
   0
@@ -3125,15 +3047,15 @@ LINE
   8
 0
  10
-363.00000000000006
+86.00000000000001
  20
-150.30855600000004
+165.00000000000003
  30
 0.0
  11
-387.0
+86.00000000000001
  21
-150.30855600000004
+185.00000000000003
  31
 0.0
   0
@@ -3143,15 +3065,15 @@ LINE
   8
 0
  10
-387.0
+120.00000000000001
  20
-116.30855600000002
+185.00000000000003
  30
 0.0
  11
-363.00000000000006
+120.00000000000001
  21
-116.30855600000002
+165.00000000000003
  31
 0.0
   0
@@ -3163,15 +3085,15 @@ DOTTED
   8
 0
  10
-387.0
+86.00000000000001
  20
-150.30855600000004
+185.00000000000003
  30
 0.0
  11
-387.0
+120.00000000000001
  21
-116.30855600000002
+185.00000000000003
  31
 0.0
   0
@@ -3181,15 +3103,15 @@ LINE
   8
 0
  10
-387.0
+86.00000000000001
  20
-150.30855600000004
+185.00000000000003
  30
 0.0
  11
-407.00000000000006
+86.00000000000001
  21
-150.30855600000004
+209.00000000000003
  31
 0.0
   0
@@ -3199,53 +3121,35 @@ LINE
   8
 0
  10
-407.00000000000006
- 20
-116.30855600000002
- 30
-0.0
- 11
-387.0
- 21
-116.30855600000002
- 31
-0.0
-  0
-LINE
-  6
-DOTTED
- 62
-1
-  8
-0
- 10
-407.00000000000006
+120.00000000000001
  20
-116.30855600000002
+209.00000000000003
  30
 0.0
  11
-407.00000000000006
+120.00000000000001
  21
-150.30855600000004
+185.00000000000003
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
 0
  10
-417.00000000000006
+86.00000000000001
  20
-116.30855600000002
+209.00000000000003
  30
 0.0
  11
-407.00000000000006
+120.00000000000001
  21
-116.30855600000002
+209.00000000000003
  31
 0.0
   0
@@ -3255,15 +3159,15 @@ LINE
   8
 0
  10
-417.00000000000006
+86.00000000000001
  20
-150.30855600000004
+209.00000000000003
  30
 0.0
  11
-417.00000000000006
+86.00000000000001
  21
-116.30855600000002
+229.00000000000003
  31
 0.0
   0
@@ -3273,33 +3177,35 @@ LINE
   8
 0
  10
-407.00000000000006
+120.00000000000001
  20
-150.30855600000004
+229.00000000000003
  30
 0.0
  11
-417.00000000000006
+120.00000000000001
  21
-150.30855600000004
+209.00000000000003
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
 0
  10
-476.00000000000006
+120.00000000000001
  20
-150.30855600000004
+229.00000000000003
  30
 0.0
  11
-476.00000000000006
+86.00000000000001
  21
-88.65427796513858
+229.00000000000003
  31
 0.0
   0
@@ -3309,35 +3215,33 @@ LINE
   8
 0
  10
-416.00000000000006
+120.00000000000001
  20
-88.65427796513858
+239.00000000000003
  30
 0.0
  11
-416.00000000000006
+120.00000000000001
  21
-150.30855600000004
+229.00000000000003
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-3
+5
   8
 0
  10
-416.00000000000006
+86.00000000000001
  20
-88.65427796513858
+239.00000000000003
  30
 0.0
  11
-476.00000000000006
+120.00000000000001
  21
-88.65427796513858
+239.00000000000003
  31
 0.0
   0
@@ -3347,15 +3251,15 @@ LINE
   8
 0
  10
-416.00000000000006
+86.00000000000001
  20
-61.65427796513857
+229.00000000000003
  30
 0.0
  11
-416.00000000000006
+86.00000000000001
  21
-88.65427796513858
+239.00000000000003
  31
 0.0
   0
@@ -3363,39 +3267,37 @@ LINE
   6
 DOTTED
  62
-3
+1
   8
 0
  10
-476.00000000000006
+83.86137800081468
  20
-61.65427796513857
+131.0
  30
 0.0
  11
-416.00000000000006
+83.86137800081468
  21
-61.65427796513857
+70.00000000000001
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
 0
  10
-476.00000000000006
+120.00000000000001
  20
-88.65427796513858
+70.00000000000001
  30
 0.0
  11
-476.00000000000006
+83.86137800081468
  21
-61.65427796513857
+70.00000000000001
  31
 0.0
   0
@@ -3405,51 +3307,55 @@ LINE
   8
 0
  10
-416.00000000000006
+83.86137800081468
  20
--6.972288701945219e-08
+131.0
  30
 0.0
  11
-416.00000000000006
+120.0
  21
-61.65427796513857
+131.0
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
 0
  10
-476.00000000000006
+59.86137800081469
  20
--6.972288701945219e-08
+70.00000000000001
  30
 0.0
  11
-416.00000000000006
+59.86137800081469
  21
--6.972288701945219e-08
+131.0
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
 0
  10
-476.00000000000006
+59.86137800081469
  20
-61.65427796513857
+70.00000000000001
  30
 0.0
  11
-476.00000000000006
+83.86137800081468
  21
--6.972288701945219e-08
+70.00000000000001
  31
 0.0
   0
@@ -3459,15 +3365,15 @@ LINE
   8
 0
  10
-476.00000000000006
+23.722756001629364
  20
-88.65427796513858
+131.0
  30
 0.0
  11
-493.00000000000006
+59.86137800081469
  21
-88.65427796513858
+131.0
  31
 0.0
   0
@@ -3477,35 +3383,33 @@ LINE
   8
 0
  10
-493.00000000000006
+59.86137800081469
  20
-61.65427796513857
+70.0
  30
 0.0
  11
-476.00000000000006
+23.722756001629364
  21
-61.65427796513857
+70.0
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
 0
  10
-493.00000000000006
+13.722756001629365
  20
-88.65427796513858
+131.0
  30
 0.0
  11
-493.00000000000006
+23.722756001629364
  21
-61.65427796513857
+131.0
  31
 0.0
   0
@@ -3515,15 +3419,15 @@ LINE
   8
 0
  10
-493.00000000000006
+13.722756001629365
  20
-88.65427796513858
+70.0
  30
 0.0
  11
-553.0000000000001
+13.722756001629365
  21
-88.65427796513858
+131.0
  31
 0.0
   0
@@ -3533,35 +3437,33 @@ LINE
   8
 0
  10
-553.0000000000001
+23.722756001629364
  20
-61.65427796513857
+70.0
  30
 0.0
  11
-493.00000000000006
+13.722756001629365
  21
-61.65427796513857
+70.0
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
 0
  10
-553.0000000000001
+59.86137800081469
  20
-88.65427796513858
+60.00000000000001
  30
 0.0
  11
-553.0000000000001
+59.86137800081469
  21
-61.65427796513857
+70.00000000000001
  31
 0.0
   0
@@ -3571,15 +3473,15 @@ LINE
   8
 0
  10
-553.0000000000001
+83.86137800081468
  20
-88.65427796513858
+60.00000000000001
  30
 0.0
  11
-570.0000000000001
+59.86137800081469
  21
-88.65427796513858
+60.00000000000001
  31
 0.0
   0
@@ -3589,35 +3491,33 @@ LINE
   8
 0
  10
-570.0000000000001
+83.86137800081468
  20
-61.65427796513857
+70.00000000000001
  30
 0.0
  11
-553.0000000000001
+83.86137800081468
  21
-61.65427796513857
+60.00000000000001
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
 0
  10
-570.0000000000001
+83.86137800081468
  20
-61.65427796513857
+141.0
  30
 0.0
  11
-570.0000000000001
+83.86137800081468
  21
-88.65427796513858
+131.0
  31
 0.0
   0
@@ -3627,15 +3527,15 @@ LINE
   8
 0
  10
-580.0000000000001
+59.86137800081469
  20
-61.65427796513857
+141.0
  30
 0.0
  11
-570.0000000000001
+83.86137800081468
  21
-61.65427796513857
+141.0
  31
 0.0
   0
@@ -3645,15 +3545,15 @@ LINE
   8
 0
  10
-580.0000000000001
+59.86137800081469
  20
-88.65427796513858
+131.0
  30
 0.0
  11
-580.0000000000001
+59.86137800081469
  21
-61.65427796513857
+141.0
  31
 0.0
   0
@@ -3663,15 +3563,15 @@ LINE
   8
 0
  10
-570.0000000000001
+236.91666666666669
  20
-88.65427796513858
+17.74999999999997
  30
 0.0
  11
-580.0000000000001
+213.08333333333334
  21
-88.65427796513858
+17.74999999999997
  31
 0.0
   0
@@ -3681,15 +3581,15 @@ LINE
   8
 0
  10
-270.43181818181824
+213.08333333333334
  20
-158.058556
+17.74999999999997
  30
 0.0
  11
-258.8409090909091
+213.08333333333334
  21
-158.058556
+17.249999999999975
  31
 0.0
   0
@@ -3699,15 +3599,15 @@ LINE
   8
 0
  10
-258.8409090909091
+213.08333333333334
  20
-158.058556
+17.249999999999975
  30
 0.0
  11
-258.8409090909091
+236.91666666666669
  21
-157.55855600000004
+17.249999999999975
  31
 0.0
   0
@@ -3717,15 +3617,15 @@ LINE
   8
 0
  10
-258.8409090909091
+236.91666666666669
  20
-157.55855600000004
+17.249999999999975
  30
 0.0
  11
-270.43181818181824
+236.91666666666669
  21
-157.55855600000004
+17.74999999999997
  31
 0.0
   0
@@ -3735,15 +3635,15 @@ LINE
   8
 0
  10
-270.43181818181824
+102.50000000000001
  20
-157.55855600000004
+23.333333333333318
  30
 0.0
  11
-270.43181818181824
+114.1666666666667
  21
-158.058556
+23.333333333333318
  31
 0.0
   0
@@ -3753,15 +3653,15 @@ LINE
   8
 0
  10
-298.159090909091
+114.1666666666667
  20
-158.058556
+23.333333333333318
  30
 0.0
  11
-286.56818181818187
+114.16666666666669
  21
-158.058556
+46.66666666666666
  31
 0.0
   0
@@ -3771,15 +3671,15 @@ LINE
   8
 0
  10
-286.56818181818187
+114.16666666666669
  20
-158.058556
+46.66666666666666
  30
 0.0
  11
-286.56818181818187
+102.50000000000004
  21
-157.55855600000004
+46.66666666666666
  31
 0.0
   0
@@ -3789,15 +3689,15 @@ LINE
   8
 0
  10
-286.56818181818187
+213.08333333333334
  20
-157.55855600000004
+350.25
  30
 0.0
  11
-298.159090909091
+236.91666666666666
  21
-157.55855600000004
+350.25
  31
 0.0
   0
@@ -3807,15 +3707,15 @@ LINE
   8
 0
  10
-298.159090909091
+236.91666666666666
  20
-157.55855600000004
+350.25
  30
 0.0
  11
-298.159090909091
+236.91666666666666
  21
-158.058556
+350.75
  31
 0.0
   0
@@ -3825,15 +3725,15 @@ LINE
   8
 0
  10
-326.75000000000006
+236.91666666666666
  20
-127.39188933333335
+350.75
  30
 0.0
  11
-326.75000000000006
+213.08333333333334
  21
-139.2252226666667
+350.75
  31
 0.0
   0
@@ -3843,15 +3743,15 @@ LINE
   8
 0
  10
-326.75000000000006
+213.08333333333334
  20
-139.2252226666667
+350.75
  30
 0.0
  11
-326.25000000000006
+213.08333333333334
  21
-139.2252226666667
+350.25
  31
 0.0
   0
@@ -3861,15 +3761,15 @@ LINE
   8
 0
  10
-326.25000000000006
+233.08333333333334
  20
-139.2252226666667
+350.25
  30
 0.0
  11
-326.25000000000006
+256.9166666666667
  21
-127.39188933333335
+350.25
  31
 0.0
   0
@@ -3879,15 +3779,15 @@ LINE
   8
 0
  10
-326.25000000000006
+256.9166666666667
  20
-127.39188933333335
+350.25
  30
 0.0
  11
-326.75000000000006
+256.9166666666667
  21
-127.39188933333335
+350.75
  31
 0.0
   0
@@ -3897,15 +3797,15 @@ LINE
   8
 0
  10
-335.25000000000006
+256.9166666666667
  20
-39.30855600000002
+350.75
  30
 0.0
  11
-326.75000000000006
+233.08333333333334
  21
-39.30855600000002
+350.75
  31
 0.0
   0
@@ -3915,15 +3815,15 @@ LINE
   8
 0
  10
-326.75000000000006
+233.08333333333334
  20
-39.30855600000002
+350.75
  30
 0.0
  11
-326.75000000000006
+233.08333333333334
  21
-38.80855600000002
+350.25
  31
 0.0
   0
@@ -3933,15 +3833,15 @@ LINE
   8
 0
  10
-326.75000000000006
+367.5
  20
-38.80855600000002
+344.6666666666668
  30
 0.0
  11
-335.25000000000006
+355.83333333333337
  21
-38.80855600000002
+344.6666666666668
  31
 0.0
   0
@@ -3951,15 +3851,15 @@ LINE
   8
 0
  10
-335.25000000000006
+355.83333333333337
  20
-38.80855600000002
+344.6666666666668
  30
 0.0
  11
-335.25000000000006
+355.83333333333337
  21
-39.30855600000002
+321.3333333333334
  31
 0.0
   0
@@ -3969,15 +3869,15 @@ LINE
   8
 0
  10
-362.00000000000006
+355.83333333333337
  20
-139.30855600000004
+321.3333333333334
  30
 0.0
  11
-358.00000000000006
+367.50000000000006
  21
-139.30855600000004
+321.3333333333334
  31
 0.0
   0
@@ -3987,15 +3887,15 @@ LINE
   8
 0
  10
-358.00000000000006
+256.91666666666674
  20
-139.30855600000004
+17.749999999999915
  30
 0.0
  11
-358.00000000000006
+233.08333333333343
  21
-127.30855600000004
+17.74999999999989
  31
 0.0
   0
@@ -4005,15 +3905,15 @@ LINE
   8
 0
  10
-358.00000000000006
+233.08333333333343
  20
-127.30855600000004
+17.74999999999989
  30
 0.0
  11
-362.00000000000006
+233.08333333333343
  21
-127.30855600000004
+17.249999999999886
  31
 0.0
   0
@@ -4023,15 +3923,15 @@ LINE
   8
 0
  10
-362.00000000000006
+233.08333333333343
  20
-127.30855600000004
+17.249999999999886
  30
 0.0
  11
-362.00000000000006
+256.91666666666674
  21
-139.30855600000004
+17.24999999999992
  31
 0.0
   0
@@ -4041,15 +3941,15 @@ LINE
   8
 0
  10
-350.0
+256.91666666666674
  20
-137.808556
+17.24999999999992
  30
 0.0
  11
-346.0
+256.91666666666674
  21
-137.808556
+17.749999999999915
  31
 0.0
   0
@@ -4059,15 +3959,15 @@ LINE
   8
 0
  10
-346.0
+367.5000000000001
  20
-137.808556
+46.66666666666669
  30
 0.0
  11
-346.0
+355.8333333333334
  21
-128.808556
+46.66666666666666
  31
 0.0
   0
@@ -4077,15 +3977,15 @@ LINE
   8
 0
  10
-346.0
+355.8333333333334
  20
-128.808556
+46.66666666666666
  30
 0.0
  11
-350.0
+355.8333333333334
  21
-128.808556
+23.333333333333346
  31
 0.0
   0
@@ -4095,15 +3995,15 @@ LINE
   8
 0
  10
-350.0
+355.8333333333334
  20
-128.808556
+23.333333333333346
  30
 0.0
  11
-350.0
+367.50000000000006
  21
-137.808556
+23.333333333333346
  31
 0.0
   0
@@ -4113,15 +4013,15 @@ LINE
   8
 0
  10
-386.5
+342.2500000000001
  20
-139.30855600000004
+92.43181818181819
  30
 0.0
  11
-363.5
+342.2500000000001
  21
-139.30855600000004
+80.84090909090908
  31
 0.0
   0
@@ -4131,15 +4031,15 @@ LINE
   8
 0
  10
-363.5
+342.2500000000001
  20
-139.30855600000004
+80.84090909090908
  30
 0.0
  11
-363.5
+342.7500000000001
  21
-127.30855600000004
+80.84090909090908
  31
 0.0
   0
@@ -4149,15 +4049,15 @@ LINE
   8
 0
  10
-363.5
+342.7500000000001
  20
-127.30855600000004
+80.84090909090908
  30
 0.0
  11
-386.5
+342.7500000000001
  21
-127.30855600000004
+92.43181818181819
  31
 0.0
   0
@@ -4167,15 +4067,15 @@ LINE
   8
 0
  10
-386.5
+342.7500000000001
  20
-127.30855600000004
+92.43181818181819
  30
 0.0
  11
-386.5
+342.2500000000001
  21
-139.30855600000004
+92.43181818181819
  31
 0.0
   0
@@ -4185,15 +4085,15 @@ LINE
   8
 0
  10
-392.00000000000006
+342.25000000000006
  20
-139.30855600000004
+120.15909090909092
  30
 0.0
  11
-388.00000000000006
+342.25000000000006
  21
-139.30855600000004
+108.56818181818183
  31
 0.0
   0
@@ -4203,15 +4103,15 @@ LINE
   8
 0
  10
-388.00000000000006
+342.25000000000006
  20
-139.30855600000004
+108.56818181818183
  30
 0.0
  11
-388.00000000000006
+342.75000000000006
  21
-127.30855600000004
+108.56818181818183
  31
 0.0
   0
@@ -4221,15 +4121,15 @@ LINE
   8
 0
  10
-388.00000000000006
+342.75000000000006
  20
-127.30855600000004
+108.56818181818183
  30
 0.0
  11
-392.00000000000006
+342.75000000000006
  21
-127.30855600000004
+120.15909090909092
  31
 0.0
   0
@@ -4239,15 +4139,15 @@ LINE
   8
 0
  10
-392.00000000000006
+342.75000000000006
  20
-127.30855600000004
+120.15909090909092
  30
 0.0
  11
-392.00000000000006
+342.25000000000006
  21
-139.30855600000004
+120.15909090909092
  31
 0.0
   0
@@ -4257,15 +4157,15 @@ LINE
   8
 0
  10
-414.50000000000006
+372.9166666666667
  20
-138.9752226666667
+148.75000000000003
  30
 0.0
  11
-409.5
+361.0833333333334
  21
-138.9752226666667
+148.75000000000003
  31
 0.0
   0
@@ -4275,15 +4175,15 @@ LINE
   8
 0
  10
-409.5
+361.0833333333334
  20
-138.9752226666667
+148.75000000000003
  30
 0.0
  11
-409.5
+361.0833333333334
  21
-127.64188933333335
+148.25
  31
 0.0
   0
@@ -4293,15 +4193,15 @@ LINE
   8
 0
  10
-409.5
+361.0833333333334
  20
-127.64188933333335
+148.25
  30
 0.0
  11
-414.50000000000006
+372.9166666666667
  21
-127.64188933333335
+148.25
  31
 0.0
   0
@@ -4311,15 +4211,15 @@ LINE
   8
 0
  10
-475.50000000000006
+372.9166666666667
  20
-84.15427796513858
+148.25
  30
 0.0
  11
-472.50000000000006
+372.9166666666667
  21
-84.15427796513858
+148.75000000000003
  31
 0.0
   0
@@ -4329,15 +4229,15 @@ LINE
   8
 0
  10
-472.50000000000006
+461.00000000000006
  20
-84.15427796513858
+157.25000000000009
  30
 0.0
  11
-472.50000000000006
+461.00000000000006
  21
-66.15427796513858
+148.75000000000009
  31
 0.0
   0
@@ -4347,15 +4247,15 @@ LINE
   8
 0
  10
-472.50000000000006
+461.00000000000006
  20
-66.15427796513858
+148.75000000000009
  30
 0.0
  11
-475.50000000000006
+461.50000000000006
  21
-66.15427796513858
+148.75000000000009
  31
 0.0
   0
@@ -4365,15 +4265,15 @@ LINE
   8
 0
  10
-475.50000000000006
+461.50000000000006
  20
-66.15427796513858
+148.75000000000009
  30
 0.0
  11
-475.50000000000006
+461.50000000000006
  21
-84.15427796513858
+157.25000000000009
  31
 0.0
   0
@@ -4383,15 +4283,15 @@ LINE
   8
 0
  10
-423.75000000000006
+461.50000000000006
  20
-70.40427796513856
+157.25000000000009
  30
 0.0
  11
-423.75000000000006
+461.00000000000006
  21
-79.90427796513858
+157.25000000000009
  31
 0.0
   0
@@ -4401,15 +4301,15 @@ LINE
   8
 0
  10
-423.75000000000006
+361.00000000000006
  20
-79.90427796513858
+184.00000000000003
  30
 0.0
  11
-423.25
+361.00000000000006
  21
-79.90427796513858
+180.00000000000006
  31
 0.0
   0
@@ -4419,15 +4319,15 @@ LINE
   8
 0
  10
-423.25
+361.00000000000006
  20
-79.90427796513858
+180.00000000000006
  30
 0.0
  11
-423.25
+373.0
  21
-70.40427796513856
+180.00000000000006
  31
 0.0
   0
@@ -4437,15 +4337,15 @@ LINE
   8
 0
  10
-423.25
+373.0
  20
-70.40427796513856
+180.00000000000006
  30
 0.0
  11
-423.75000000000006
+373.0
  21
-70.40427796513856
+184.00000000000003
  31
 0.0
   0
@@ -4455,15 +4355,15 @@ LINE
   8
 0
  10
-456.25000000000006
+373.0
  20
-7.749999930277114
+184.00000000000003
  30
 0.0
  11
-435.75000000000006
+361.00000000000006
  21
-7.749999930277114
+184.00000000000003
  31
 0.0
   0
@@ -4473,15 +4373,15 @@ LINE
   8
 0
  10
-435.75000000000006
+362.50000000000006
  20
-7.749999930277114
+172.00000000000003
  30
 0.0
  11
-435.75000000000006
+362.50000000000006
  21
-7.249999930277114
+168.0
  31
 0.0
   0
@@ -4491,15 +4391,15 @@ LINE
   8
 0
  10
-435.75000000000006
+362.50000000000006
  20
-7.249999930277114
+168.0
  30
 0.0
  11
-456.25000000000006
+371.50000000000006
  21
-7.249999930277114
+168.00000000000003
  31
 0.0
   0
@@ -4509,15 +4409,15 @@ LINE
   8
 0
  10
-456.25000000000006
+371.50000000000006
  20
-7.249999930277114
+168.00000000000003
  30
 0.0
  11
-456.25000000000006
+371.50000000000006
  21
-7.749999930277114
+172.00000000000006
  31
 0.0
   0
@@ -4527,15 +4427,15 @@ LINE
   8
 0
  10
-479.00000000000006
+371.50000000000006
  20
-84.15427796513858
+172.00000000000006
  30
 0.0
  11
-476.00000000000006
+362.50000000000006
  21
-84.15427796513858
+172.00000000000003
  31
 0.0
   0
@@ -4545,15 +4445,15 @@ LINE
   8
 0
  10
-476.00000000000006
+361.00000000000006
  20
-84.15427796513858
+208.50000000000006
  30
 0.0
  11
-476.00000000000006
+361.00000000000006
  21
-66.15427796513858
+185.50000000000006
  31
 0.0
   0
@@ -4563,15 +4463,15 @@ LINE
   8
 0
  10
-476.00000000000006
+361.00000000000006
  20
-66.15427796513858
+185.50000000000006
  30
 0.0
  11
-479.00000000000006
+373.0
  21
-66.15427796513858
+185.50000000000006
  31
 0.0
   0
@@ -4581,15 +4481,15 @@ LINE
   8
 0
  10
-479.00000000000006
+373.0
  20
-66.15427796513858
+185.50000000000006
  30
 0.0
  11
-479.00000000000006
+373.0
  21
-84.15427796513858
+208.50000000000006
  31
 0.0
   0
@@ -4599,15 +4499,15 @@ LINE
   8
 0
  10
-577.5000000000001
+373.0
  20
-79.65427796513858
+208.50000000000006
  30
 0.0
  11
-572.5
+361.00000000000006
  21
-79.65427796513858
+208.50000000000006
  31
 0.0
   0
@@ -4617,15 +4517,15 @@ LINE
   8
 0
  10
-572.5
+361.00000000000006
  20
-79.65427796513858
+214.00000000000006
  30
 0.0
  11
-572.5
+361.00000000000006
  21
-70.65427796513858
+210.00000000000006
  31
 0.0
   0
@@ -4635,95 +4535,87 @@ LINE
   8
 0
  10
-572.5
+361.00000000000006
  20
-70.65427796513858
+210.00000000000006
  30
 0.0
  11
-577.5000000000001
+373.0
  21
-70.65427796513858
+210.00000000000006
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
 0
  10
-623.0000000000001
+373.0
  20
-138.30855600000004
+210.00000000000006
  30
 0.0
  11
-684.0000000000001
+373.0
  21
-138.30855600000004
+214.00000000000006
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
 0
  10
-684.0000000000001
+373.0
  20
-138.30855600000004
+214.00000000000006
  30
 0.0
  11
-684.0000000000001
+361.00000000000006
  21
-162.308556
+214.00000000000006
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
 0
  10
-684.0000000000001
+361.3333333333334
  20
-162.308556
+236.50000000000003
  30
 0.0
  11
-623.0000000000001
+361.3333333333334
  21
-162.308556
+231.50000000000006
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
 0
  10
-623.0000000000001
+361.3333333333334
  20
-162.308556
+231.50000000000006
  30
 0.0
  11
-623.0000000000001
+372.6666666666667
  21
-138.30855600000004
+231.50000000000006
  31
 0.0
   0
@@ -4733,15 +4625,15 @@ LINE
   8
 0
  10
-623.0000000000001
+372.6666666666667
  20
-131.30855600000004
+231.50000000000006
  30
 0.0
  11
-623.0000000000001
+372.6666666666667
  21
-138.30855600000004
+236.50000000000003
  31
 0.0
   0
@@ -4751,15 +4643,15 @@ LINE
   8
 0
  10
-683.0
+416.15427803486153
  20
-131.30855600000004
+297.5000000000001
  30
 0.0
  11
-623.0000000000001
+416.15427803486153
  21
-131.30855600000004
+294.5000000000001
  31
 0.0
   0
@@ -4769,15 +4661,15 @@ LINE
   8
 0
  10
-683.0
+416.15427803486153
  20
-138.30855600000004
+294.5000000000001
  30
 0.0
  11
-683.0
+434.15427803486153
  21
-131.30855600000004
+294.5000000000001
  31
 0.0
   0
@@ -4787,15 +4679,15 @@ LINE
   8
 0
  10
-691.0
+434.15427803486153
  20
-138.30855600000004
+294.5000000000001
  30
 0.0
  11
-684.0000000000001
+434.15427803486153
  21
-138.30855600000004
+297.5000000000001
  31
 0.0
   0
@@ -4805,15 +4697,15 @@ LINE
   8
 0
  10
-691.0
+434.15427803486153
  20
-162.308556
+297.5000000000001
  30
 0.0
  11
-691.0
+416.15427803486153
  21
-138.30855600000004
+297.5000000000001
  31
 0.0
   0
@@ -4823,35 +4715,33 @@ LINE
   8
 0
  10
-684.0000000000001
+429.90427803486153
  20
-162.308556
+245.75000000000009
  30
 0.0
  11
-691.0
+420.40427803486153
  21
-162.308556
+245.75000000000009
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
 0
  10
-684.0000000000001
+420.40427803486153
  20
-162.308556
+245.75000000000009
  30
 0.0
  11
-684.0000000000001
+420.40427803486153
  21
-223.30855600000004
+245.25000000000009
  31
 0.0
   0
@@ -4861,35 +4751,33 @@ LINE
   8
 0
  10
-624.0000000000001
+420.40427803486153
  20
-223.30855600000004
+245.25000000000009
  30
 0.0
  11
-684.0000000000001
+429.90427803486153
  21
-223.30855600000004
+245.25000000000009
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
 0
  10
-624.0000000000001
+429.90427803486153
  20
-162.308556
+245.25000000000009
  30
 0.0
  11
-624.0000000000001
+429.90427803486153
  21
-223.30855600000004
+245.75000000000009
  31
 0.0
   0
@@ -4899,35 +4787,33 @@ LINE
   8
 0
  10
-708.0000000000001
+492.55855606972295
  20
-162.308556
+278.25000000000017
  30
 0.0
  11
-684.0000000000001
+492.55855606972295
  21
-162.308556
+257.75000000000017
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
 0
  10
-708.0000000000001
+492.55855606972295
  20
-162.308556
+257.75000000000017
  30
 0.0
  11
-708.0000000000001
+493.05855606972295
  21
-223.30855600000004
+257.75000000000017
  31
 0.0
   0
@@ -4937,15 +4823,15 @@ LINE
   8
 0
  10
-684.0000000000001
+493.05855606972295
  20
-223.30855600000004
+257.75000000000017
  30
 0.0
  11
-708.0000000000001
+493.05855606972295
  21
-223.30855600000004
+278.25000000000017
  31
 0.0
   0
@@ -4955,15 +4841,15 @@ LINE
   8
 0
  10
-768.0000000000001
+493.05855606972295
  20
-162.308556
+278.25000000000017
  30
 0.0
  11
-708.0000000000001
+492.55855606972295
  21
-162.308556
+278.25000000000017
  31
 0.0
   0
@@ -4973,15 +4859,15 @@ LINE
   8
 0
  10
-768.0000000000001
+416.1542780348615
  20
-223.30855600000004
+301.0000000000001
  30
 0.0
  11
-768.0000000000001
+416.1542780348615
  21
-162.308556
+298.0000000000001
  31
 0.0
   0
@@ -4991,15 +4877,15 @@ LINE
   8
 0
  10
-708.0000000000001
+416.1542780348615
  20
-223.30855600000004
+298.0000000000001
  30
 0.0
  11
-768.0000000000001
+434.1542780348615
  21
-223.30855600000004
+298.0000000000001
  31
 0.0
   0
@@ -5009,15 +4895,15 @@ LINE
   8
 0
  10
-624.0000000000001
+434.1542780348615
  20
-162.308556
+298.0000000000001
  30
 0.0
  11
-600.0
+434.1542780348615
  21
-162.308556
+301.0000000000001
  31
 0.0
   0
@@ -5027,35 +4913,33 @@ LINE
   8
 0
  10
-600.0
+434.1542780348615
  20
-223.30855600000004
+301.0000000000001
  30
 0.0
  11
-624.0000000000001
+416.1542780348615
  21
-223.30855600000004
+301.0000000000001
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
 0
  10
-600.0
+420.6542780348614
  20
-223.30855600000004
+399.5000000000001
  30
 0.0
  11
-600.0
+420.6542780348614
  21
-162.308556
+394.50000000000017
  31
 0.0
   0
@@ -5065,15 +4949,15 @@ LINE
   8
 0
  10
-590.0
+420.6542780348614
  20
-223.30855600000004
+394.50000000000017
  30
 0.0
  11
-600.0
+429.65427803486136
  21
-223.30855600000004
+394.50000000000017
  31
 0.0
   0
@@ -5083,15 +4967,15 @@ LINE
   8
 0
  10
-590.0
+429.65427803486136
  20
-162.308556
+394.50000000000017
  30
 0.0
  11
-590.0
+429.65427803486136
  21
-223.30855600000004
+399.5000000000001
  31
 0.0
   0
@@ -5101,15 +4985,15 @@ LINE
   8
 0
  10
-600.0
+102.50000000000001
  20
-162.308556
+321.33333333333337
  30
 0.0
  11
-590.0
+114.16666666666667
  21
-162.308556
+321.33333333333337
  31
 0.0
   0
@@ -5119,15 +5003,15 @@ LINE
   8
 0
  10
-616.0000000000001
+114.16666666666667
  20
-162.308556
+321.33333333333337
  30
 0.0
  11
-623.0000000000001
+114.16666666666667
  21
-162.308556
+344.6666666666667
  31
 0.0
   0
@@ -5137,15 +5021,15 @@ LINE
   8
 0
  10
-616.0000000000001
+114.16666666666667
  20
-138.30855600000004
+344.6666666666667
  30
 0.0
  11
-616.0000000000001
+102.50000000000001
  21
-162.308556
+344.6666666666667
  31
 0.0
   0
@@ -5155,15 +5039,15 @@ LINE
   8
 0
  10
-623.0000000000001
+112.5
  20
-138.30855600000004
+258.0
  30
 0.0
  11
-616.0000000000001
+112.5
  21
-138.30855600000004
+253.00000000000003
  31
 0.0
   0
@@ -5173,15 +5057,15 @@ LINE
   8
 0
  10
-672.0909090909092
+112.5
  20
-133.058556
+253.00000000000003
  30
 0.0
  11
-675.5909090909091
+117.5
  21
-133.058556
+258.0
  31
 0.0
   0
@@ -5191,15 +5075,15 @@ LINE
   8
 0
  10
-675.5909090909091
+117.5
  20
-133.058556
+258.0
  30
 0.0
  11
-672.0909090909092
+117.5
  21
-136.55855600000004
+278.0
  31
 0.0
   0
@@ -5209,15 +5093,15 @@ LINE
   8
 0
  10
-672.0909090909092
+117.5
  20
-136.55855600000004
+278.0
  30
 0.0
  11
-661.1818181818181
+112.5
  21
-136.55855600000004
+283.0
  31
 0.0
   0
@@ -5227,15 +5111,15 @@ LINE
   8
 0
  10
-661.1818181818181
+112.5
  20
-136.55855600000004
+283.0
  30
 0.0
  11
-657.6818181818184
+112.5
  21
-133.058556
+278.0
  31
 0.0
   0
@@ -5245,15 +5129,15 @@ LINE
   8
 0
  10
-657.6818181818184
+108.91666666666669
  20
-133.058556
+148.75000000000003
  30
 0.0
  11
-661.1818181818181
+97.08333333333336
  21
-133.058556
+148.75000000000003
  31
 0.0
   0
@@ -5263,15 +5147,15 @@ LINE
   8
 0
  10
-644.818181818182
+97.08333333333336
  20
-133.058556
+148.75000000000003
  30
 0.0
  11
-648.3181818181819
+97.08333333333336
  21
-133.058556
+148.25
  31
 0.0
   0
@@ -5281,15 +5165,15 @@ LINE
   8
 0
  10
-648.3181818181819
+97.08333333333336
  20
-133.058556
+148.25
  30
 0.0
  11
-644.818181818182
+108.91666666666669
  21
-136.55855600000004
+148.25
  31
 0.0
   0
@@ -5299,15 +5183,15 @@ LINE
   8
 0
  10
-644.818181818182
+108.91666666666669
  20
-136.55855600000004
+148.25
  30
 0.0
  11
-633.9090909090909
+108.91666666666669
  21
-136.55855600000004
+148.75000000000003
  31
 0.0
   0
@@ -5317,15 +5201,15 @@ LINE
   8
 0
  10
-633.9090909090909
+1.2500000000000002
  20
-136.55855600000004
+149.00000000000003
  30
 0.0
  11
-630.409090909091
+1.2500000000000002
  21
-133.058556
+146.50000000000003
  31
 0.0
   0
@@ -5335,15 +5219,15 @@ LINE
   8
 0
  10
-630.409090909091
+1.2500000000000002
  20
-133.058556
+146.50000000000003
  30
 0.0
  11
-633.9090909090909
+3.7500000000000004
  21
-133.058556
+149.00000000000003
  31
 0.0
   0
@@ -5353,15 +5237,15 @@ LINE
   8
 0
  10
-689.2500000000001
+3.7500000000000004
  20
-154.30855600000004
+149.00000000000003
  30
 0.0
  11
-685.75
+3.7500000000000004
  21
-154.30855600000004
+157.0
  31
 0.0
   0
@@ -5371,15 +5255,15 @@ LINE
   8
 0
  10
-685.75
+3.7500000000000004
  20
-154.30855600000004
+157.0
  30
 0.0
  11
-685.75
+1.2500000000000002
  21
-146.308556
+159.5
  31
 0.0
   0
@@ -5389,15 +5273,15 @@ LINE
   8
 0
  10
-685.75
+1.2500000000000002
  20
-146.308556
+159.5
  30
 0.0
  11
-689.2500000000001
+1.2500000000000002
  21
-146.308556
+157.0
  31
 0.0
   0
@@ -5407,15 +5291,15 @@ LINE
   8
 0
  10
-631.5000000000001
+97.00000000000001
  20
-213.80855600000004
+184.00000000000003
  30
 0.0
  11
-631.5000000000001
+97.00000000000001
  21
-195.80855600000004
+180.0
  31
 0.0
   0
@@ -5425,15 +5309,15 @@ LINE
   8
 0
  10
-631.5000000000001
+97.00000000000001
  20
-195.80855600000004
+180.0
  30
 0.0
  11
-666.5000000000001
+109.00000000000001
  21
-195.80855600000004
+180.0
  31
 0.0
   0
@@ -5443,15 +5327,15 @@ LINE
   8
 0
  10
-666.5000000000001
+109.00000000000001
  20
-195.80855600000004
+180.0
  30
 0.0
  11
-666.5000000000001
+109.00000000000001
  21
-213.80855600000004
+184.00000000000003
  31
 0.0
   0
@@ -5461,15 +5345,15 @@ LINE
   8
 0
  10
-666.5000000000001
+109.00000000000001
  20
-213.80855600000004
+184.00000000000003
  30
 0.0
  11
-631.5000000000001
+97.00000000000001
  21
-213.80855600000004
+184.00000000000003
  31
 0.0
   0
@@ -5479,15 +5363,15 @@ LINE
   8
 0
  10
-684.5000000000001
+98.50000000000001
  20
-175.55855600000004
+172.00000000000003
  30
 0.0
  11
-684.5000000000001
+98.50000000000001
  21
-172.55855600000004
+168.0
  31
 0.0
   0
@@ -5497,15 +5381,15 @@ LINE
   8
 0
  10
-684.5000000000001
+98.50000000000001
  20
-172.55855600000004
+168.0
  30
 0.0
  11
-687.5000000000001
+107.50000000000001
  21
-172.55855600000004
+168.0
  31
 0.0
   0
@@ -5515,15 +5399,15 @@ LINE
   8
 0
  10
-687.5000000000001
+107.50000000000001
  20
-172.55855600000004
+168.0
  30
 0.0
  11
-687.5000000000001
+107.50000000000001
  21
-175.55855600000004
+172.00000000000003
  31
 0.0
   0
@@ -5533,15 +5417,15 @@ LINE
   8
 0
  10
-687.5000000000001
+107.50000000000001
  20
-175.55855600000004
+172.00000000000003
  30
 0.0
  11
-684.5000000000001
+98.50000000000001
  21
-175.55855600000004
+172.00000000000003
  31
 0.0
   0
@@ -5551,15 +5435,15 @@ LINE
   8
 0
  10
-705.5000000000001
+97.00000000000001
  20
-174.55855600000004
+208.50000000000003
  30
 0.0
  11
-705.5000000000001
+97.00000000000001
  21
-173.55855600000004
+185.50000000000003
  31
 0.0
   0
@@ -5569,15 +5453,15 @@ LINE
   8
 0
  10
-705.5000000000001
+97.00000000000001
  20
-173.55855600000004
+185.50000000000003
  30
 0.0
  11
-706.5000000000001
+109.00000000000001
  21
-173.55855600000004
+185.50000000000003
  31
 0.0
   0
@@ -5587,15 +5471,15 @@ LINE
   8
 0
  10
-706.5000000000001
+109.00000000000001
  20
-173.55855600000004
+185.50000000000003
  30
 0.0
  11
-706.5000000000001
+109.00000000000001
  21
-174.55855600000004
+208.50000000000003
  31
 0.0
   0
@@ -5605,15 +5489,15 @@ LINE
   8
 0
  10
-706.5000000000001
+109.00000000000001
  20
-174.55855600000004
+208.50000000000003
  30
 0.0
  11
-705.5000000000001
+97.00000000000001
  21
-174.55855600000004
+208.50000000000003
  31
 0.0
   0
@@ -5623,15 +5507,15 @@ LINE
   8
 0
  10
-685.5000000000001
+97.00000000000001
  20
-177.05855600000004
+214.0
  30
 0.0
  11
-685.5000000000001
+97.00000000000001
  21
-176.058556
+210.00000000000003
  31
 0.0
   0
@@ -5641,15 +5525,15 @@ LINE
   8
 0
  10
-685.5000000000001
+97.00000000000001
  20
-176.058556
+210.00000000000003
  30
 0.0
  11
-686.5000000000001
+109.00000000000001
  21
-176.058556
+210.00000000000003
  31
 0.0
   0
@@ -5659,15 +5543,15 @@ LINE
   8
 0
  10
-686.5000000000001
+109.00000000000001
  20
-176.058556
+210.00000000000003
  30
 0.0
  11
-686.5000000000001
+109.00000000000001
  21
-177.05855600000004
+214.0
  31
 0.0
   0
@@ -5677,15 +5561,15 @@ LINE
   8
 0
  10
-686.5000000000001
+109.00000000000001
  20
-177.05855600000004
+214.0
  30
 0.0
  11
-685.5000000000001
+97.00000000000001
  21
-177.05855600000004
+214.0
  31
 0.0
   0
@@ -5695,15 +5579,15 @@ LINE
   8
 0
  10
-705.5000000000001
+97.33333333333336
  20
-177.05855600000004
+236.50000000000003
  30
 0.0
  11
-705.5000000000001
+97.33333333333336
  21
-176.058556
+231.50000000000003
  31
 0.0
   0
@@ -5713,15 +5597,15 @@ LINE
   8
 0
  10
-705.5000000000001
+97.33333333333336
  20
-176.058556
+231.50000000000003
  30
 0.0
  11
-706.5000000000001
+108.66666666666669
  21
-176.058556
+231.50000000000003
  31
 0.0
   0
@@ -5731,15 +5615,15 @@ LINE
   8
 0
  10
-706.5000000000001
+108.66666666666669
  20
-176.058556
+231.50000000000003
  30
 0.0
  11
-706.5000000000001
+108.66666666666669
  21
-177.05855600000004
+236.50000000000003
  31
 0.0
   0
@@ -5749,15 +5633,15 @@ LINE
   8
 0
  10
-706.5000000000001
+65.36137800081468
  20
-177.05855600000004
+113.00000000000001
  30
 0.0
  11
-705.5000000000001
+65.36137800081468
  21
-177.05855600000004
+102.00000000000001
  31
 0.0
   0
@@ -5767,15 +5651,15 @@ LINE
   8
 0
  10
-685.5000000000001
+65.36137800081468
  20
-179.55855600000004
+102.00000000000001
  30
 0.0
  11
-685.5000000000001
+78.36137800081468
  21
-178.558556
+102.00000000000001
  31
 0.0
   0
@@ -5785,15 +5669,15 @@ LINE
   8
 0
  10
-685.5000000000001
+78.36137800081468
  20
-178.558556
+102.00000000000001
  30
 0.0
  11
-686.5000000000001
+78.36137800081468
  21
-178.558556
+113.00000000000001
  31
 0.0
   0
@@ -5803,15 +5687,15 @@ LINE
   8
 0
  10
-686.5000000000001
+78.36137800081468
  20
-178.558556
+113.00000000000001
  30
 0.0
  11
-686.5000000000001
+65.36137800081468
  21
-179.55855600000004
+113.00000000000001
  31
 0.0
   0
@@ -5821,15 +5705,15 @@ LINE
   8
 0
  10
-686.5000000000001
+66.8613780008147
  20
-179.55855600000004
+81.50000000000001
  30
 0.0
  11
-685.5000000000001
+66.8613780008147
  21
-179.55855600000004
+75.50000000000001
  31
 0.0
   0
@@ -5839,15 +5723,15 @@ LINE
   8
 0
  10
-705.5000000000001
+66.8613780008147
  20
-179.55855600000004
+75.50000000000001
  30
 0.0
  11
-705.5000000000001
+76.8613780008147
  21
-178.558556
+75.50000000000001
  31
 0.0
   0
@@ -5857,15 +5741,15 @@ LINE
   8
 0
  10
-705.5000000000001
+76.8613780008147
  20
-178.558556
+75.50000000000001
  30
 0.0
  11
-706.5000000000001
+76.8613780008147
  21
-178.558556
+81.50000000000001
  31
 0.0
   0
@@ -5875,15 +5759,15 @@ LINE
   8
 0
  10
-706.5000000000001
+76.8613780008147
  20
-178.558556
+81.50000000000001
  30
 0.0
  11
-706.5000000000001
+66.8613780008147
  21
-179.55855600000004
+81.50000000000001
  31
 0.0
   0
@@ -5893,15 +5777,15 @@ LINE
   8
 0
  10
-706.5000000000001
+16.222756001629364
  20
-179.55855600000004
+81.0909090909091
  30
 0.0
  11
-705.5000000000001
+21.222756001629367
  21
-179.55855600000004
+81.0909090909091
  31
 0.0
   0
@@ -5911,15 +5795,15 @@ LINE
   8
 0
  10
-685.5000000000001
+21.222756001629367
  20
-182.05855600000004
+81.0909090909091
  30
 0.0
  11
-685.5000000000001
+21.222756001629367
  21
-181.058556
+92.18181818181819
  31
 0.0
   0
@@ -5929,15 +5813,15 @@ LINE
   8
 0
  10
-685.5000000000001
+21.222756001629367
  20
-181.058556
+92.18181818181819
  30
 0.0
  11
-686.5000000000001
+16.222756001629364
  21
-181.058556
+92.18181818181819
  31
 0.0
   0
@@ -5947,15 +5831,15 @@ LINE
   8
 0
  10
-686.5000000000001
+16.222756001629364
  20
-181.058556
+108.81818181818183
  30
 0.0
  11
-686.5000000000001
+21.222756001629367
  21
-182.05855600000004
+108.81818181818183
  31
 0.0
   0
@@ -5965,15 +5849,15 @@ LINE
   8
 0
  10
-686.5000000000001
+21.222756001629367
  20
-182.05855600000004
+108.81818181818183
  30
 0.0
  11
-685.5000000000001
+21.222756001629367
  21
-182.05855600000004
+119.90909090909092
  31
 0.0
   0
@@ -5983,15 +5867,15 @@ LINE
   8
 0
  10
-705.5000000000001
+21.222756001629367
  20
-182.05855600000004
+119.90909090909092
  30
 0.0
  11
-705.5000000000001
+16.222756001629364
  21
-181.058556
+119.90909090909092
  31
 0.0
   0
@@ -6001,15 +5885,15 @@ LINE
   8
 0
  10
-705.5000000000001
+75.86137800081468
  20
-181.058556
+62.50000000000001
  30
 0.0
  11
-706.5000000000001
+75.86137800081468
  21
-181.058556
+67.50000000000001
  31
 0.0
   0
@@ -6019,15 +5903,15 @@ LINE
   8
 0
  10
-706.5000000000001
+75.86137800081468
  20
-181.058556
+67.50000000000001
  30
 0.0
  11
-706.5000000000001
+67.86137800081468
  21
-182.05855600000004
+67.50000000000001
  31
 0.0
   0
@@ -6037,15 +5921,15 @@ LINE
   8
 0
  10
-706.5000000000001
+67.86137800081468
  20
-182.05855600000004
+67.50000000000001
  30
 0.0
  11
-705.5000000000001
+67.86137800081468
  21
-182.05855600000004
+62.50000000000001
  31
 0.0
   0
@@ -6055,15 +5939,15 @@ LINE
   8
 0
  10
-685.5000000000001
+67.86137800081468
  20
-184.55855600000004
+138.5
  30
 0.0
  11
-685.5000000000001
+67.86137800081468
  21
-183.55855600000004
+133.5
  31
 0.0
   0
@@ -6073,15 +5957,15 @@ LINE
   8
 0
  10
-685.5000000000001
+67.86137800081468
  20
-183.55855600000004
+133.5
  30
 0.0
  11
-686.5000000000001
+75.86137800081468
  21
-183.55855600000004
+133.5
  31
 0.0
   0
@@ -6091,87 +5975,95 @@ LINE
   8
 0
  10
-686.5000000000001
+75.86137800081468
  20
-183.55855600000004
+133.5
  30
 0.0
  11
-686.5000000000001
+75.86137800081468
  21
-184.55855600000004
+138.5
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
 0
  10
-686.5000000000001
+543.3085560697231
  20
-184.55855600000004
+172.00000000000003
  30
 0.0
  11
-685.5000000000001
+604.308556069723
  21
-184.55855600000004
+172.00000000000003
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
 0
  10
-705.5000000000001
+604.308556069723
  20
-184.55855600000004
+172.00000000000003
  30
 0.0
  11
-705.5000000000001
+604.308556069723
  21
-183.55855600000004
+196.00000000000003
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
 0
  10
-705.5000000000001
+604.308556069723
  20
-183.55855600000004
+196.00000000000003
  30
 0.0
  11
-706.5000000000001
+543.3085560697231
  21
-183.55855600000004
+196.00000000000003
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
 0
  10
-706.5000000000001
+543.3085560697231
  20
-183.55855600000004
+196.00000000000003
  30
 0.0
  11
-706.5000000000001
+543.3085560697231
  21
-184.55855600000004
+172.00000000000003
  31
 0.0
   0
@@ -6181,15 +6073,15 @@ LINE
   8
 0
  10
-706.5000000000001
+543.3085560697231
  20
-184.55855600000004
+165.00000000000003
  30
 0.0
  11
-705.5000000000001
+543.3085560697231
  21
-184.55855600000004
+172.00000000000003
  31
 0.0
   0
@@ -6199,15 +6091,15 @@ LINE
   8
 0
  10
-685.5000000000001
+603.308556069723
  20
-187.05855600000004
+165.00000000000003
  30
 0.0
  11
-685.5000000000001
+543.3085560697231
  21
-186.05855600000004
+165.00000000000003
  31
 0.0
   0
@@ -6217,15 +6109,15 @@ LINE
   8
 0
  10
-685.5000000000001
+603.308556069723
  20
-186.05855600000004
+172.00000000000003
  30
 0.0
  11
-686.5000000000001
+603.308556069723
  21
-186.05855600000004
+165.00000000000003
  31
 0.0
   0
@@ -6235,15 +6127,15 @@ LINE
   8
 0
  10
-686.5000000000001
+611.308556069723
  20
-186.05855600000004
+172.00000000000003
  30
 0.0
  11
-686.5000000000001
+604.308556069723
  21
-187.05855600000004
+172.00000000000003
  31
 0.0
   0
@@ -6253,15 +6145,15 @@ LINE
   8
 0
  10
-686.5000000000001
+611.308556069723
  20
-187.05855600000004
+196.00000000000003
  30
 0.0
  11
-685.5000000000001
+611.308556069723
  21
-187.05855600000004
+172.00000000000003
  31
 0.0
   0
@@ -6271,33 +6163,35 @@ LINE
   8
 0
  10
-705.5000000000001
+604.308556069723
  20
-187.05855600000004
+196.00000000000003
  30
 0.0
  11
-705.5000000000001
+611.308556069723
  21
-186.05855600000004
+196.00000000000003
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
 0
  10
-705.5000000000001
+604.308556069723
  20
-186.05855600000004
+196.00000000000003
  30
 0.0
  11
-706.5000000000001
+604.308556069723
  21
-186.05855600000004
+257.00000000000006
  31
 0.0
   0
@@ -6307,33 +6201,35 @@ LINE
   8
 0
  10
-706.5000000000001
+544.3085560697231
  20
-186.05855600000004
+257.00000000000006
  30
 0.0
  11
-706.5000000000001
+604.308556069723
  21
-187.05855600000004
+257.00000000000006
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
 0
  10
-706.5000000000001
+544.3085560697231
  20
-187.05855600000004
+196.00000000000003
  30
 0.0
  11
-705.5000000000001
+544.3085560697231
  21
-187.05855600000004
+257.00000000000006
  31
 0.0
   0
@@ -6343,33 +6239,35 @@ LINE
   8
 0
  10
-685.5000000000001
+628.3085560697231
  20
-189.55855600000004
+196.00000000000003
  30
 0.0
  11
-685.5000000000001
+604.308556069723
  21
-188.55855600000004
+196.00000000000003
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
 0
  10
-685.5000000000001
+628.3085560697231
  20
-188.55855600000004
+196.00000000000003
  30
 0.0
  11
-686.5000000000001
+628.3085560697231
  21
-188.55855600000004
+257.00000000000006
  31
 0.0
   0
@@ -6379,15 +6277,15 @@ LINE
   8
 0
  10
-686.5000000000001
+604.308556069723
  20
-188.55855600000004
+257.00000000000006
  30
 0.0
  11
-686.5000000000001
+628.3085560697231
  21
-189.55855600000004
+257.00000000000006
  31
 0.0
   0
@@ -6397,15 +6295,15 @@ LINE
   8
 0
  10
-686.5000000000001
+688.3085560697231
  20
-189.55855600000004
+196.00000000000003
  30
 0.0
  11
-685.5000000000001
+628.3085560697231
  21
-189.55855600000004
+196.00000000000003
  31
 0.0
   0
@@ -6415,15 +6313,15 @@ LINE
   8
 0
  10
-705.5000000000001
+688.3085560697231
  20
-189.55855600000004
+257.00000000000006
  30
 0.0
  11
-705.5000000000001
+688.3085560697231
  21
-188.55855600000004
+196.00000000000003
  31
 0.0
   0
@@ -6433,15 +6331,15 @@ LINE
   8
 0
  10
-705.5000000000001
+628.3085560697231
  20
-188.55855600000004
+257.00000000000006
  30
 0.0
  11
-706.5000000000001
+688.3085560697231
  21
-188.55855600000004
+257.00000000000006
  31
 0.0
   0
@@ -6451,15 +6349,15 @@ LINE
   8
 0
  10
-706.5000000000001
+544.3085560697231
  20
-188.55855600000004
+196.00000000000003
  30
 0.0
  11
-706.5000000000001
+520.3085560697231
  21
-189.55855600000004
+196.00000000000003
  31
 0.0
   0
@@ -6469,33 +6367,35 @@ LINE
   8
 0
  10
-706.5000000000001
+520.3085560697231
  20
-189.55855600000004
+257.00000000000006
  30
 0.0
  11
-705.5000000000001
+544.3085560697231
  21
-189.55855600000004
+257.00000000000006
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
 0
  10
-685.5000000000001
+520.3085560697231
  20
-192.058556
+257.00000000000006
  30
 0.0
  11
-685.5000000000001
+520.3085560697231
  21
-191.05855600000004
+196.00000000000003
  31
 0.0
   0
@@ -6505,15 +6405,15 @@ LINE
   8
 0
  10
-685.5000000000001
+510.308556069723
  20
-191.05855600000004
+257.00000000000006
  30
 0.0
  11
-686.5000000000001
+520.3085560697231
  21
-191.05855600000004
+257.00000000000006
  31
 0.0
   0
@@ -6523,15 +6423,15 @@ LINE
   8
 0
  10
-686.5000000000001
+510.308556069723
  20
-191.05855600000004
+196.00000000000003
  30
 0.0
  11
-686.5000000000001
+510.308556069723
  21
-192.058556
+257.00000000000006
  31
 0.0
   0
@@ -6541,15 +6441,15 @@ LINE
   8
 0
  10
-686.5000000000001
+520.3085560697231
  20
-192.058556
+196.00000000000003
  30
 0.0
  11
-685.5000000000001
+510.308556069723
  21
-192.058556
+196.00000000000003
  31
 0.0
   0
@@ -6559,15 +6459,15 @@ LINE
   8
 0
  10
-705.5000000000001
+536.308556069723
  20
-192.058556
+196.00000000000003
  30
 0.0
  11
-705.5000000000001
+543.3085560697231
  21
-191.05855600000004
+196.00000000000003
  31
 0.0
   0
@@ -6577,15 +6477,15 @@ LINE
   8
 0
  10
-705.5000000000001
+536.308556069723
  20
-191.05855600000004
+172.00000000000003
  30
 0.0
  11
-706.5000000000001
+536.308556069723
  21
-191.05855600000004
+196.00000000000003
  31
 0.0
   0
@@ -6595,15 +6495,15 @@ LINE
   8
 0
  10
-706.5000000000001
+543.3085560697231
  20
-191.05855600000004
+172.00000000000003
  30
 0.0
  11
-706.5000000000001
+536.308556069723
  21
-192.058556
+172.00000000000003
  31
 0.0
   0
@@ -6613,15 +6513,15 @@ LINE
   8
 0
  10
-706.5000000000001
+592.3994651606322
  20
-192.058556
+166.75000000000003
  30
 0.0
  11
-705.5000000000001
+595.8994651606321
  21
-192.058556
+166.75000000000003
  31
 0.0
   0
@@ -6631,15 +6531,15 @@ LINE
   8
 0
  10
-685.5000000000001
+595.8994651606321
  20
-194.558556
+166.75000000000003
  30
 0.0
  11
-685.5000000000001
+592.3994651606322
  21
-193.55855600000004
+170.25000000000003
  31
 0.0
   0
@@ -6649,15 +6549,15 @@ LINE
   8
 0
  10
-685.5000000000001
+592.3994651606322
  20
-193.55855600000004
+170.25000000000003
  30
 0.0
  11
-686.5000000000001
+581.4903742515411
  21
-193.55855600000004
+170.25000000000003
  31
 0.0
   0
@@ -6667,15 +6567,15 @@ LINE
   8
 0
  10
-686.5000000000001
+581.4903742515411
  20
-193.55855600000004
+170.25000000000003
  30
 0.0
  11
-686.5000000000001
+577.9903742515413
  21
-194.558556
+166.75000000000003
  31
 0.0
   0
@@ -6685,15 +6585,15 @@ LINE
   8
 0
  10
-686.5000000000001
+577.9903742515413
  20
-194.558556
+166.75000000000003
  30
 0.0
  11
-685.5000000000001
+581.4903742515411
  21
-194.558556
+166.75000000000003
  31
 0.0
   0
@@ -6703,15 +6603,15 @@ LINE
   8
 0
  10
-705.5000000000001
+565.1267378879049
  20
-194.558556
+166.75000000000003
  30
 0.0
  11
-705.5000000000001
+568.6267378879048
  21
-193.55855600000004
+166.75000000000003
  31
 0.0
   0
@@ -6721,15 +6621,15 @@ LINE
   8
 0
  10
-705.5000000000001
+568.6267378879048
  20
-193.55855600000004
+166.75000000000003
  30
 0.0
  11
-706.5000000000001
+565.1267378879049
  21
-193.55855600000004
+170.25000000000003
  31
 0.0
   0
@@ -6739,15 +6639,15 @@ LINE
   8
 0
  10
-706.5000000000001
+565.1267378879049
  20
-193.55855600000004
+170.25000000000003
  30
 0.0
  11
-706.5000000000001
+554.2176469788138
  21
-194.558556
+170.25000000000003
  31
 0.0
   0
@@ -6757,15 +6657,15 @@ LINE
   8
 0
  10
-706.5000000000001
+554.2176469788138
  20
-194.558556
+170.25000000000003
  30
 0.0
  11
-705.5000000000001
+550.717646978814
  21
-194.558556
+166.75000000000003
  31
 0.0
   0
@@ -6775,15 +6675,15 @@ LINE
   8
 0
  10
-685.5000000000001
+550.717646978814
  20
-197.05855600000004
+166.75000000000003
  30
 0.0
  11
-685.5000000000001
+554.2176469788138
  21
-196.05855600000004
+166.75000000000003
  31
 0.0
   0
@@ -6793,15 +6693,15 @@ LINE
   8
 0
  10
-685.5000000000001
+609.5585560697231
  20
-196.05855600000004
+188.00000000000003
  30
 0.0
  11
-686.5000000000001
+606.058556069723
  21
-196.05855600000004
+188.00000000000003
  31
 0.0
   0
@@ -6811,15 +6711,15 @@ LINE
   8
 0
  10
-686.5000000000001
+606.058556069723
  20
-196.05855600000004
+188.00000000000003
  30
 0.0
  11
-686.5000000000001
+606.058556069723
  21
-197.05855600000004
+180.0
  31
 0.0
   0
@@ -6829,15 +6729,15 @@ LINE
   8
 0
  10
-686.5000000000001
+606.058556069723
  20
-197.05855600000004
+180.0
  30
 0.0
  11
-685.5000000000001
+609.5585560697231
  21
-197.05855600000004
+180.0
  31
 0.0
   0
@@ -6847,15 +6747,15 @@ LINE
   8
 0
  10
-705.5000000000001
+551.8085560697231
  20
-197.05855600000004
+247.50000000000003
  30
 0.0
  11
-705.5000000000001
+551.8085560697231
  21
-196.05855600000004
+229.50000000000003
  31
 0.0
   0
@@ -6865,15 +6765,15 @@ LINE
   8
 0
  10
-705.5000000000001
+551.8085560697231
  20
-196.05855600000004
+229.50000000000003
  30
 0.0
  11
-706.5000000000001
+586.8085560697231
  21
-196.05855600000004
+229.50000000000003
  31
 0.0
   0
@@ -6883,15 +6783,15 @@ LINE
   8
 0
  10
-706.5000000000001
+586.8085560697231
  20
-196.05855600000004
+229.50000000000003
  30
 0.0
  11
-706.5000000000001
+586.8085560697231
  21
-197.05855600000004
+247.50000000000003
  31
 0.0
   0
@@ -6901,15 +6801,15 @@ LINE
   8
 0
  10
-706.5000000000001
+586.8085560697231
  20
-197.05855600000004
+247.50000000000003
  30
 0.0
  11
-705.5000000000001
+551.8085560697231
  21
-197.05855600000004
+247.50000000000003
  31
 0.0
   0
@@ -6919,15 +6819,15 @@ LINE
   8
 0
  10
-685.5000000000001
+604.8085560697231
  20
-199.55855600000004
+209.25
  30
 0.0
  11
-685.5000000000001
+604.8085560697231
  21
-198.55855600000004
+206.25000000000003
  31
 0.0
   0
@@ -6937,15 +6837,15 @@ LINE
   8
 0
  10
-685.5000000000001
+604.8085560697231
  20
-198.55855600000004
+206.25000000000003
  30
 0.0
  11
-686.5000000000001
+607.8085560697231
  21
-198.55855600000004
+206.25000000000003
  31
 0.0
   0
@@ -6955,15 +6855,15 @@ LINE
   8
 0
  10
-686.5000000000001
+607.8085560697231
  20
-198.55855600000004
+206.25000000000003
  30
 0.0
  11
-686.5000000000001
+607.8085560697231
  21
-199.55855600000004
+209.25
  31
 0.0
   0
@@ -6973,15 +6873,15 @@ LINE
   8
 0
  10
-686.5000000000001
+607.8085560697231
  20
-199.55855600000004
+209.25
  30
 0.0
  11
-685.5000000000001
+604.8085560697231
  21
-199.55855600000004
+209.25
  31
 0.0
   0
@@ -6991,15 +6891,15 @@ LINE
   8
 0
  10
-705.5000000000001
+625.8085560697231
  20
-199.55855600000004
+208.25000000000003
  30
 0.0
  11
-705.5000000000001
+625.8085560697231
  21
-198.55855600000004
+207.25000000000003
  31
 0.0
   0
@@ -7009,15 +6909,15 @@ LINE
   8
 0
  10
-705.5000000000001
+625.8085560697231
  20
-198.55855600000004
+207.25000000000003
  30
 0.0
  11
-706.5000000000001
+626.8085560697231
  21
-198.55855600000004
+207.25000000000003
  31
 0.0
   0
@@ -7027,15 +6927,15 @@ LINE
   8
 0
  10
-706.5000000000001
+626.8085560697231
  20
-198.55855600000004
+207.25000000000003
  30
 0.0
  11
-706.5000000000001
+626.8085560697231
  21
-199.55855600000004
+208.25000000000003
  31
 0.0
   0
@@ -7045,15 +6945,15 @@ LINE
   8
 0
  10
-706.5000000000001
+626.8085560697231
  20
-199.55855600000004
+208.25000000000003
  30
 0.0
  11
-705.5000000000001
+625.8085560697231
  21
-199.55855600000004
+208.25000000000003
  31
 0.0
   0
@@ -7063,15 +6963,15 @@ LINE
   8
 0
  10
-685.5000000000001
+605.8085560697231
  20
-202.05855600000004
+210.75000000000003
  30
 0.0
  11
-685.5000000000001
+605.8085560697231
  21
-201.058556
+209.75000000000003
  31
 0.0
   0
@@ -7081,15 +6981,15 @@ LINE
   8
 0
  10
-685.5000000000001
+605.8085560697231
  20
-201.058556
+209.75000000000003
  30
 0.0
  11
-686.5000000000001
+606.8085560697231
  21
-201.058556
+209.75000000000003
  31
 0.0
   0
@@ -7099,15 +6999,15 @@ LINE
   8
 0
  10
-686.5000000000001
+606.8085560697231
  20
-201.058556
+209.75000000000003
  30
 0.0
  11
-686.5000000000001
+606.8085560697231
  21
-202.05855600000004
+210.75000000000003
  31
 0.0
   0
@@ -7117,15 +7017,15 @@ LINE
   8
 0
  10
-686.5000000000001
+606.8085560697231
  20
-202.05855600000004
+210.75000000000003
  30
 0.0
  11
-685.5000000000001
+605.8085560697231
  21
-202.05855600000004
+210.75000000000003
  31
 0.0
   0
@@ -7135,15 +7035,15 @@ LINE
   8
 0
  10
-705.5000000000001
+625.8085560697231
  20
-202.05855600000004
+210.75000000000003
  30
 0.0
  11
-705.5000000000001
+625.8085560697231
  21
-201.058556
+209.75000000000003
  31
 0.0
   0
@@ -7153,15 +7053,15 @@ LINE
   8
 0
  10
-705.5000000000001
+625.8085560697231
  20
-201.058556
+209.75000000000003
  30
 0.0
  11
-706.5000000000001
+626.8085560697231
  21
-201.058556
+209.75000000000003
  31
 0.0
   0
@@ -7171,15 +7071,15 @@ LINE
   8
 0
  10
-706.5000000000001
+626.8085560697231
  20
-201.058556
+209.75000000000003
  30
 0.0
  11
-706.5000000000001
+626.8085560697231
  21
-202.05855600000004
+210.75000000000003
  31
 0.0
   0
@@ -7189,15 +7089,15 @@ LINE
   8
 0
  10
-706.5000000000001
+626.8085560697231
  20
-202.05855600000004
+210.75000000000003
  30
 0.0
  11
-705.5000000000001
+625.8085560697231
  21
-202.05855600000004
+210.75000000000003
  31
 0.0
   0
@@ -7207,15 +7107,15 @@ LINE
   8
 0
  10
-685.5000000000001
+605.8085560697231
  20
-204.55855600000004
+213.25000000000003
  30
 0.0
  11
-685.5000000000001
+605.8085560697231
  21
-203.558556
+212.25000000000003
  31
 0.0
   0
@@ -7225,15 +7125,15 @@ LINE
   8
 0
  10
-685.5000000000001
+605.8085560697231
  20
-203.558556
+212.25000000000003
  30
 0.0
  11
-686.5000000000001
+606.8085560697231
  21
-203.558556
+212.25000000000003
  31
 0.0
   0
@@ -7243,15 +7143,15 @@ LINE
   8
 0
  10
-686.5000000000001
+606.8085560697231
  20
-203.558556
+212.25000000000003
  30
 0.0
  11
-686.5000000000001
+606.8085560697231
  21
-204.55855600000004
+213.25000000000003
  31
 0.0
   0
@@ -7261,15 +7161,15 @@ LINE
   8
 0
  10
-686.5000000000001
+606.8085560697231
  20
-204.55855600000004
+213.25000000000003
  30
 0.0
  11
-685.5000000000001
+605.8085560697231
  21
-204.55855600000004
+213.25000000000003
  31
 0.0
   0
@@ -7279,15 +7179,15 @@ LINE
   8
 0
  10
-705.5000000000001
+625.8085560697231
  20
-204.55855600000004
+213.25000000000003
  30
 0.0
  11
-705.5000000000001
+625.8085560697231
  21
-203.558556
+212.25000000000003
  31
 0.0
   0
@@ -7297,15 +7197,15 @@ LINE
   8
 0
  10
-705.5000000000001
+625.8085560697231
  20
-203.558556
+212.25000000000003
  30
 0.0
  11
-706.5000000000001
+626.8085560697231
  21
-203.558556
+212.25000000000003
  31
 0.0
   0
@@ -7315,15 +7215,15 @@ LINE
   8
 0
  10
-706.5000000000001
+626.8085560697231
  20
-203.558556
+212.25000000000003
  30
 0.0
  11
-706.5000000000001
+626.8085560697231
  21
-204.55855600000004
+213.25000000000003
  31
 0.0
   0
@@ -7333,15 +7233,15 @@ LINE
   8
 0
  10
-706.5000000000001
+626.8085560697231
  20
-204.55855600000004
+213.25000000000003
  30
 0.0
  11
-705.5000000000001
+625.8085560697231
  21
-204.55855600000004
+213.25000000000003
  31
 0.0
   0
@@ -7351,15 +7251,15 @@ LINE
   8
 0
  10
-685.5000000000001
+605.8085560697231
  20
-207.05855600000004
+215.75000000000003
  30
 0.0
  11
-685.5000000000001
+605.8085560697231
  21
-206.05855600000004
+214.75000000000003
  31
 0.0
   0
@@ -7369,15 +7269,15 @@ LINE
   8
 0
  10
-685.5000000000001
+605.8085560697231
  20
-206.05855600000004
+214.75000000000003
  30
 0.0
  11
-686.5000000000001
+606.8085560697231
  21
-206.05855600000004
+214.75000000000003
  31
 0.0
   0
@@ -7387,15 +7287,15 @@ LINE
   8
 0
  10
-686.5000000000001
+606.8085560697231
  20
-206.05855600000004
+214.75000000000003
  30
 0.0
  11
-686.5000000000001
+606.8085560697231
  21
-207.05855600000004
+215.75000000000003
  31
 0.0
   0
@@ -7405,15 +7305,15 @@ LINE
   8
 0
  10
-686.5000000000001
+606.8085560697231
  20
-207.05855600000004
+215.75000000000003
  30
 0.0
  11
-685.5000000000001
+605.8085560697231
  21
-207.05855600000004
+215.75000000000003
  31
 0.0
   0
@@ -7423,15 +7323,15 @@ LINE
   8
 0
  10
-705.5000000000001
+625.8085560697231
  20
-207.05855600000004
+215.75000000000003
  30
 0.0
  11
-705.5000000000001
+625.8085560697231
  21
-206.05855600000004
+214.75000000000003
  31
 0.0
   0
@@ -7441,15 +7341,15 @@ LINE
   8
 0
  10
-705.5000000000001
+625.8085560697231
  20
-206.05855600000004
+214.75000000000003
  30
 0.0
  11
-706.5000000000001
+626.8085560697231
  21
-206.05855600000004
+214.75000000000003
  31
 0.0
   0
@@ -7459,15 +7359,15 @@ LINE
   8
 0
  10
-706.5000000000001
+626.8085560697231
  20
-206.05855600000004
+214.75000000000003
  30
 0.0
  11
-706.5000000000001
+626.8085560697231
  21
-207.05855600000004
+215.75000000000003
  31
 0.0
   0
@@ -7477,15 +7377,15 @@ LINE
   8
 0
  10
-706.5000000000001
+626.8085560697231
  20
-207.05855600000004
+215.75000000000003
  30
 0.0
  11
-705.5000000000001
+625.8085560697231
  21
-207.05855600000004
+215.75000000000003
  31
 0.0
   0
@@ -7495,15 +7395,15 @@ LINE
   8
 0
  10
-685.5000000000001
+605.8085560697231
  20
-209.55855600000004
+218.25000000000003
  30
 0.0
  11
-685.5000000000001
+605.8085560697231
  21
-208.55855600000004
+217.25000000000003
  31
 0.0
   0
@@ -7513,15 +7413,15 @@ LINE
   8
 0
  10
-685.5000000000001
+605.8085560697231
  20
-208.55855600000004
+217.25000000000003
  30
 0.0
  11
-686.5000000000001
+606.8085560697231
  21
-208.55855600000004
+217.25000000000003
  31
 0.0
   0
@@ -7531,15 +7431,15 @@ LINE
   8
 0
  10
-686.5000000000001
+606.8085560697231
  20
-208.55855600000004
+217.25000000000003
  30
 0.0
  11
-686.5000000000001
+606.8085560697231
  21
-209.55855600000004
+218.25000000000003
  31
 0.0
   0
@@ -7549,15 +7449,15 @@ LINE
   8
 0
  10
-686.5000000000001
+606.8085560697231
  20
-209.55855600000004
+218.25000000000003
  30
 0.0
  11
-685.5000000000001
+605.8085560697231
  21
-209.55855600000004
+218.25000000000003
  31
 0.0
   0
@@ -7567,15 +7467,15 @@ LINE
   8
 0
  10
-705.5000000000001
+625.8085560697231
  20
-209.55855600000004
+218.25000000000003
  30
 0.0
  11
-705.5000000000001
+625.8085560697231
  21
-208.55855600000004
+217.25000000000003
  31
 0.0
   0
@@ -7585,15 +7485,15 @@ LINE
   8
 0
  10
-705.5000000000001
+625.8085560697231
  20
-208.55855600000004
+217.25000000000003
  30
 0.0
  11
-706.5000000000001
+626.8085560697231
  21
-208.55855600000004
+217.25000000000003
  31
 0.0
   0
@@ -7603,15 +7503,15 @@ LINE
   8
 0
  10
-706.5000000000001
+626.8085560697231
  20
-208.55855600000004
+217.25000000000003
  30
 0.0
  11
-706.5000000000001
+626.8085560697231
  21
-209.55855600000004
+218.25000000000003
  31
 0.0
   0
@@ -7621,15 +7521,15 @@ LINE
   8
 0
  10
-706.5000000000001
+626.8085560697231
  20
-209.55855600000004
+218.25000000000003
  30
 0.0
  11
-705.5000000000001
+625.8085560697231
  21
-209.55855600000004
+218.25000000000003
  31
 0.0
   0
@@ -7639,15 +7539,15 @@ LINE
   8
 0
  10
-685.5000000000001
+605.8085560697231
  20
-212.05855600000004
+220.75
  30
 0.0
  11
-685.5000000000001
+605.8085560697231
  21
-211.05855600000004
+219.75000000000003
  31
 0.0
   0
@@ -7657,15 +7557,15 @@ LINE
   8
 0
  10
-685.5000000000001
+605.8085560697231
  20
-211.05855600000004
+219.75000000000003
  30
 0.0
  11
-686.5000000000001
+606.8085560697231
  21
-211.05855600000004
+219.75000000000003
  31
 0.0
   0
@@ -7675,15 +7575,15 @@ LINE
   8
 0
  10
-686.5000000000001
+606.8085560697231
  20
-211.05855600000004
+219.75000000000003
  30
 0.0
  11
-686.5000000000001
+606.8085560697231
  21
-212.05855600000004
+220.75
  31
 0.0
   0
@@ -7693,15 +7593,15 @@ LINE
   8
 0
  10
-686.5000000000001
+606.8085560697231
  20
-212.05855600000004
+220.75
  30
 0.0
  11
-685.5000000000001
+605.8085560697231
  21
-212.05855600000004
+220.75
  31
 0.0
   0
@@ -7711,15 +7611,15 @@ LINE
   8
 0
  10
-704.5000000000001
+625.8085560697231
  20
-213.05855600000004
+220.75
  30
 0.0
  11
-704.5000000000001
+625.8085560697231
  21
-210.05855600000004
+219.75000000000003
  31
 0.0
   0
@@ -7729,15 +7629,15 @@ LINE
   8
 0
  10
-704.5000000000001
+625.8085560697231
  20
-210.05855600000004
+219.75000000000003
  30
 0.0
  11
-707.5000000000001
+626.8085560697231
  21
-210.05855600000004
+219.75000000000003
  31
 0.0
   0
@@ -7747,15 +7647,15 @@ LINE
   8
 0
  10
-707.5000000000001
+626.8085560697231
  20
-210.05855600000004
+219.75000000000003
  30
 0.0
  11
-707.5000000000001
+626.8085560697231
  21
-213.05855600000004
+220.75
  31
 0.0
   0
@@ -7765,15 +7665,15 @@ LINE
   8
 0
  10
-707.5000000000001
+626.8085560697231
  20
-213.05855600000004
+220.75
  30
 0.0
  11
-704.5000000000001
+625.8085560697231
  21
-213.05855600000004
+220.75
  31
 0.0
   0
@@ -7783,15 +7683,15 @@ LINE
   8
 0
  10
-700.2500000000001
+605.8085560697231
  20
-170.05855600000004
+223.25000000000003
  30
 0.0
  11
-691.7500000000001
+605.8085560697231
  21
-170.05855600000004
+222.25000000000003
  31
 0.0
   0
@@ -7801,15 +7701,15 @@ LINE
   8
 0
  10
-691.7500000000001
+605.8085560697231
  20
-170.05855600000004
+222.25000000000003
  30
 0.0
  11
-691.7500000000001
+606.8085560697231
  21
-169.558556
+222.25000000000003
  31
 0.0
   0
@@ -7819,15 +7719,15 @@ LINE
   8
 0
  10
-691.7500000000001
+606.8085560697231
  20
-169.558556
+222.25000000000003
  30
 0.0
  11
-700.2500000000001
+606.8085560697231
  21
-169.558556
+223.25000000000003
  31
 0.0
   0
@@ -7837,15 +7737,15 @@ LINE
   8
 0
  10
-700.2500000000001
+606.8085560697231
  20
-169.558556
+223.25000000000003
  30
 0.0
  11
-700.2500000000001
+605.8085560697231
  21
-170.05855600000004
+223.25000000000003
  31
 0.0
   0
@@ -7855,15 +7755,15 @@ LINE
   8
 0
  10
-691.7500000000001
+625.8085560697231
  20
-217.80855600000004
+223.25000000000003
  30
 0.0
  11
-700.2500000000001
+625.8085560697231
  21
-217.80855600000004
+222.25000000000003
  31
 0.0
   0
@@ -7873,15 +7773,15 @@ LINE
   8
 0
  10
-700.2500000000001
+625.8085560697231
  20
-217.80855600000004
+222.25000000000003
  30
 0.0
  11
-700.2500000000001
+626.8085560697231
  21
-218.30855600000004
+222.25000000000003
  31
 0.0
   0
@@ -7891,15 +7791,15 @@ LINE
   8
 0
  10
-700.2500000000001
+626.8085560697231
  20
-218.30855600000004
+222.25000000000003
  30
 0.0
  11
-691.7500000000001
+626.8085560697231
  21
-218.30855600000004
+223.25000000000003
  31
 0.0
   0
@@ -7909,15 +7809,15 @@ LINE
   8
 0
  10
-691.7500000000001
+626.8085560697231
  20
-218.30855600000004
+223.25000000000003
  30
 0.0
  11
-691.7500000000001
+625.8085560697231
  21
-217.80855600000004
+223.25000000000003
  31
 0.0
   0
@@ -7927,15 +7827,15 @@ LINE
   8
 0
  10
-723.0000000000001
+605.8085560697231
  20
-213.30855600000004
+225.75000000000003
  30
 0.0
  11
-723.0000000000001
+605.8085560697231
  21
-200.30855600000004
+224.75000000000003
  31
 0.0
   0
@@ -7945,15 +7845,15 @@ LINE
   8
 0
  10
-723.0000000000001
+605.8085560697231
  20
-200.30855600000004
+224.75000000000003
  30
 0.0
  11
-753.0000000000001
+606.8085560697231
  21
-200.30855600000004
+224.75000000000003
  31
 0.0
   0
@@ -7963,15 +7863,15 @@ LINE
   8
 0
  10
-753.0000000000001
+606.8085560697231
  20
-200.30855600000004
+224.75000000000003
  30
 0.0
  11
-753.0000000000001
+606.8085560697231
  21
-213.30855600000004
+225.75000000000003
  31
 0.0
   0
@@ -7981,15 +7881,15 @@ LINE
   8
 0
  10
-753.0000000000001
+606.8085560697231
  20
-213.30855600000004
+225.75000000000003
  30
 0.0
  11
-723.0000000000001
+605.8085560697231
  21
-213.30855600000004
+225.75000000000003
  31
 0.0
   0
@@ -7999,15 +7899,15 @@ LINE
   8
 0
  10
-730.0681818181819
+625.8085560697231
  20
-167.80855600000004
+225.75000000000003
  30
 0.0
  11
-718.659090909091
+625.8085560697231
  21
-167.80855600000004
+224.75000000000003
  31
 0.0
   0
@@ -8017,15 +7917,15 @@ LINE
   8
 0
  10
-718.659090909091
+625.8085560697231
  20
-167.80855600000004
+224.75000000000003
  30
 0.0
  11
-718.659090909091
+626.8085560697231
  21
-167.308556
+224.75000000000003
  31
 0.0
   0
@@ -8035,15 +7935,15 @@ LINE
   8
 0
  10
-718.659090909091
+626.8085560697231
  20
-167.308556
+224.75000000000003
  30
 0.0
  11
-730.0681818181819
+626.8085560697231
  21
-167.308556
+225.75000000000003
  31
 0.0
   0
@@ -8053,15 +7953,15 @@ LINE
   8
 0
  10
-730.0681818181819
+626.8085560697231
  20
-167.308556
+225.75000000000003
  30
 0.0
  11
-730.0681818181819
+625.8085560697231
  21
-167.80855600000004
+225.75000000000003
  31
 0.0
   0
@@ -8071,15 +7971,15 @@ LINE
   8
 0
  10
-757.3409090909092
+605.8085560697231
  20
-167.80855600000004
+228.25000000000003
  30
 0.0
  11
-745.9318181818182
+605.8085560697231
  21
-167.80855600000004
+227.25000000000003
  31
 0.0
   0
@@ -8089,15 +7989,15 @@ LINE
   8
 0
  10
-745.9318181818182
+605.8085560697231
  20
-167.80855600000004
+227.25000000000003
  30
 0.0
  11
-745.9318181818182
+606.8085560697231
  21
-167.308556
+227.25000000000003
  31
 0.0
   0
@@ -8107,15 +8007,15 @@ LINE
   8
 0
  10
-745.9318181818182
+606.8085560697231
  20
-167.308556
+227.25000000000003
  30
 0.0
  11
-757.3409090909092
+606.8085560697231
  21
-167.308556
+228.25000000000003
  31
 0.0
   0
@@ -8125,15 +8025,15 @@ LINE
   8
 0
  10
-757.3409090909092
+606.8085560697231
  20
-167.308556
+228.25000000000003
  30
 0.0
  11
-757.3409090909092
+605.8085560697231
  21
-167.80855600000004
+228.25000000000003
  31
 0.0
   0
@@ -8143,15 +8043,15 @@ LINE
   8
 0
  10
-760.25
+625.8085560697231
  20
-184.74037418181823
+228.25000000000003
  30
 0.0
  11
-760.25
+625.8085560697231
  21
-173.14946509090913
+227.25000000000003
  31
 0.0
   0
@@ -8161,15 +8061,15 @@ LINE
   8
 0
  10
-760.25
+625.8085560697231
  20
-173.14946509090913
+227.25000000000003
  30
 0.0
  11
-760.75
+626.8085560697231
  21
-173.14946509090913
+227.25000000000003
  31
 0.0
   0
@@ -8179,15 +8079,15 @@ LINE
   8
 0
  10
-760.75
+626.8085560697231
  20
-173.14946509090913
+227.25000000000003
  30
 0.0
  11
-760.75
+626.8085560697231
  21
-184.74037418181823
+228.25000000000003
  31
 0.0
   0
@@ -8197,15 +8097,15 @@ LINE
   8
 0
  10
-760.75
+626.8085560697231
  20
-184.74037418181823
+228.25000000000003
  30
 0.0
  11
-760.25
+625.8085560697231
  21
-184.74037418181823
+228.25000000000003
  31
 0.0
   0
@@ -8215,15 +8115,15 @@ LINE
   8
 0
  10
-760.25
+605.8085560697231
  20
-212.46764690909094
+230.75000000000003
  30
 0.0
  11
-760.25
+605.8085560697231
  21
-200.87673781818185
+229.75
  31
 0.0
   0
@@ -8233,15 +8133,15 @@ LINE
   8
 0
  10
-760.25
+605.8085560697231
  20
-200.87673781818185
+229.75
  30
 0.0
  11
-760.75
+606.8085560697231
  21
-200.87673781818185
+229.75
  31
 0.0
   0
@@ -8251,15 +8151,15 @@ LINE
   8
 0
  10
-760.75
+606.8085560697231
  20
-200.87673781818185
+229.75
  30
 0.0
  11
-760.75
+606.8085560697231
  21
-212.46764690909094
+230.75000000000003
  31
 0.0
   0
@@ -8269,15 +8169,15 @@ LINE
   8
 0
  10
-760.75
+606.8085560697231
  20
-212.46764690909094
+230.75000000000003
  30
 0.0
  11
-760.25
+605.8085560697231
  21
-212.46764690909094
+230.75000000000003
  31
 0.0
   0
@@ -8287,15 +8187,15 @@ LINE
   8
 0
  10
-600.5
+625.8085560697231
  20
-175.55855600000004
+230.75000000000003
  30
 0.0
  11
-600.5
+625.8085560697231
  21
-172.55855600000004
+229.75
  31
 0.0
   0
@@ -8305,15 +8205,15 @@ LINE
   8
 0
  10
-600.5
+625.8085560697231
  20
-172.55855600000004
+229.75
  30
 0.0
  11
-603.5000000000001
+626.8085560697231
  21
-172.55855600000004
+229.75
  31
 0.0
   0
@@ -8323,15 +8223,15 @@ LINE
   8
 0
  10
-603.5000000000001
+626.8085560697231
  20
-172.55855600000004
+229.75
  30
 0.0
  11
-603.5000000000001
+626.8085560697231
  21
-175.55855600000004
+230.75000000000003
  31
 0.0
   0
@@ -8341,15 +8241,15 @@ LINE
   8
 0
  10
-603.5000000000001
+626.8085560697231
  20
-175.55855600000004
+230.75000000000003
  30
 0.0
  11
-600.5
+625.8085560697231
  21
-175.55855600000004
+230.75000000000003
  31
 0.0
   0
@@ -8359,15 +8259,15 @@ LINE
   8
 0
  10
-621.5000000000001
+605.8085560697231
  20
-174.55855600000004
+233.25000000000003
  30
 0.0
  11
-621.5000000000001
+605.8085560697231
  21
-173.55855600000004
+232.25000000000003
  31
 0.0
   0
@@ -8377,15 +8277,15 @@ LINE
   8
 0
  10
-621.5000000000001
+605.8085560697231
  20
-173.55855600000004
+232.25000000000003
  30
 0.0
  11
-622.5000000000001
+606.8085560697231
  21
-173.55855600000004
+232.25000000000003
  31
 0.0
   0
@@ -8395,15 +8295,15 @@ LINE
   8
 0
  10
-622.5000000000001
+606.8085560697231
  20
-173.55855600000004
+232.25000000000003
  30
 0.0
  11
-622.5000000000001
+606.8085560697231
  21
-174.55855600000004
+233.25000000000003
  31
 0.0
   0
@@ -8413,15 +8313,15 @@ LINE
   8
 0
  10
-622.5000000000001
+606.8085560697231
  20
-174.55855600000004
+233.25000000000003
  30
 0.0
  11
-621.5000000000001
+605.8085560697231
  21
-174.55855600000004
+233.25000000000003
  31
 0.0
   0
@@ -8431,15 +8331,15 @@ LINE
   8
 0
  10
-601.5
+625.8085560697231
  20
-177.05855600000004
+233.25000000000003
  30
 0.0
  11
-601.5
+625.8085560697231
  21
-176.058556
+232.25000000000003
  31
 0.0
   0
@@ -8449,15 +8349,15 @@ LINE
   8
 0
  10
-601.5
+625.8085560697231
  20
-176.058556
+232.25000000000003
  30
 0.0
  11
-602.5000000000001
+626.8085560697231
  21
-176.058556
+232.25000000000003
  31
 0.0
   0
@@ -8467,15 +8367,15 @@ LINE
   8
 0
  10
-602.5000000000001
+626.8085560697231
  20
-176.058556
+232.25000000000003
  30
 0.0
  11
-602.5000000000001
+626.8085560697231
  21
-177.05855600000004
+233.25000000000003
  31
 0.0
   0
@@ -8485,15 +8385,15 @@ LINE
   8
 0
  10
-602.5000000000001
+626.8085560697231
  20
-177.05855600000004
+233.25000000000003
  30
 0.0
  11
-601.5
+625.8085560697231
  21
-177.05855600000004
+233.25000000000003
  31
 0.0
   0
@@ -8503,15 +8403,15 @@ LINE
   8
 0
  10
-621.5000000000001
+605.8085560697231
  20
-177.05855600000004
+235.75000000000003
  30
 0.0
  11
-621.5000000000001
+605.8085560697231
  21
-176.058556
+234.75000000000003
  31
 0.0
   0
@@ -8521,15 +8421,15 @@ LINE
   8
 0
  10
-621.5000000000001
+605.8085560697231
  20
-176.058556
+234.75000000000003
  30
 0.0
  11
-622.5000000000001
+606.8085560697231
  21
-176.058556
+234.75000000000003
  31
 0.0
   0
@@ -8539,15 +8439,15 @@ LINE
   8
 0
  10
-622.5000000000001
+606.8085560697231
  20
-176.058556
+234.75000000000003
  30
 0.0
  11
-622.5000000000001
+606.8085560697231
  21
-177.05855600000004
+235.75000000000003
  31
 0.0
   0
@@ -8557,15 +8457,15 @@ LINE
   8
 0
  10
-622.5000000000001
+606.8085560697231
  20
-177.05855600000004
+235.75000000000003
  30
 0.0
  11
-621.5000000000001
+605.8085560697231
  21
-177.05855600000004
+235.75000000000003
  31
 0.0
   0
@@ -8575,15 +8475,15 @@ LINE
   8
 0
  10
-601.5
+625.8085560697231
  20
-179.55855600000004
+235.75000000000003
  30
 0.0
  11
-601.5
+625.8085560697231
  21
-178.558556
+234.75000000000003
  31
 0.0
   0
@@ -8593,15 +8493,15 @@ LINE
   8
 0
  10
-601.5
+625.8085560697231
  20
-178.558556
+234.75000000000003
  30
 0.0
  11
-602.5000000000001
+626.8085560697231
  21
-178.558556
+234.75000000000003
  31
 0.0
   0
@@ -8611,15 +8511,15 @@ LINE
   8
 0
  10
-602.5000000000001
+626.8085560697231
  20
-178.558556
+234.75000000000003
  30
 0.0
  11
-602.5000000000001
+626.8085560697231
  21
-179.55855600000004
+235.75000000000003
  31
 0.0
   0
@@ -8629,15 +8529,15 @@ LINE
   8
 0
  10
-602.5000000000001
+626.8085560697231
  20
-179.55855600000004
+235.75000000000003
  30
 0.0
  11
-601.5
+625.8085560697231
  21
-179.55855600000004
+235.75000000000003
  31
 0.0
   0
@@ -8647,15 +8547,15 @@ LINE
   8
 0
  10
-621.5000000000001
+605.8085560697231
  20
-179.55855600000004
+238.25000000000003
  30
 0.0
  11
-621.5000000000001
+605.8085560697231
  21
-178.558556
+237.25000000000003
  31
 0.0
   0
@@ -8665,15 +8565,15 @@ LINE
   8
 0
  10
-621.5000000000001
+605.8085560697231
  20
-178.558556
+237.25000000000003
  30
 0.0
  11
-622.5000000000001
+606.8085560697231
  21
-178.558556
+237.25000000000003
  31
 0.0
   0
@@ -8683,15 +8583,15 @@ LINE
   8
 0
  10
-622.5000000000001
+606.8085560697231
  20
-178.558556
+237.25000000000003
  30
 0.0
  11
-622.5000000000001
+606.8085560697231
  21
-179.55855600000004
+238.25000000000003
  31
 0.0
   0
@@ -8701,15 +8601,15 @@ LINE
   8
 0
  10
-622.5000000000001
+606.8085560697231
  20
-179.55855600000004
+238.25000000000003
  30
 0.0
  11
-621.5000000000001
+605.8085560697231
  21
-179.55855600000004
+238.25000000000003
  31
 0.0
   0
@@ -8719,15 +8619,15 @@ LINE
   8
 0
  10
-601.5
+625.8085560697231
  20
-182.05855600000004
+238.25000000000003
  30
 0.0
  11
-601.5
+625.8085560697231
  21
-181.058556
+237.25000000000003
  31
 0.0
   0
@@ -8737,15 +8637,15 @@ LINE
   8
 0
  10
-601.5
+625.8085560697231
  20
-181.058556
+237.25000000000003
  30
 0.0
  11
-602.5000000000001
+626.8085560697231
  21
-181.058556
+237.25000000000003
  31
 0.0
   0
@@ -8755,15 +8655,15 @@ LINE
   8
 0
  10
-602.5000000000001
+626.8085560697231
  20
-181.058556
+237.25000000000003
  30
 0.0
  11
-602.5000000000001
+626.8085560697231
  21
-182.05855600000004
+238.25000000000003
  31
 0.0
   0
@@ -8773,15 +8673,15 @@ LINE
   8
 0
  10
-602.5000000000001
+626.8085560697231
  20
-182.05855600000004
+238.25000000000003
  30
 0.0
  11
-601.5
+625.8085560697231
  21
-182.05855600000004
+238.25000000000003
  31
 0.0
   0
@@ -8791,15 +8691,15 @@ LINE
   8
 0
  10
-621.5000000000001
+605.8085560697231
  20
-182.05855600000004
+240.75000000000003
  30
 0.0
  11
-621.5000000000001
+605.8085560697231
  21
-181.058556
+239.75000000000003
  31
 0.0
   0
@@ -8809,15 +8709,15 @@ LINE
   8
 0
  10
-621.5000000000001
+605.8085560697231
  20
-181.058556
+239.75000000000003
  30
 0.0
  11
-622.5000000000001
+606.8085560697231
  21
-181.058556
+239.75000000000003
  31
 0.0
   0
@@ -8827,15 +8727,15 @@ LINE
   8
 0
  10
-622.5000000000001
+606.8085560697231
  20
-181.058556
+239.75000000000003
  30
 0.0
  11
-622.5000000000001
+606.8085560697231
  21
-182.05855600000004
+240.75000000000003
  31
 0.0
   0
@@ -8845,15 +8745,15 @@ LINE
   8
 0
  10
-622.5000000000001
+606.8085560697231
  20
-182.05855600000004
+240.75000000000003
  30
 0.0
  11
-621.5000000000001
+605.8085560697231
  21
-182.05855600000004
+240.75000000000003
  31
 0.0
   0
@@ -8863,15 +8763,15 @@ LINE
   8
 0
  10
-601.5
+625.8085560697231
  20
-184.55855600000004
+240.75000000000003
  30
 0.0
  11
-601.5
+625.8085560697231
  21
-183.55855600000004
+239.75000000000003
  31
 0.0
   0
@@ -8881,15 +8781,15 @@ LINE
   8
 0
  10
-601.5
+625.8085560697231
  20
-183.55855600000004
+239.75000000000003
  30
 0.0
  11
-602.5000000000001
+626.8085560697231
  21
-183.55855600000004
+239.75000000000003
  31
 0.0
   0
@@ -8899,15 +8799,15 @@ LINE
   8
 0
  10
-602.5000000000001
+626.8085560697231
  20
-183.55855600000004
+239.75000000000003
  30
 0.0
  11
-602.5000000000001
+626.8085560697231
  21
-184.55855600000004
+240.75000000000003
  31
 0.0
   0
@@ -8917,15 +8817,15 @@ LINE
   8
 0
  10
-602.5000000000001
+626.8085560697231
  20
-184.55855600000004
+240.75000000000003
  30
 0.0
  11
-601.5
+625.8085560697231
  21
-184.55855600000004
+240.75000000000003
  31
 0.0
   0
@@ -8935,15 +8835,15 @@ LINE
   8
 0
  10
-621.5000000000001
+605.8085560697231
  20
-184.55855600000004
+243.25000000000003
  30
 0.0
  11
-621.5000000000001
+605.8085560697231
  21
-183.55855600000004
+242.25000000000003
  31
 0.0
   0
@@ -8953,15 +8853,15 @@ LINE
   8
 0
  10
-621.5000000000001
+605.8085560697231
  20
-183.55855600000004
+242.25000000000003
  30
 0.0
  11
-622.5000000000001
+606.8085560697231
  21
-183.55855600000004
+242.25000000000003
  31
 0.0
   0
@@ -8971,15 +8871,15 @@ LINE
   8
 0
  10
-622.5000000000001
+606.8085560697231
  20
-183.55855600000004
+242.25000000000003
  30
 0.0
  11
-622.5000000000001
+606.8085560697231
  21
-184.55855600000004
+243.25000000000003
  31
 0.0
   0
@@ -8989,15 +8889,15 @@ LINE
   8
 0
  10
-622.5000000000001
+606.8085560697231
  20
-184.55855600000004
+243.25000000000003
  30
 0.0
  11
-621.5000000000001
+605.8085560697231
  21
-184.55855600000004
+243.25000000000003
  31
 0.0
   0
@@ -9007,15 +8907,15 @@ LINE
   8
 0
  10
-601.5
+625.8085560697231
  20
-187.05855600000004
+243.25000000000003
  30
 0.0
  11
-601.5
+625.8085560697231
  21
-186.05855600000004
+242.25000000000003
  31
 0.0
   0
@@ -9025,15 +8925,15 @@ LINE
   8
 0
  10
-601.5
+625.8085560697231
  20
-186.05855600000004
+242.25000000000003
  30
 0.0
  11
-602.5000000000001
+626.8085560697231
  21
-186.05855600000004
+242.25000000000003
  31
 0.0
   0
@@ -9043,15 +8943,15 @@ LINE
   8
 0
  10
-602.5000000000001
+626.8085560697231
  20
-186.05855600000004
+242.25000000000003
  30
 0.0
  11
-602.5000000000001
+626.8085560697231
  21
-187.05855600000004
+243.25000000000003
  31
 0.0
   0
@@ -9061,15 +8961,15 @@ LINE
   8
 0
  10
-602.5000000000001
+626.8085560697231
  20
-187.05855600000004
+243.25000000000003
  30
 0.0
  11
-601.5
+625.8085560697231
  21
-187.05855600000004
+243.25000000000003
  31
 0.0
   0
@@ -9079,15 +8979,15 @@ LINE
   8
 0
  10
-621.5000000000001
+605.8085560697231
  20
-187.05855600000004
+245.75000000000003
  30
 0.0
  11
-621.5000000000001
+605.8085560697231
  21
-186.05855600000004
+244.75000000000003
  31
 0.0
   0
@@ -9097,15 +8997,15 @@ LINE
   8
 0
  10
-621.5000000000001
+605.8085560697231
  20
-186.05855600000004
+244.75000000000003
  30
 0.0
  11
-622.5000000000001
+606.8085560697231
  21
-186.05855600000004
+244.75000000000003
  31
 0.0
   0
@@ -9115,15 +9015,15 @@ LINE
   8
 0
  10
-622.5000000000001
+606.8085560697231
  20
-186.05855600000004
+244.75000000000003
  30
 0.0
  11
-622.5000000000001
+606.8085560697231
  21
-187.05855600000004
+245.75000000000003
  31
 0.0
   0
@@ -9133,15 +9033,15 @@ LINE
   8
 0
  10
-622.5000000000001
+606.8085560697231
  20
-187.05855600000004
+245.75000000000003
  30
 0.0
  11
-621.5000000000001
+605.8085560697231
  21
-187.05855600000004
+245.75000000000003
  31
 0.0
   0
@@ -9151,15 +9051,15 @@ LINE
   8
 0
  10
-601.5
+624.8085560697231
  20
-189.55855600000004
+246.75000000000003
  30
 0.0
  11
-601.5
+624.8085560697231
  21
-188.55855600000004
+243.75000000000003
  31
 0.0
   0
@@ -9169,15 +9069,15 @@ LINE
   8
 0
  10
-601.5
+624.8085560697231
  20
-188.55855600000004
+243.75000000000003
  30
 0.0
  11
-602.5000000000001
+627.8085560697231
  21
-188.55855600000004
+243.75000000000003
  31
 0.0
   0
@@ -9187,15 +9087,15 @@ LINE
   8
 0
  10
-602.5000000000001
+627.8085560697231
  20
-188.55855600000004
+243.75000000000003
  30
 0.0
  11
-602.5000000000001
+627.8085560697231
  21
-189.55855600000004
+246.75000000000003
  31
 0.0
   0
@@ -9205,15 +9105,15 @@ LINE
   8
 0
  10
-602.5000000000001
+627.8085560697231
  20
-189.55855600000004
+246.75000000000003
  30
 0.0
  11
-601.5
+624.8085560697231
  21
-189.55855600000004
+246.75000000000003
  31
 0.0
   0
@@ -9223,15 +9123,15 @@ LINE
   8
 0
  10
-621.5000000000001
+620.5585560697231
  20
-189.55855600000004
+203.75000000000003
  30
 0.0
  11
-621.5000000000001
+612.0585560697231
  21
-188.55855600000004
+203.75000000000003
  31
 0.0
   0
@@ -9241,15 +9141,15 @@ LINE
   8
 0
  10
-621.5000000000001
+612.0585560697231
  20
-188.55855600000004
+203.75000000000003
  30
 0.0
  11
-622.5000000000001
+612.0585560697231
  21
-188.55855600000004
+203.25000000000003
  31
 0.0
   0
@@ -9259,15 +9159,15 @@ LINE
   8
 0
  10
-622.5000000000001
+612.0585560697231
  20
-188.55855600000004
+203.25000000000003
  30
 0.0
  11
-622.5000000000001
+620.5585560697231
  21
-189.55855600000004
+203.25000000000003
  31
 0.0
   0
@@ -9277,15 +9177,15 @@ LINE
   8
 0
  10
-622.5000000000001
+620.5585560697231
  20
-189.55855600000004
+203.25000000000003
  30
 0.0
  11
-621.5000000000001
+620.5585560697231
  21
-189.55855600000004
+203.75000000000003
  31
 0.0
   0
@@ -9295,15 +9195,15 @@ LINE
   8
 0
  10
-601.5
+612.0585560697231
  20
-192.058556
+251.50000000000003
  30
 0.0
  11
-601.5
+620.5585560697231
  21
-191.05855600000004
+251.50000000000003
  31
 0.0
   0
@@ -9313,15 +9213,15 @@ LINE
   8
 0
  10
-601.5
+620.5585560697231
  20
-191.05855600000004
+251.50000000000003
  30
 0.0
  11
-602.5000000000001
+620.5585560697231
  21
-191.05855600000004
+252.00000000000003
  31
 0.0
   0
@@ -9331,15 +9231,15 @@ LINE
   8
 0
  10
-602.5000000000001
+620.5585560697231
  20
-191.05855600000004
+252.00000000000003
  30
 0.0
  11
-602.5000000000001
+612.0585560697231
  21
-192.058556
+252.00000000000003
  31
 0.0
   0
@@ -9349,15 +9249,15 @@ LINE
   8
 0
  10
-602.5000000000001
+612.0585560697231
  20
-192.058556
+252.00000000000003
  30
 0.0
  11
-601.5
+612.0585560697231
  21
-192.058556
+251.50000000000003
  31
 0.0
   0
@@ -9367,15 +9267,15 @@ LINE
   8
 0
  10
-621.5000000000001
+643.3085560697231
  20
-192.058556
+247.00000000000003
  30
 0.0
  11
-621.5000000000001
+643.3085560697231
  21
-191.05855600000004
+234.00000000000003
  31
 0.0
   0
@@ -9385,15 +9285,15 @@ LINE
   8
 0
  10
-621.5000000000001
+643.3085560697231
  20
-191.05855600000004
+234.00000000000003
  30
 0.0
  11
-622.5000000000001
+673.3085560697231
  21
-191.05855600000004
+234.00000000000003
  31
 0.0
   0
@@ -9403,15 +9303,15 @@ LINE
   8
 0
  10
-622.5000000000001
+673.3085560697231
  20
-191.05855600000004
+234.00000000000003
  30
 0.0
  11
-622.5000000000001
+673.3085560697231
  21
-192.058556
+247.00000000000003
  31
 0.0
   0
@@ -9421,15 +9321,15 @@ LINE
   8
 0
  10
-622.5000000000001
+673.3085560697231
  20
-192.058556
+247.00000000000003
  30
 0.0
  11
-621.5000000000001
+643.3085560697231
  21
-192.058556
+247.00000000000003
  31
 0.0
   0
@@ -9439,15 +9339,15 @@ LINE
   8
 0
  10
-601.5
+650.3767378879048
  20
-194.558556
+201.50000000000003
  30
 0.0
  11
-601.5
+638.967646978814
  21
-193.55855600000004
+201.50000000000003
  31
 0.0
   0
@@ -9457,15 +9357,15 @@ LINE
   8
 0
  10
-601.5
+638.967646978814
  20
-193.55855600000004
+201.50000000000003
  30
 0.0
  11
-602.5000000000001
+638.967646978814
  21
-193.55855600000004
+201.00000000000003
  31
 0.0
   0
@@ -9475,15 +9375,15 @@ LINE
   8
 0
  10
-602.5000000000001
+638.967646978814
  20
-193.55855600000004
+201.00000000000003
  30
 0.0
  11
-602.5000000000001
+650.3767378879048
  21
-194.558556
+201.00000000000003
  31
 0.0
   0
@@ -9493,15 +9393,15 @@ LINE
   8
 0
  10
-602.5000000000001
+650.3767378879048
  20
-194.558556
+201.00000000000003
  30
 0.0
  11
-601.5
+650.3767378879048
  21
-194.558556
+201.50000000000003
  31
 0.0
   0
@@ -9511,15 +9411,15 @@ LINE
   8
 0
  10
-621.5000000000001
+677.6494651606322
  20
-194.558556
+201.50000000000003
  30
 0.0
  11
-621.5000000000001
+666.2403742515412
  21
-193.55855600000004
+201.50000000000003
  31
 0.0
   0
@@ -9529,15 +9429,15 @@ LINE
   8
 0
  10
-621.5000000000001
+666.2403742515412
  20
-193.55855600000004
+201.50000000000003
  30
 0.0
  11
-622.5000000000001
+666.2403742515412
  21
-193.55855600000004
+201.00000000000003
  31
 0.0
   0
@@ -9547,15 +9447,15 @@ LINE
   8
 0
  10
-622.5000000000001
+666.2403742515412
  20
-193.55855600000004
+201.00000000000003
  30
 0.0
  11
-622.5000000000001
+677.6494651606322
  21
-194.558556
+201.00000000000003
  31
 0.0
   0
@@ -9565,15 +9465,15 @@ LINE
   8
 0
  10
-622.5000000000001
+677.6494651606322
  20
-194.558556
+201.00000000000003
  30
 0.0
  11
-621.5000000000001
+677.6494651606322
  21
-194.558556
+201.50000000000003
  31
 0.0
   0
@@ -9583,15 +9483,15 @@ LINE
   8
 0
  10
-601.5
+680.558556069723
  20
-197.05855600000004
+218.43181818181822
  30
 0.0
  11
-601.5
+680.558556069723
  21
-196.05855600000004
+206.84090909090912
  31
 0.0
   0
@@ -9601,15 +9501,15 @@ LINE
   8
 0
  10
-601.5
+680.558556069723
  20
-196.05855600000004
+206.84090909090912
  30
 0.0
  11
-602.5000000000001
+681.058556069723
  21
-196.05855600000004
+206.84090909090912
  31
 0.0
   0
@@ -9619,15 +9519,15 @@ LINE
   8
 0
  10
-602.5000000000001
+681.058556069723
  20
-196.05855600000004
+206.84090909090912
  30
 0.0
  11
-602.5000000000001
+681.058556069723
  21
-197.05855600000004
+218.43181818181822
  31
 0.0
   0
@@ -9637,15 +9537,15 @@ LINE
   8
 0
  10
-602.5000000000001
+681.058556069723
  20
-197.05855600000004
+218.43181818181822
  30
 0.0
  11
-601.5
+680.558556069723
  21
-197.05855600000004
+218.43181818181822
  31
 0.0
   0
@@ -9655,15 +9555,15 @@ LINE
   8
 0
  10
-621.5000000000001
+680.558556069723
  20
-197.05855600000004
+246.15909090909093
  30
 0.0
  11
-621.5000000000001
+680.558556069723
  21
-196.05855600000004
+234.5681818181818
  31
 0.0
   0
@@ -9673,15 +9573,15 @@ LINE
   8
 0
  10
-621.5000000000001
+680.558556069723
  20
-196.05855600000004
+234.5681818181818
  30
 0.0
  11
-622.5000000000001
+681.058556069723
  21
-196.05855600000004
+234.5681818181818
  31
 0.0
   0
@@ -9691,15 +9591,15 @@ LINE
   8
 0
  10
-622.5000000000001
+681.058556069723
  20
-196.05855600000004
+234.5681818181818
  30
 0.0
  11
-622.5000000000001
+681.058556069723
  21
-197.05855600000004
+246.15909090909093
  31
 0.0
   0
@@ -9709,15 +9609,15 @@ LINE
   8
 0
  10
-622.5000000000001
+681.058556069723
  20
-197.05855600000004
+246.15909090909093
  30
 0.0
  11
-621.5000000000001
+680.558556069723
  21
-197.05855600000004
+246.15909090909093
  31
 0.0
   0
@@ -9727,15 +9627,15 @@ LINE
   8
 0
  10
-601.5
+520.8085560697231
  20
-199.55855600000004
+209.25
  30
 0.0
  11
-601.5
+520.8085560697231
  21
-198.55855600000004
+206.25000000000003
  31
 0.0
   0
@@ -9745,15 +9645,15 @@ LINE
   8
 0
  10
-601.5
+520.8085560697231
  20
-198.55855600000004
+206.25000000000003
  30
 0.0
  11
-602.5000000000001
+523.8085560697231
  21
-198.55855600000004
+206.25000000000003
  31
 0.0
   0
@@ -9763,15 +9663,15 @@ LINE
   8
 0
  10
-602.5000000000001
+523.8085560697231
  20
-198.55855600000004
+206.25000000000003
  30
 0.0
  11
-602.5000000000001
+523.8085560697231
  21
-199.55855600000004
+209.25
  31
 0.0
   0
@@ -9781,15 +9681,15 @@ LINE
   8
 0
  10
-602.5000000000001
+523.8085560697231
  20
-199.55855600000004
+209.25
  30
 0.0
  11
-601.5
+520.8085560697231
  21
-199.55855600000004
+209.25
  31
 0.0
   0
@@ -9799,15 +9699,15 @@ LINE
   8
 0
  10
-621.5000000000001
+541.8085560697231
  20
-199.55855600000004
+208.25000000000003
  30
 0.0
  11
-621.5000000000001
+541.8085560697231
  21
-198.55855600000004
+207.25000000000003
  31
 0.0
   0
@@ -9817,15 +9717,15 @@ LINE
   8
 0
  10
-621.5000000000001
+541.8085560697231
  20
-198.55855600000004
+207.25000000000003
  30
 0.0
  11
-622.5000000000001
+542.8085560697231
  21
-198.55855600000004
+207.25000000000003
  31
 0.0
   0
@@ -9835,15 +9735,15 @@ LINE
   8
 0
  10
-622.5000000000001
+542.8085560697231
  20
-198.55855600000004
+207.25000000000003
  30
 0.0
  11
-622.5000000000001
+542.8085560697231
  21
-199.55855600000004
+208.25000000000003
  31
 0.0
   0
@@ -9853,15 +9753,15 @@ LINE
   8
 0
  10
-622.5000000000001
+542.8085560697231
  20
-199.55855600000004
+208.25000000000003
  30
 0.0
  11
-621.5000000000001
+541.8085560697231
  21
-199.55855600000004
+208.25000000000003
  31
 0.0
   0
@@ -9871,15 +9771,15 @@ LINE
   8
 0
  10
-601.5
+521.808556069723
  20
-202.05855600000004
+210.75000000000003
  30
 0.0
  11
-601.5
+521.808556069723
  21
-201.058556
+209.75000000000003
  31
 0.0
   0
@@ -9889,15 +9789,15 @@ LINE
   8
 0
  10
-601.5
+521.808556069723
  20
-201.058556
+209.75000000000003
  30
 0.0
  11
-602.5000000000001
+522.808556069723
  21
-201.058556
+209.75000000000003
  31
 0.0
   0
@@ -9907,15 +9807,15 @@ LINE
   8
 0
  10
-602.5000000000001
+522.808556069723
  20
-201.058556
+209.75000000000003
  30
 0.0
  11
-602.5000000000001
+522.808556069723
  21
-202.05855600000004
+210.75000000000003
  31
 0.0
   0
@@ -9925,15 +9825,15 @@ LINE
   8
 0
  10
-602.5000000000001
+522.808556069723
  20
-202.05855600000004
+210.75000000000003
  30
 0.0
  11
-601.5
+521.808556069723
  21
-202.05855600000004
+210.75000000000003
  31
 0.0
   0
@@ -9943,15 +9843,15 @@ LINE
   8
 0
  10
-621.5000000000001
+541.8085560697231
  20
-202.05855600000004
+210.75000000000003
  30
 0.0
  11
-621.5000000000001
+541.8085560697231
  21
-201.058556
+209.75000000000003
  31
 0.0
   0
@@ -9961,15 +9861,15 @@ LINE
   8
 0
  10
-621.5000000000001
+541.8085560697231
  20
-201.058556
+209.75000000000003
  30
 0.0
  11
-622.5000000000001
+542.8085560697231
  21
-201.058556
+209.75000000000003
  31
 0.0
   0
@@ -9979,15 +9879,15 @@ LINE
   8
 0
  10
-622.5000000000001
+542.8085560697231
  20
-201.058556
+209.75000000000003
  30
 0.0
  11
-622.5000000000001
+542.8085560697231
  21
-202.05855600000004
+210.75000000000003
  31
 0.0
   0
@@ -9997,15 +9897,15 @@ LINE
   8
 0
  10
-622.5000000000001
+542.8085560697231
  20
-202.05855600000004
+210.75000000000003
  30
 0.0
  11
-621.5000000000001
+541.8085560697231
  21
-202.05855600000004
+210.75000000000003
  31
 0.0
   0
@@ -10015,15 +9915,15 @@ LINE
   8
 0
  10
-601.5
+521.808556069723
  20
-204.55855600000004
+213.25000000000003
  30
 0.0
  11
-601.5
+521.808556069723
  21
-203.558556
+212.25000000000003
  31
 0.0
   0
@@ -10033,15 +9933,15 @@ LINE
   8
 0
  10
-601.5
+521.808556069723
  20
-203.558556
+212.25000000000003
  30
 0.0
  11
-602.5000000000001
+522.808556069723
  21
-203.558556
+212.25000000000003
  31
 0.0
   0
@@ -10051,15 +9951,15 @@ LINE
   8
 0
  10
-602.5000000000001
+522.808556069723
  20
-203.558556
+212.25000000000003
  30
 0.0
  11
-602.5000000000001
+522.808556069723
  21
-204.55855600000004
+213.25000000000003
  31
 0.0
   0
@@ -10069,15 +9969,15 @@ LINE
   8
 0
  10
-602.5000000000001
+522.808556069723
  20
-204.55855600000004
+213.25000000000003
  30
 0.0
  11
-601.5
+521.808556069723
  21
-204.55855600000004
+213.25000000000003
  31
 0.0
   0
@@ -10087,15 +9987,15 @@ LINE
   8
 0
  10
-621.5000000000001
+541.8085560697231
  20
-204.55855600000004
+213.25000000000003
  30
 0.0
  11
-621.5000000000001
+541.8085560697231
  21
-203.558556
+212.25000000000003
  31
 0.0
   0
@@ -10105,15 +10005,15 @@ LINE
   8
 0
  10
-621.5000000000001
+541.8085560697231
  20
-203.558556
+212.25000000000003
  30
 0.0
  11
-622.5000000000001
+542.8085560697231
  21
-203.558556
+212.25000000000003
  31
 0.0
   0
@@ -10123,15 +10023,15 @@ LINE
   8
 0
  10
-622.5000000000001
+542.8085560697231
  20
-203.558556
+212.25000000000003
  30
 0.0
  11
-622.5000000000001
+542.8085560697231
  21
-204.55855600000004
+213.25000000000003
  31
 0.0
   0
@@ -10141,15 +10041,15 @@ LINE
   8
 0
  10
-622.5000000000001
+542.8085560697231
  20
-204.55855600000004
+213.25000000000003
  30
 0.0
  11
-621.5000000000001
+541.8085560697231
  21
-204.55855600000004
+213.25000000000003
  31
 0.0
   0
@@ -10159,15 +10059,15 @@ LINE
   8
 0
  10
-601.5
+521.808556069723
  20
-207.05855600000004
+215.75000000000003
  30
 0.0
  11
-601.5
+521.808556069723
  21
-206.05855600000004
+214.75000000000003
  31
 0.0
   0
@@ -10177,15 +10077,15 @@ LINE
   8
 0
  10
-601.5
+521.808556069723
  20
-206.05855600000004
+214.75000000000003
  30
 0.0
  11
-602.5000000000001
+522.808556069723
  21
-206.05855600000004
+214.75000000000003
  31
 0.0
   0
@@ -10195,15 +10095,15 @@ LINE
   8
 0
  10
-602.5000000000001
+522.808556069723
  20
-206.05855600000004
+214.75000000000003
  30
 0.0
  11
-602.5000000000001
+522.808556069723
  21
-207.05855600000004
+215.75000000000003
  31
 0.0
   0
@@ -10213,15 +10113,15 @@ LINE
   8
 0
  10
-602.5000000000001
+522.808556069723
  20
-207.05855600000004
+215.75000000000003
  30
 0.0
  11
-601.5
+521.808556069723
  21
-207.05855600000004
+215.75000000000003
  31
 0.0
   0
@@ -10231,15 +10131,15 @@ LINE
   8
 0
  10
-621.5000000000001
+541.8085560697231
  20
-207.05855600000004
+215.75000000000003
  30
 0.0
  11
-621.5000000000001
+541.8085560697231
  21
-206.05855600000004
+214.75000000000003
  31
 0.0
   0
@@ -10249,15 +10149,15 @@ LINE
   8
 0
  10
-621.5000000000001
+541.8085560697231
  20
-206.05855600000004
+214.75000000000003
  30
 0.0
  11
-622.5000000000001
+542.8085560697231
  21
-206.05855600000004
+214.75000000000003
  31
 0.0
   0
@@ -10267,15 +10167,15 @@ LINE
   8
 0
  10
-622.5000000000001
+542.8085560697231
  20
-206.05855600000004
+214.75000000000003
  30
 0.0
  11
-622.5000000000001
+542.8085560697231
  21
-207.05855600000004
+215.75000000000003
  31
 0.0
   0
@@ -10285,15 +10185,15 @@ LINE
   8
 0
  10
-622.5000000000001
+542.8085560697231
  20
-207.05855600000004
+215.75000000000003
  30
 0.0
  11
-621.5000000000001
+541.8085560697231
  21
-207.05855600000004
+215.75000000000003
  31
 0.0
   0
@@ -10303,15 +10203,15 @@ LINE
   8
 0
  10
-601.5
+521.808556069723
  20
-209.55855600000004
+218.25000000000003
  30
 0.0
  11
-601.5
+521.808556069723
  21
-208.55855600000004
+217.25000000000003
  31
 0.0
   0
@@ -10321,15 +10221,15 @@ LINE
   8
 0
  10
-601.5
+521.808556069723
  20
-208.55855600000004
+217.25000000000003
  30
 0.0
  11
-602.5000000000001
+522.808556069723
  21
-208.55855600000004
+217.25000000000003
  31
 0.0
   0
@@ -10339,15 +10239,15 @@ LINE
   8
 0
  10
-602.5000000000001
+522.808556069723
  20
-208.55855600000004
+217.25000000000003
  30
 0.0
  11
-602.5000000000001
+522.808556069723
  21
-209.55855600000004
+218.25000000000003
  31
 0.0
   0
@@ -10357,15 +10257,15 @@ LINE
   8
 0
  10
-602.5000000000001
+522.808556069723
  20
-209.55855600000004
+218.25000000000003
  30
 0.0
  11
-601.5
+521.808556069723
  21
-209.55855600000004
+218.25000000000003
  31
 0.0
   0
@@ -10375,15 +10275,15 @@ LINE
   8
 0
  10
-621.5000000000001
+541.8085560697231
  20
-209.55855600000004
+218.25000000000003
  30
 0.0
  11
-621.5000000000001
+541.8085560697231
  21
-208.55855600000004
+217.25000000000003
  31
 0.0
   0
@@ -10393,15 +10293,15 @@ LINE
   8
 0
  10
-621.5000000000001
+541.8085560697231
  20
-208.55855600000004
+217.25000000000003
  30
 0.0
  11
-622.5000000000001
+542.8085560697231
  21
-208.55855600000004
+217.25000000000003
  31
 0.0
   0
@@ -10411,15 +10311,15 @@ LINE
   8
 0
  10
-622.5000000000001
+542.8085560697231
  20
-208.55855600000004
+217.25000000000003
  30
 0.0
  11
-622.5000000000001
+542.8085560697231
  21
-209.55855600000004
+218.25000000000003
  31
 0.0
   0
@@ -10429,15 +10329,15 @@ LINE
   8
 0
  10
-622.5000000000001
+542.8085560697231
  20
-209.55855600000004
+218.25000000000003
  30
 0.0
  11
-621.5000000000001
+541.8085560697231
  21
-209.55855600000004
+218.25000000000003
  31
 0.0
   0
@@ -10447,15 +10347,15 @@ LINE
   8
 0
  10
-601.5
+521.808556069723
  20
-212.05855600000004
+220.75
  30
 0.0
  11
-601.5
+521.808556069723
  21
-211.05855600000004
+219.75000000000003
  31
 0.0
   0
@@ -10465,15 +10365,15 @@ LINE
   8
 0
  10
-601.5
+521.808556069723
  20
-211.05855600000004
+219.75000000000003
  30
 0.0
  11
-602.5000000000001
+522.808556069723
  21
-211.05855600000004
+219.75000000000003
  31
 0.0
   0
@@ -10483,15 +10383,15 @@ LINE
   8
 0
  10
-602.5000000000001
+522.808556069723
  20
-211.05855600000004
+219.75000000000003
  30
 0.0
  11
-602.5000000000001
+522.808556069723
  21
-212.05855600000004
+220.75
  31
 0.0
   0
@@ -10501,15 +10401,15 @@ LINE
   8
 0
  10
-602.5000000000001
+522.808556069723
  20
-212.05855600000004
+220.75
  30
 0.0
  11
-601.5
+521.808556069723
  21
-212.05855600000004
+220.75
  31
 0.0
   0
@@ -10519,15 +10419,15 @@ LINE
   8
 0
  10
-620.5000000000001
+541.8085560697231
  20
-213.05855600000004
+220.75
  30
 0.0
  11
-620.5000000000001
+541.8085560697231
  21
-210.05855600000004
+219.75000000000003
  31
 0.0
   0
@@ -10537,15 +10437,15 @@ LINE
   8
 0
  10
-620.5000000000001
+541.8085560697231
  20
-210.05855600000004
+219.75000000000003
  30
 0.0
  11
-623.5000000000001
+542.8085560697231
  21
-210.05855600000004
+219.75000000000003
  31
 0.0
   0
@@ -10555,15 +10455,15 @@ LINE
   8
 0
  10
-623.5000000000001
+542.8085560697231
  20
-210.05855600000004
+219.75000000000003
  30
 0.0
  11
-623.5000000000001
+542.8085560697231
  21
-213.05855600000004
+220.75
  31
 0.0
   0
@@ -10573,15 +10473,15 @@ LINE
   8
 0
  10
-623.5000000000001
+542.8085560697231
  20
-213.05855600000004
+220.75
  30
 0.0
  11
-620.5000000000001
+541.8085560697231
  21
-213.05855600000004
+220.75
  31
 0.0
   0
@@ -10591,15 +10491,15 @@ LINE
   8
 0
  10
-616.2500000000001
+521.808556069723
  20
-170.05855600000004
+223.25000000000003
  30
 0.0
  11
-607.7500000000001
+521.808556069723
  21
-170.05855600000004
+222.25000000000003
  31
 0.0
   0
@@ -10609,15 +10509,15 @@ LINE
   8
 0
  10
-607.7500000000001
+521.808556069723
  20
-170.05855600000004
+222.25000000000003
  30
 0.0
  11
-607.7500000000001
+522.808556069723
  21
-169.558556
+222.25000000000003
  31
 0.0
   0
@@ -10627,15 +10527,15 @@ LINE
   8
 0
  10
-607.7500000000001
+522.808556069723
  20
-169.558556
+222.25000000000003
  30
 0.0
  11
-616.2500000000001
+522.808556069723
  21
-169.558556
+223.25000000000003
  31
 0.0
   0
@@ -10645,15 +10545,15 @@ LINE
   8
 0
  10
-616.2500000000001
+522.808556069723
  20
-169.558556
+223.25000000000003
  30
 0.0
  11
-616.2500000000001
+521.808556069723
  21
-170.05855600000004
+223.25000000000003
  31
 0.0
   0
@@ -10663,15 +10563,15 @@ LINE
   8
 0
  10
-607.7500000000001
+541.8085560697231
  20
-217.80855600000004
+223.25000000000003
  30
 0.0
  11
-616.2500000000001
+541.8085560697231
  21
-217.80855600000004
+222.25000000000003
  31
 0.0
   0
@@ -10681,15 +10581,15 @@ LINE
   8
 0
  10
-616.2500000000001
+541.8085560697231
  20
-217.80855600000004
+222.25000000000003
  30
 0.0
  11
-616.2500000000001
+542.8085560697231
  21
-218.30855600000004
+222.25000000000003
  31
 0.0
   0
@@ -10699,15 +10599,15 @@ LINE
   8
 0
  10
-616.2500000000001
+542.8085560697231
  20
-218.30855600000004
+222.25000000000003
  30
 0.0
  11
-607.7500000000001
+542.8085560697231
  21
-218.30855600000004
+223.25000000000003
  31
 0.0
   0
@@ -10717,15 +10617,15 @@ LINE
   8
 0
  10
-607.7500000000001
+542.8085560697231
  20
-218.30855600000004
+223.25000000000003
  30
 0.0
  11
-607.7500000000001
+541.8085560697231
  21
-217.80855600000004
+223.25000000000003
  31
 0.0
   0
@@ -10735,15 +10635,15 @@ LINE
   8
 0
  10
-592.5
+521.808556069723
  20
-173.39946509090913
+225.75000000000003
  30
 0.0
  11
-597.5000000000001
+521.808556069723
  21
-173.39946509090913
+224.75000000000003
  31
 0.0
   0
@@ -10753,15 +10653,15 @@ LINE
   8
 0
  10
-597.5000000000001
+521.808556069723
  20
-173.39946509090913
+224.75000000000003
  30
 0.0
  11
-597.5000000000001
+522.808556069723
  21
-184.49037418181823
+224.75000000000003
  31
 0.0
   0
@@ -10771,15 +10671,15 @@ LINE
   8
 0
  10
-597.5000000000001
+522.808556069723
  20
-184.49037418181823
+224.75000000000003
  30
 0.0
  11
-592.5
+522.808556069723
  21
-184.49037418181823
+225.75000000000003
  31
 0.0
   0
@@ -10789,15 +10689,15 @@ LINE
   8
 0
  10
-592.5
+522.808556069723
  20
-201.12673781818185
+225.75000000000003
  30
 0.0
  11
-597.5000000000001
+521.808556069723
  21
-201.12673781818185
+225.75000000000003
  31
 0.0
   0
@@ -10807,15 +10707,15 @@ LINE
   8
 0
  10
-597.5000000000001
+541.8085560697231
  20
-201.12673781818185
+225.75000000000003
  30
 0.0
  11
-597.5000000000001
+541.8085560697231
  21
-212.21764690909094
+224.75000000000003
  31
 0.0
   0
@@ -10825,15 +10725,15 @@ LINE
   8
 0
  10
-597.5000000000001
+541.8085560697231
  20
-212.21764690909094
+224.75000000000003
  30
 0.0
  11
-592.5
+542.8085560697231
  21
-212.21764690909094
+224.75000000000003
  31
 0.0
   0
@@ -10843,15 +10743,15 @@ LINE
   8
 0
  10
-617.7500000000001
+542.8085560697231
  20
-146.308556
+224.75000000000003
  30
 0.0
  11
-621.2500000000001
+542.8085560697231
  21
-146.308556
+225.75000000000003
  31
 0.0
   0
@@ -10861,15 +10761,15 @@ LINE
   8
 0
  10
-621.2500000000001
+542.8085560697231
  20
-146.308556
+225.75000000000003
  30
 0.0
  11
-621.2500000000001
+541.8085560697231
  21
-154.30855600000004
+225.75000000000003
  31
 0.0
   0
@@ -10879,115 +10779,105 @@ LINE
   8
 0
  10
-621.2500000000001
+521.808556069723
  20
-154.30855600000004
+228.25000000000003
  30
 0.0
  11
-617.7500000000001
+521.808556069723
  21
-154.30855600000004
+227.25000000000003
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
 0
  10
-850.733401821533
+521.808556069723
  20
-100.30855600000002
+227.25000000000003
  30
 0.0
  11
-850.733401821533
+522.808556069723
  21
-200.30855600000004
+227.25000000000003
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
 0
  10
-800.7334018215329
+522.808556069723
  20
-100.30855600000002
+227.25000000000003
  30
 0.0
  11
-800.7334018215329
+522.808556069723
  21
-200.30855600000004
+228.25000000000003
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
 0
  10
-825.733401821533
+522.808556069723
  20
-100.30855600000002
+228.25000000000003
  30
 0.0
  11
-800.7334018215329
+521.808556069723
  21
-100.30855600000002
+228.25000000000003
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
 0
  10
-850.733401821533
+541.8085560697231
  20
-100.30855600000002
+228.25000000000003
  30
 0.0
  11
-825.733401821533
+541.8085560697231
  21
-100.30855600000002
+227.25000000000003
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
 0
  10
-825.733401821533
+541.8085560697231
  20
-46.45690792865498
+227.25000000000003
  30
 0.0
  11
-800.7334018215329
+542.8085560697231
  21
-100.30855600000002
+227.25000000000003
  31
 0.0
   0
@@ -10997,15 +10887,15 @@ LINE
   8
 0
  10
-792.2466086902074
+542.8085560697231
  20
-80.42847270018157
+227.25000000000003
  30
 0.0
  11
-786.4900052558701
+542.8085560697231
  21
-86.2684116177914
+228.25000000000003
  31
 0.0
   0
@@ -11015,55 +10905,51 @@ LINE
   8
 0
  10
-825.733401821533
+542.8085560697231
  20
-46.456907928654964
+228.25000000000003
  30
 0.0
  11
-792.2466086902074
+541.8085560697231
  21
-80.42847270018157
+228.25000000000003
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
 0
  10
-800.7334018215329
+521.808556069723
  20
-100.30855600000002
+230.75000000000003
  30
 0.0
  11
-786.4900052558701
+521.808556069723
  21
-86.2684116177914
+229.75
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-3
+5
   8
 0
  10
-800.7334018215329
+521.808556069723
  20
-100.30855600000002
+229.75
  30
 0.0
  11
-780.733401821533
+522.808556069723
  21
-92.10835053540121
+229.75
  31
 0.0
   0
@@ -11073,55 +10959,51 @@ LINE
   8
 0
  10
-786.4900052558701
+522.808556069723
  20
-86.2684116177914
+229.75
  30
 0.0
  11
-780.733401821533
+522.808556069723
  21
-92.10835053540121
+230.75000000000003
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-3
+5
   8
 0
  10
-780.733401821533
+522.808556069723
  20
-100.30855600000002
+230.75000000000003
  30
 0.0
  11
-780.733401821533
+521.808556069723
  21
-92.10835053540121
+230.75000000000003
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
 0
  10
-800.7334018215329
+541.8085560697231
  20
-100.30855600000002
+230.75000000000003
  30
 0.0
  11
-780.733401821533
+541.8085560697231
  21
-100.30855600000002
+229.75
  31
 0.0
   0
@@ -11131,15 +11013,15 @@ LINE
   8
 0
  10
-778.0000000000001
+541.8085560697231
  20
-100.30855600000002
+229.75
  30
 0.0
  11
-780.733401821533
+542.8085560697231
  21
-100.30855600000002
+229.75
  31
 0.0
   0
@@ -11149,15 +11031,15 @@ LINE
   8
 0
  10
-778.0000000000001
+542.8085560697231
  20
-92.10835053540121
+229.75
  30
 0.0
  11
-778.0000000000001
+542.8085560697231
  21
-100.30855600000002
+230.75000000000003
  31
 0.0
   0
@@ -11167,15 +11049,15 @@ LINE
   8
 0
  10
-780.733401821533
+542.8085560697231
  20
-92.10835053540121
+230.75000000000003
  30
 0.0
  11
-778.0000000000001
+541.8085560697231
  21
-92.10835053540121
+230.75000000000003
  31
 0.0
   0
@@ -11185,75 +11067,69 @@ LINE
   8
 0
  10
-780.733401821533
+521.808556069723
  20
-100.30855600000002
+233.25000000000003
  30
 0.0
  11
-780.733401821533
+521.808556069723
  21
-200.30855600000004
+232.25000000000003
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
 0
  10
-780.733401821533
+521.808556069723
  20
-200.30855600000004
+232.25000000000003
  30
 0.0
  11
-800.7334018215329
+522.808556069723
  21
-200.30855600000004
+232.25000000000003
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-3
+5
   8
 0
  10
-780.733401821533
+522.808556069723
  20
-208.50876146459882
+232.25000000000003
  30
 0.0
  11
-800.7334018215329
+522.808556069723
  21
-200.30855600000004
+233.25000000000003
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-3
+5
   8
 0
  10
-780.733401821533
+522.808556069723
  20
-208.50876146459882
+233.25000000000003
  30
 0.0
  11
-780.733401821533
+521.808556069723
  21
-200.30855600000004
+233.25000000000003
  31
 0.0
   0
@@ -11263,55 +11139,51 @@ LINE
   8
 0
  10
-780.733401821533
+541.8085560697231
  20
-208.50876146459882
+233.25000000000003
  30
 0.0
  11
-786.4900052558701
+541.8085560697231
  21
-214.34870038220865
+232.25000000000003
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
 0
  10
-786.4900052558701
+541.8085560697231
  20
-214.34870038220865
+232.25000000000003
  30
 0.0
  11
-800.7334018215329
+542.8085560697231
  21
-200.30855600000004
+232.25000000000003
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
 0
  10
-825.733401821533
+542.8085560697231
  20
-254.16020407134508
+232.25000000000003
  30
 0.0
  11
-800.7334018215329
+542.8085560697231
  21
-200.30855600000004
+233.25000000000003
  31
 0.0
   0
@@ -11321,15 +11193,15 @@ LINE
   8
 0
  10
-792.2466086902074
+542.8085560697231
  20
-220.18863929981848
+233.25000000000003
  30
 0.0
  11
-825.733401821533
+541.8085560697231
  21
-254.16020407134508
+233.25000000000003
  31
 0.0
   0
@@ -11339,75 +11211,69 @@ LINE
   8
 0
  10
-786.4900052558701
+521.808556069723
  20
-214.34870038220865
+235.75000000000003
  30
 0.0
  11
-792.2466086902074
+521.808556069723
  21
-220.18863929981848
+234.75000000000003
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
 0
  10
-800.7334018215329
+521.808556069723
  20
-200.30855600000004
+234.75000000000003
  30
 0.0
  11
-825.733401821533
+522.808556069723
  21
-200.30855600000004
+234.75000000000003
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
 0
  10
-825.733401821533
+522.808556069723
  20
-200.30855600000004
+234.75000000000003
  30
 0.0
  11
-850.733401821533
+522.808556069723
  21
-200.308556
+235.75000000000003
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
 0
  10
-825.733401821533
+522.808556069723
  20
-254.16020407134508
+235.75000000000003
  30
 0.0
  11
-850.733401821533
+521.808556069723
  21
-200.308556
+235.75000000000003
  31
 0.0
   0
@@ -11417,15 +11283,15 @@ LINE
   8
 0
  10
-859.2201949528585
+541.8085560697231
  20
-220.18863929981845
+235.75000000000003
  30
 0.0
  11
-864.9767983871958
+541.8085560697231
  21
-214.34870038220865
+234.75000000000003
  31
 0.0
   0
@@ -11435,55 +11301,51 @@ LINE
   8
 0
  10
-825.733401821533
+541.8085560697231
  20
-254.16020407134508
+234.75000000000003
  30
 0.0
  11
-859.2201949528585
+542.8085560697231
  21
-220.18863929981845
+234.75000000000003
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
 0
  10
-850.733401821533
+542.8085560697231
  20
-200.30855600000004
+234.75000000000003
  30
 0.0
  11
-864.9767983871958
+542.8085560697231
  21
-214.34870038220865
+235.75000000000003
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-3
+5
   8
 0
  10
-850.733401821533
+542.8085560697231
  20
-200.308556
+235.75000000000003
  30
 0.0
  11
-870.733401821533
+541.8085560697231
  21
-208.5087614645988
+235.75000000000003
  31
 0.0
   0
@@ -11493,55 +11355,51 @@ LINE
   8
 0
  10
-864.9767983871958
+521.808556069723
  20
-214.34870038220865
+238.25000000000003
  30
 0.0
  11
-870.733401821533
+521.808556069723
  21
-208.5087614645988
+237.25000000000003
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-3
+5
   8
 0
  10
-870.733401821533
+521.808556069723
  20
-200.308556
+237.25000000000003
  30
 0.0
  11
-870.733401821533
+522.808556069723
  21
-208.5087614645988
+237.25000000000003
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
 0
  10
-850.733401821533
+522.808556069723
  20
-200.308556
+237.25000000000003
  30
 0.0
  11
-870.733401821533
+522.808556069723
  21
-200.308556
+238.25000000000003
  31
 0.0
   0
@@ -11551,15 +11409,15 @@ LINE
   8
 0
  10
-873.4668036430659
+522.808556069723
  20
-200.30855599999998
+238.25000000000003
  30
 0.0
  11
-870.733401821533
+521.808556069723
  21
-200.30855599999998
+238.25000000000003
  31
 0.0
   0
@@ -11569,15 +11427,15 @@ LINE
   8
 0
  10
-873.4668036430659
+541.8085560697231
  20
-208.5087614645988
+238.25000000000003
  30
 0.0
  11
-873.4668036430659
+541.8085560697231
  21
-200.30855599999998
+237.25000000000003
  31
 0.0
   0
@@ -11587,15 +11445,15 @@ LINE
   8
 0
  10
-870.733401821533
+541.8085560697231
  20
-208.5087614645988
+237.25000000000003
  30
 0.0
  11
-873.4668036430659
+542.8085560697231
  21
-208.5087614645988
+237.25000000000003
  31
 0.0
   0
@@ -11605,75 +11463,69 @@ LINE
   8
 0
  10
-870.733401821533
+542.8085560697231
  20
-200.308556
+237.25000000000003
  30
 0.0
  11
-870.733401821533
+542.8085560697231
  21
-100.30855600000002
+238.25000000000003
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
 0
  10
-870.733401821533
+542.8085560697231
  20
-100.30855600000002
+238.25000000000003
  30
 0.0
  11
-850.733401821533
+541.8085560697231
  21
-100.30855600000002
+238.25000000000003
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-3
+5
   8
 0
  10
-870.7334018215329
+521.808556069723
  20
-92.10835053540121
+240.75000000000003
  30
 0.0
  11
-850.733401821533
+521.808556069723
  21
-100.30855600000002
+239.75000000000003
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-3
+5
   8
 0
  10
-870.7334018215329
+521.808556069723
  20
-92.10835053540121
+239.75000000000003
  30
 0.0
  11
-870.7334018215329
+522.808556069723
  21
-100.30855600000002
+239.75000000000003
  31
 0.0
   0
@@ -11683,55 +11535,51 @@ LINE
   8
 0
  10
-870.7334018215329
+522.808556069723
  20
-92.10835053540121
+239.75000000000003
  30
 0.0
  11
-864.9767983871958
+522.808556069723
  21
-86.2684116177914
+240.75000000000003
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
 0
  10
-864.9767983871958
+522.808556069723
  20
-86.2684116177914
+240.75000000000003
  30
 0.0
  11
-850.733401821533
+521.808556069723
  21
-100.30855600000002
+240.75000000000003
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
 0
  10
-825.7334018215329
+541.8085560697231
  20
-46.45690792865502
+240.75000000000003
  30
 0.0
  11
-850.733401821533
+541.8085560697231
  21
-100.30855600000004
+239.75000000000003
  31
 0.0
   0
@@ -11741,15 +11589,15 @@ LINE
   8
 0
  10
-859.2201949528585
+541.8085560697231
  20
-80.42847270018159
+239.75000000000003
  30
 0.0
  11
-825.7334018215329
+542.8085560697231
  21
-46.45690792865502
+239.75000000000003
  31
 0.0
   0
@@ -11759,15 +11607,15 @@ LINE
   8
 0
  10
-864.9767983871958
+542.8085560697231
  20
-86.26841161779141
+239.75000000000003
  30
 0.0
  11
-859.2201949528585
+542.8085560697231
  21
-80.42847270018159
+240.75000000000003
  31
 0.0
   0
@@ -11777,15 +11625,15 @@ LINE
   8
 0
  10
-873.4668036430659
+542.8085560697231
  20
-92.10835053540121
+240.75000000000003
  30
 0.0
  11
-870.733401821533
+541.8085560697231
  21
-92.10835053540121
+240.75000000000003
  31
 0.0
   0
@@ -11795,15 +11643,15 @@ LINE
   8
 0
  10
-873.4668036430659
+521.808556069723
  20
-100.30855600000002
+243.25000000000003
  30
 0.0
  11
-873.4668036430659
+521.808556069723
  21
-92.10835053540121
+242.25000000000003
  31
 0.0
   0
@@ -11813,15 +11661,15 @@ LINE
   8
 0
  10
-870.733401821533
+521.808556069723
  20
-100.30855600000002
+242.25000000000003
  30
 0.0
  11
-873.4668036430659
+522.808556069723
  21
-100.30855600000002
+242.25000000000003
  31
 0.0
   0
@@ -11831,15 +11679,15 @@ LINE
   8
 0
  10
-778.0000000000001
+522.808556069723
  20
-208.50876146459882
+242.25000000000003
  30
 0.0
  11
-780.733401821533
+522.808556069723
  21
-208.50876146459882
+243.25000000000003
  31
 0.0
   0
@@ -11849,15 +11697,15 @@ LINE
   8
 0
  10
-778.0000000000001
+522.808556069723
  20
-200.30855600000004
+243.25000000000003
  30
 0.0
  11
-778.0000000000001
+521.808556069723
  21
-208.50876146459882
+243.25000000000003
  31
 0.0
   0
@@ -11867,15 +11715,15 @@ LINE
   8
 0
  10
-780.733401821533
+541.8085560697231
  20
-200.30855600000004
+243.25000000000003
  30
 0.0
  11
-778.0000000000001
+541.8085560697231
  21
-200.30855600000004
+242.25000000000003
  31
 0.0
   0
@@ -11885,15 +11733,15 @@ LINE
   8
 0
  10
-792.1412698700124
+541.8085560697231
  20
-83.81172921234263
+242.25000000000003
  30
 0.0
  11
-789.8713984490114
+542.8085560697231
  21
-86.11446043235414
+242.25000000000003
  31
 0.0
   0
@@ -11903,15 +11751,15 @@ LINE
   8
 0
  10
-789.8713984490114
+542.8085560697231
  20
-86.11446043235414
+242.25000000000003
  30
 0.0
  11
-789.5153135348698
+542.8085560697231
  21
-85.76345682279894
+243.25000000000003
  31
 0.0
   0
@@ -11921,15 +11769,15 @@ LINE
   8
 0
  10
-789.5153135348698
+542.8085560697231
  20
-85.76345682279894
+243.25000000000003
  30
 0.0
  11
-791.7851849558709
+541.8085560697231
  21
-83.46072560278743
+243.25000000000003
  31
 0.0
   0
@@ -11939,15 +11787,15 @@ LINE
   8
 0
  10
-791.7851849558709
+521.808556069723
  20
-83.46072560278743
+245.75000000000003
  30
 0.0
  11
-792.1412698700124
+521.808556069723
  21
-83.81172921234263
+244.75000000000003
  31
 0.0
   0
@@ -11957,15 +11805,15 @@ LINE
   8
 0
  10
-778.6833504553833
+521.808556069723
  20
-94.84175235693415
+244.75000000000003
  30
 0.0
  11
-780.0500513661498
+522.808556069723
  21
-94.84175235693415
+244.75000000000003
  31
 0.0
   0
@@ -11975,15 +11823,15 @@ LINE
   8
 0
  10
-780.0500513661498
+522.808556069723
  20
-94.84175235693415
+244.75000000000003
  30
 0.0
  11
-780.0500513661498
+522.808556069723
  21
-97.57515417846707
+245.75000000000003
  31
 0.0
   0
@@ -11993,15 +11841,15 @@ LINE
   8
 0
  10
-780.0500513661498
+522.808556069723
  20
-97.57515417846707
+245.75000000000003
  30
 0.0
  11
-778.6833504553833
+521.808556069723
  21
-97.57515417846707
+245.75000000000003
  31
 0.0
   0
@@ -12011,15 +11859,15 @@ LINE
   8
 0
  10
-789.8713984490114
+540.808556069723
  20
-214.50265156764593
+246.75000000000003
  30
 0.0
  11
-792.1412698700124
+540.808556069723
  21
-216.8053827876574
+243.75000000000003
  31
 0.0
   0
@@ -12029,15 +11877,15 @@ LINE
   8
 0
  10
-792.1412698700124
+540.808556069723
  20
-216.8053827876574
+243.75000000000003
  30
 0.0
  11
-791.7851849558709
+543.8085560697231
  21
-217.15638639721263
+243.75000000000003
  31
 0.0
   0
@@ -12047,15 +11895,15 @@ LINE
   8
 0
  10
-791.7851849558709
+543.8085560697231
  20
-217.15638639721263
+243.75000000000003
  30
 0.0
  11
-789.5153135348698
+543.8085560697231
  21
-214.85365517720115
+246.75000000000003
  31
 0.0
   0
@@ -12065,15 +11913,15 @@ LINE
   8
 0
  10
-789.5153135348698
+543.8085560697231
  20
-214.85365517720115
+246.75000000000003
  30
 0.0
  11
-789.8713984490114
+540.808556069723
  21
-214.50265156764593
+246.75000000000003
  31
 0.0
   0
@@ -12083,15 +11931,15 @@ LINE
   8
 0
  10
-859.3255337730535
+536.558556069723
  20
-216.8053827876574
+203.75000000000003
  30
 0.0
  11
-861.5954051940545
+528.0585560697231
  21
-214.50265156764587
+203.75000000000003
  31
 0.0
   0
@@ -12101,15 +11949,15 @@ LINE
   8
 0
  10
-861.5954051940545
+528.0585560697231
  20
-214.50265156764587
+203.75000000000003
  30
 0.0
  11
-861.951490108196
+528.0585560697231
  21
-214.8536551772011
+203.25000000000003
  31
 0.0
   0
@@ -12119,15 +11967,15 @@ LINE
   8
 0
  10
-861.951490108196
+528.0585560697231
  20
-214.8536551772011
+203.25000000000003
  30
 0.0
  11
-859.681618687195
+536.558556069723
  21
-217.1563863972126
+203.25000000000003
  31
 0.0
   0
@@ -12137,15 +11985,15 @@ LINE
   8
 0
  10
-859.681618687195
+536.558556069723
  20
-217.1563863972126
+203.25000000000003
  30
 0.0
  11
-859.3255337730535
+536.558556069723
  21
-216.8053827876574
+203.75000000000003
  31
 0.0
   0
@@ -12155,15 +12003,15 @@ LINE
   8
 0
  10
-872.7834531876827
+528.0585560697231
  20
-205.77535964306585
+251.50000000000003
  30
 0.0
  11
-871.4167522769161
+536.558556069723
  21
-205.77535964306585
+251.50000000000003
  31
 0.0
   0
@@ -12173,15 +12021,15 @@ LINE
   8
 0
  10
-871.4167522769161
+536.558556069723
  20
-205.77535964306585
+251.50000000000003
  30
 0.0
  11
-871.4167522769161
+536.558556069723
  21
-203.04195782153292
+252.00000000000003
  31
 0.0
   0
@@ -12191,15 +12039,15 @@ LINE
   8
 0
  10
-871.4167522769161
+536.558556069723
  20
-203.04195782153292
+252.00000000000003
  30
 0.0
  11
-872.7834531876827
+528.0585560697231
  21
-203.04195782153292
+252.00000000000003
  31
 0.0
   0
@@ -12209,15 +12057,15 @@ LINE
   8
 0
  10
-861.5954051940544
+528.0585560697231
  20
-86.11446043235415
+252.00000000000003
  30
 0.0
  11
-859.3255337730535
+528.0585560697231
  21
-83.81172921234264
+251.50000000000003
  31
 0.0
   0
@@ -12227,15 +12075,15 @@ LINE
   8
 0
  10
-859.3255337730535
+512.808556069723
  20
-83.81172921234264
+207.09090909090912
  30
 0.0
  11
-859.681618687195
+517.808556069723
  21
-83.46072560278743
+207.09090909090912
  31
 0.0
   0
@@ -12245,15 +12093,15 @@ LINE
   8
 0
  10
-859.681618687195
+517.808556069723
  20
-83.46072560278743
+207.09090909090912
  30
 0.0
  11
-861.951490108196
+517.808556069723
  21
-85.76345682279894
+218.1818181818182
  31
 0.0
   0
@@ -12263,15 +12111,15 @@ LINE
   8
 0
  10
-861.951490108196
+517.808556069723
  20
-85.76345682279894
+218.1818181818182
  30
 0.0
  11
-861.5954051940544
+512.808556069723
  21
-86.11446043235415
+218.1818181818182
  31
 0.0
   0
@@ -12281,15 +12129,15 @@ LINE
   8
 0
  10
-872.7834531876827
+512.808556069723
  20
-97.57515417846707
+234.81818181818184
  30
 0.0
  11
-871.4167522769161
+517.808556069723
  21
-97.57515417846707
+234.81818181818184
  31
 0.0
   0
@@ -12299,15 +12147,15 @@ LINE
   8
 0
  10
-871.4167522769161
+517.808556069723
  20
-97.57515417846707
+234.81818181818184
  30
 0.0
  11
-871.4167522769161
+517.808556069723
  21
-94.84175235693415
+245.90909090909093
  31
 0.0
   0
@@ -12317,15 +12165,15 @@ LINE
   8
 0
  10
-871.4167522769161
+517.808556069723
  20
-94.84175235693415
+245.90909090909093
  30
 0.0
  11
-872.7834531876827
+512.808556069723
  21
-94.84175235693415
+245.90909090909093
  31
 0.0
   0
@@ -12335,15 +12183,15 @@ LINE
   8
 0
  10
-778.6833504553833
+538.0585560697231
  20
-203.04195782153298
+180.0
  30
 0.0
  11
-780.0500513661498
+541.5585560697231
  21
-203.04195782153298
+180.0
  31
 0.0
   0
@@ -12353,15 +12201,15 @@ LINE
   8
 0
  10
-780.0500513661498
+541.5585560697231
  20
-203.04195782153298
+180.0
  30
 0.0
  11
-780.0500513661498
+541.5585560697231
  21
-205.7753596430659
+188.00000000000003
  31
 0.0
   0
@@ -12371,15 +12219,15 @@ LINE
   8
 0
  10
-780.0500513661498
+541.5585560697231
  20
-205.7753596430659
+188.00000000000003
  30
 0.0
  11
-778.6833504553833
+538.0585560697231
  21
-205.7753596430659
+188.00000000000003
  31
 0.0
   0
diff --git a/rocolib/output/HouseboatWithServoMountAndStack/graph-anim.svg b/rocolib/output/HouseboatWithServoMountAndStack/graph-anim.svg
index 8380f50a907a9bad17a4988358263cab396205b2..3c77d19266b9b8ad1a78df39919fd25b37fd3ebf 100644
--- a/rocolib/output/HouseboatWithServoMountAndStack/graph-anim.svg
+++ b/rocolib/output/HouseboatWithServoMountAndStack/graph-anim.svg
@@ -1,691 +1,694 @@
 <?xml version="1.0" encoding="utf-8" ?>
-<svg xmlns="http://www.w3.org/2000/svg" xmlns:ev="http://www.w3.org/2001/xml-events" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="full" height="383.996011mm" version="1.1" viewBox="0.000000 0.000000 677.690418 383.996011" width="677.690418mm">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:ev="http://www.w3.org/2001/xml-events" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="full" height="457.260639mm" version="1.1" viewBox="0.000000 0.000000 496.232889 457.260639" width="496.232889mm">
   <defs/>
-  <line stroke="#000000" x1="70.00000000000001" x2="34.0" y1="214.98039000000003" y2="214.98039000000003"/>
-  <line opacity="0.5" stroke="#ff0000" x1="70.00000000000001" x2="70.00000000000001" y1="214.98039000000003" y2="238.98039000000003"/>
-  <line stroke="#000000" x1="34.0" x2="70.00000000000001" y1="238.98039000000003" y2="238.98039000000003"/>
-  <line stroke="#000000" x1="70.00000000000001" x2="115.00000000000001" y1="238.98039000000003" y2="238.98039000000003"/>
-  <line stroke="#000000" x1="115.00000000000001" x2="70.00000000000001" y1="214.98039000000003" y2="214.98039000000003"/>
-  <line stroke="#000000" x1="120.00000000000001" x2="115.00000000000001" y1="214.98039000000003" y2="214.98039000000003"/>
-  <line stroke="#000000" x1="120.00000000000001" x2="120.00000000000001" y1="238.98039000000003" y2="214.98039000000003"/>
-  <line stroke="#000000" x1="115.00000000000001" x2="120.00000000000001" y1="238.98039000000003" y2="238.98039000000003"/>
-  <line stroke="#000000" x1="0.0" x2="34.0" y1="238.98039000000003" y2="238.98039000000003"/>
-  <line opacity="0.5" stroke="#0000ff" x1="34.0" x2="0.0" y1="214.98039000000003" y2="214.98039000000003"/>
-  <line stroke="#000000" x1="0.0" x2="0.0" y1="214.98039000000003" y2="141.98039000000003"/>
-  <line stroke="#000000" x1="0.0" x2="0.0" y1="248.98039000000003" y2="238.98039000000003"/>
-  <line stroke="#000000" x1="0.0" x2="0.0" y1="309.98039000000006" y2="309.98039000000006"/>
-  <line stroke="#000000" x1="0.0" x2="0.0" y1="141.98039000000003" y2="309.98039000000006"/>
-  <line stroke="#000000" x1="0.0" x2="0.0" y1="141.98039000000003" y2="141.98039000000003"/>
-  <line opacity="0.25" stroke="#0000ff" x1="36.138621999185304" x2="36.138621999185304" y1="248.98039000000003" y2="309.98039000000006"/>
-  <line stroke="#000000" x1="0.0" x2="36.138621999185304" y1="309.98039000000006" y2="309.98039000000006"/>
-  <line stroke="#000000" x1="36.138621999185304" x2="0.0" y1="248.98039000000003" y2="248.98039000000003"/>
-  <line opacity="0.25" stroke="#0000ff" x1="60.13862199918531" x2="60.13862199918531" y1="309.98039000000006" y2="248.98039000000003"/>
-  <line opacity="0.5" stroke="#0000ff" x1="60.13862199918531" x2="36.138621999185304" y1="309.98039000000006" y2="309.98039000000006"/>
-  <line stroke="#000000" x1="96.27724399837062" x2="60.13862199918531" y1="248.98039000000003" y2="248.98039000000003"/>
-  <line stroke="#000000" x1="60.13862199918531" x2="96.27724399837062" y1="309.98039000000006" y2="309.98039000000006"/>
-  <line stroke="#000000" x1="106.27724399837062" x2="96.27724399837062" y1="248.98039000000003" y2="248.98039000000003"/>
-  <line stroke="#000000" x1="106.27724399837062" x2="106.27724399837062" y1="309.98039000000006" y2="248.98039000000003"/>
-  <line stroke="#000000" x1="96.27724399837062" x2="106.27724399837062" y1="309.98039000000006" y2="309.98039000000006"/>
-  <line stroke="#000000" x1="60.13862199918531" x2="60.13862199918531" y1="319.98039" y2="309.98039000000006"/>
-  <line stroke="#000000" x1="36.138621999185304" x2="60.13862199918531" y1="319.98039" y2="319.98039"/>
-  <line stroke="#000000" x1="36.138621999185304" x2="36.138621999185304" y1="309.98039000000006" y2="319.98039"/>
-  <line stroke="#000000" x1="36.138621999185304" x2="36.138621999185304" y1="238.98039000000003" y2="248.98039000000003"/>
-  <line stroke="#000000" x1="60.13862199918531" x2="36.138621999185304" y1="238.98039000000003" y2="238.98039000000003"/>
-  <line stroke="#000000" x1="60.13862199918531" x2="60.13862199918531" y1="248.98039000000003" y2="238.98039000000003"/>
-  <line stroke="#000000" x1="34.0" x2="34.0" y1="214.98039000000003" y2="194.98039000000003"/>
-  <line stroke="#000000" x1="0.0" x2="0.0" y1="194.98039000000003" y2="214.98039000000003"/>
-  <line opacity="0.5" stroke="#0000ff" x1="34.0" x2="0.0" y1="194.98039000000003" y2="194.98039000000003"/>
-  <line stroke="#000000" x1="34.0" x2="34.0" y1="194.98039000000003" y2="170.98039000000003"/>
-  <line stroke="#000000" x1="0.0" x2="0.0" y1="170.98039000000003" y2="194.98039000000003"/>
-  <line opacity="0.5" stroke="#0000ff" x1="34.0" x2="0.0" y1="170.98039000000003" y2="170.98039000000003"/>
-  <line stroke="#000000" x1="34.0" x2="34.0" y1="170.98039000000003" y2="150.98039000000003"/>
-  <line stroke="#000000" x1="0.0" x2="0.0" y1="150.98039000000003" y2="170.98039000000003"/>
-  <line opacity="0.5" stroke="#0000ff" x1="0.0" x2="34.0" y1="150.98039000000003" y2="150.98039000000003"/>
-  <line stroke="#000000" x1="0.0" x2="0.0" y1="140.98039" y2="150.98039000000003"/>
-  <line stroke="#000000" x1="34.0" x2="0.0" y1="140.98039" y2="140.98039"/>
-  <line stroke="#000000" x1="34.0" x2="34.0" y1="150.98039000000003" y2="140.98039"/>
-  <line stroke="#888888" x1="118.75000000000001" x2="118.75000000000001" y1="230.98039000000003" y2="233.48039000000003"/>
-  <line stroke="#888888" x1="118.75000000000001" x2="116.25000000000001" y1="233.48039000000003" y2="230.98039000000003"/>
-  <line stroke="#888888" x1="116.25000000000001" x2="116.25000000000001" y1="230.98039000000003" y2="222.98039000000003"/>
-  <line stroke="#888888" x1="116.25000000000001" x2="118.75000000000001" y1="222.98039000000003" y2="220.48039"/>
-  <line stroke="#888888" x1="118.75000000000001" x2="118.75000000000001" y1="220.48039" y2="222.98039000000003"/>
-  <line stroke="#888888" x1="11.08333333333333" x2="22.916666666666668" y1="231.23039000000003" y2="231.23039000000003"/>
-  <line stroke="#888888" x1="22.916666666666668" x2="22.916666666666668" y1="231.23039000000003" y2="231.73039000000003"/>
-  <line stroke="#888888" x1="22.916666666666668" x2="11.08333333333333" y1="231.73039000000003" y2="231.73039000000003"/>
-  <line stroke="#888888" x1="11.08333333333333" x2="11.08333333333333" y1="231.73039000000003" y2="231.23039000000003"/>
-  <line stroke="#888888" x1="54.63862199918531" x2="54.63862199918531" y1="266.98039" y2="277.98039000000006"/>
-  <line stroke="#888888" x1="54.63862199918531" x2="41.63862199918531" y1="277.98039000000006" y2="277.98039000000006"/>
-  <line stroke="#888888" x1="41.63862199918531" x2="41.63862199918531" y1="277.98039000000006" y2="266.98039"/>
-  <line stroke="#888888" x1="41.63862199918531" x2="54.63862199918531" y1="266.98039" y2="266.98039"/>
-  <line stroke="#888888" x1="53.13862199918531" x2="53.13862199918531" y1="298.48039" y2="304.48039000000006"/>
-  <line stroke="#888888" x1="53.13862199918531" x2="43.13862199918531" y1="304.48039000000006" y2="304.48039000000006"/>
-  <line stroke="#888888" x1="43.13862199918531" x2="43.13862199918531" y1="304.48039000000006" y2="298.48039"/>
-  <line stroke="#888888" x1="43.13862199918531" x2="53.13862199918531" y1="298.48039" y2="298.48039"/>
-  <line stroke="#888888" x1="103.77724399837062" x2="98.77724399837062" y1="298.88948090909093" y2="298.88948090909093"/>
-  <line stroke="#888888" x1="98.77724399837062" x2="98.77724399837062" y1="298.88948090909093" y2="287.79857181818187"/>
-  <line stroke="#888888" x1="98.77724399837062" x2="103.77724399837062" y1="287.79857181818187" y2="287.79857181818187"/>
-  <line stroke="#888888" x1="103.77724399837062" x2="98.77724399837062" y1="271.16220818181824" y2="271.16220818181824"/>
-  <line stroke="#888888" x1="98.77724399837062" x2="98.77724399837062" y1="271.16220818181824" y2="260.0712990909091"/>
-  <line stroke="#888888" x1="98.77724399837062" x2="103.77724399837062" y1="260.0712990909091" y2="260.0712990909091"/>
-  <line stroke="#888888" x1="44.138621999185304" x2="44.138621999185304" y1="317.48039000000006" y2="312.48039000000006"/>
-  <line stroke="#888888" x1="44.138621999185304" x2="52.13862199918531" y1="312.48039000000006" y2="312.48039000000006"/>
-  <line stroke="#888888" x1="52.13862199918531" x2="52.13862199918531" y1="312.48039000000006" y2="317.48039000000006"/>
-  <line stroke="#888888" x1="52.13862199918531" x2="52.13862199918531" y1="241.48039000000003" y2="246.48039000000003"/>
-  <line stroke="#888888" x1="52.13862199918531" x2="44.138621999185304" y1="246.48039000000003" y2="246.48039000000003"/>
-  <line stroke="#888888" x1="44.138621999185304" x2="44.138621999185304" y1="246.48039000000003" y2="241.48039000000003"/>
-  <line stroke="#888888" x1="23.000000000000004" x2="23.000000000000004" y1="195.98039000000003" y2="199.98039"/>
-  <line stroke="#888888" x1="23.000000000000004" x2="11.000000000000002" y1="199.98039" y2="199.98039"/>
-  <line stroke="#888888" x1="11.000000000000002" x2="11.000000000000002" y1="199.98039" y2="195.98039000000003"/>
-  <line stroke="#888888" x1="11.000000000000002" x2="23.000000000000004" y1="195.98039000000003" y2="195.98039000000003"/>
-  <line stroke="#888888" x1="21.500000000000004" x2="21.500000000000004" y1="207.98039000000003" y2="211.98039000000003"/>
-  <line stroke="#888888" x1="21.500000000000004" x2="12.5" y1="211.98039000000003" y2="211.98039000000003"/>
-  <line stroke="#888888" x1="12.5" x2="12.5" y1="211.98039000000003" y2="207.98039000000003"/>
-  <line stroke="#888888" x1="12.5" x2="21.500000000000004" y1="207.98039000000003" y2="207.98039000000003"/>
-  <line stroke="#888888" x1="23.000000000000004" x2="23.000000000000004" y1="171.48039000000003" y2="194.48039000000003"/>
-  <line stroke="#888888" x1="23.000000000000004" x2="11.000000000000002" y1="194.48039000000003" y2="194.48039000000003"/>
-  <line stroke="#888888" x1="11.000000000000002" x2="11.000000000000002" y1="194.48039000000003" y2="171.48039000000003"/>
-  <line stroke="#888888" x1="11.000000000000002" x2="23.000000000000004" y1="171.48039000000003" y2="171.48039000000003"/>
-  <line stroke="#888888" x1="23.000000000000004" x2="23.000000000000004" y1="165.98039" y2="169.98039000000003"/>
-  <line stroke="#888888" x1="23.000000000000004" x2="11.000000000000002" y1="169.98039000000003" y2="169.98039000000003"/>
-  <line stroke="#888888" x1="11.000000000000002" x2="11.000000000000002" y1="169.98039000000003" y2="165.98039"/>
-  <line stroke="#888888" x1="11.000000000000002" x2="23.000000000000004" y1="165.98039" y2="165.98039"/>
-  <line stroke="#888888" x1="22.666666666666668" x2="22.666666666666668" y1="143.48039" y2="148.48039000000003"/>
-  <line stroke="#888888" x1="22.666666666666668" x2="11.33333333333333" y1="148.48039000000003" y2="148.48039000000003"/>
-  <line stroke="#888888" x1="11.33333333333333" x2="11.33333333333333" y1="148.48039000000003" y2="143.48039"/>
-  <line stroke="#000000" x1="200.0" x2="164.0" y1="214.98039000000003" y2="214.98039000000003"/>
-  <line opacity="0.5" stroke="#ff0000" x1="200.0" x2="200.0" y1="214.98039000000003" y2="238.98039000000003"/>
-  <line stroke="#000000" x1="164.0" x2="200.0" y1="238.98039000000003" y2="238.98039000000003"/>
-  <line stroke="#000000" x1="200.0" x2="245.00000000000003" y1="238.98039000000003" y2="238.98039000000003"/>
-  <line stroke="#000000" x1="245.00000000000003" x2="200.0" y1="214.98039000000003" y2="214.98039000000003"/>
-  <line stroke="#000000" x1="245.00000000000003" x2="245.00000000000003" y1="238.98039000000003" y2="214.98039000000003"/>
-  <line stroke="#000000" x1="164.0" x2="130.0" y1="214.98039000000003" y2="214.98039000000003"/>
-  <line opacity="0.5" stroke="#0000ff" x1="130.0" x2="164.0" y1="238.98039000000003" y2="238.98039000000003"/>
-  <line stroke="#000000" x1="130.0" x2="130.0" y1="204.98039000000003" y2="143.98039000000003"/>
-  <line stroke="#000000" x1="130.0" x2="130.0" y1="214.98039000000003" y2="204.98039000000003"/>
-  <line stroke="#000000" x1="130.0" x2="130.0" y1="311.98039" y2="238.98039000000003"/>
-  <line stroke="#000000" x1="130.0" x2="130.0" y1="311.98039" y2="311.98039"/>
-  <line stroke="#000000" x1="130.0" x2="130.0" y1="143.98039000000003" y2="311.98039"/>
-  <line stroke="#000000" x1="130.0" x2="130.0" y1="143.98039000000003" y2="143.98039000000003"/>
-  <line stroke="#000000" x1="130.0" x2="130.0" y1="238.98039000000003" y2="258.98039000000006"/>
-  <line stroke="#000000" x1="164.0" x2="164.0" y1="258.98039000000006" y2="238.98039000000003"/>
-  <line opacity="0.5" stroke="#0000ff" x1="130.0" x2="164.0" y1="258.98039000000006" y2="258.98039000000006"/>
-  <line stroke="#000000" x1="130.0" x2="130.0" y1="258.98039000000006" y2="282.98039000000006"/>
-  <line stroke="#000000" x1="164.0" x2="164.0" y1="282.98039000000006" y2="258.98039000000006"/>
-  <line opacity="0.5" stroke="#0000ff" x1="130.0" x2="164.0" y1="282.98039000000006" y2="282.98039000000006"/>
-  <line stroke="#000000" x1="130.0" x2="130.0" y1="282.98039000000006" y2="302.98039"/>
-  <line stroke="#000000" x1="164.0" x2="164.0" y1="302.98039" y2="282.98039000000006"/>
-  <line opacity="0.5" stroke="#0000ff" x1="164.0" x2="130.0" y1="302.98039" y2="302.98039"/>
-  <line stroke="#000000" x1="164.0" x2="164.0" y1="312.98039000000006" y2="302.98039"/>
-  <line stroke="#000000" x1="130.0" x2="164.0" y1="312.98039000000006" y2="312.98039000000006"/>
-  <line stroke="#000000" x1="130.0" x2="130.0" y1="302.98039" y2="312.98039000000006"/>
-  <line stroke="#888888" x1="241.00000000000003" x2="241.00000000000003" y1="231.23039000000003" y2="222.73039"/>
-  <line stroke="#888888" x1="241.00000000000003" x2="241.50000000000003" y1="222.73039" y2="222.73039"/>
-  <line stroke="#888888" x1="241.50000000000003" x2="241.50000000000003" y1="222.73039" y2="231.23039000000003"/>
-  <line stroke="#888888" x1="241.50000000000003" x2="241.00000000000003" y1="231.23039000000003" y2="231.23039000000003"/>
-  <line stroke="#888888" x1="152.91666666666669" x2="141.08333333333334" y1="222.73039" y2="222.73039"/>
-  <line stroke="#888888" x1="141.08333333333334" x2="141.08333333333334" y1="222.73039" y2="222.23039000000003"/>
-  <line stroke="#888888" x1="141.08333333333334" x2="152.91666666666669" y1="222.23039000000003" y2="222.23039000000003"/>
-  <line stroke="#888888" x1="152.91666666666669" x2="152.91666666666669" y1="222.23039000000003" y2="222.73039"/>
-  <line stroke="#888888" x1="122.25000000000001" x2="122.25000000000001" y1="166.41220818181822" y2="154.82129909090912"/>
-  <line stroke="#888888" x1="122.25000000000001" x2="122.75000000000001" y1="154.82129909090912" y2="154.82129909090912"/>
-  <line stroke="#888888" x1="122.75000000000001" x2="122.75000000000001" y1="154.82129909090912" y2="166.41220818181822"/>
-  <line stroke="#888888" x1="122.75000000000001" x2="122.25000000000001" y1="166.41220818181822" y2="166.41220818181822"/>
-  <line stroke="#888888" x1="122.25000000000001" x2="122.25000000000001" y1="194.13948090909093" y2="182.54857181818184"/>
-  <line stroke="#888888" x1="122.25000000000001" x2="122.75000000000001" y1="182.54857181818184" y2="182.54857181818184"/>
-  <line stroke="#888888" x1="122.75000000000001" x2="122.75000000000001" y1="182.54857181818184" y2="194.13948090909093"/>
-  <line stroke="#888888" x1="122.75000000000001" x2="122.25000000000001" y1="194.13948090909093" y2="194.13948090909093"/>
-  <line stroke="#888888" x1="141.0" x2="141.0" y1="257.98039000000006" y2="253.98039000000003"/>
-  <line stroke="#888888" x1="141.0" x2="153.00000000000003" y1="253.98039000000003" y2="253.98039000000003"/>
-  <line stroke="#888888" x1="153.00000000000003" x2="153.00000000000003" y1="253.98039000000003" y2="257.98039000000006"/>
-  <line stroke="#888888" x1="153.00000000000003" x2="141.0" y1="257.98039000000006" y2="257.98039000000006"/>
-  <line stroke="#888888" x1="142.50000000000003" x2="142.50000000000003" y1="245.98039000000003" y2="241.98039000000003"/>
-  <line stroke="#888888" x1="142.50000000000003" x2="151.50000000000003" y1="241.98039000000003" y2="241.98039000000003"/>
-  <line stroke="#888888" x1="151.50000000000003" x2="151.50000000000003" y1="241.98039000000003" y2="245.98039000000003"/>
-  <line stroke="#888888" x1="151.50000000000003" x2="142.50000000000003" y1="245.98039000000003" y2="245.98039000000003"/>
-  <line stroke="#888888" x1="141.0" x2="141.0" y1="282.48039000000006" y2="259.48039"/>
-  <line stroke="#888888" x1="141.0" x2="153.00000000000003" y1="259.48039" y2="259.48039"/>
-  <line stroke="#888888" x1="153.00000000000003" x2="153.00000000000003" y1="259.48039" y2="282.48039000000006"/>
-  <line stroke="#888888" x1="153.00000000000003" x2="141.0" y1="282.48039000000006" y2="282.48039000000006"/>
-  <line stroke="#888888" x1="141.0" x2="141.0" y1="287.98039" y2="283.98039"/>
-  <line stroke="#888888" x1="141.0" x2="153.00000000000003" y1="283.98039" y2="283.98039"/>
-  <line stroke="#888888" x1="153.00000000000003" x2="153.00000000000003" y1="283.98039" y2="287.98039"/>
-  <line stroke="#888888" x1="153.00000000000003" x2="141.0" y1="287.98039" y2="287.98039"/>
-  <line stroke="#888888" x1="141.33333333333334" x2="141.33333333333334" y1="310.48039000000006" y2="305.48039000000006"/>
-  <line stroke="#888888" x1="141.33333333333334" x2="152.66666666666666" y1="305.48039000000006" y2="305.48039000000006"/>
-  <line stroke="#888888" x1="152.66666666666666" x2="152.66666666666666" y1="305.48039000000006" y2="310.48039000000006"/>
-  <line opacity="0.5" stroke="#0000ff" x1="288.00000000000006" x2="349.00000000000006" y1="214.98039000000003" y2="214.98039000000003"/>
-  <line opacity="0.5" stroke="#0000ff" x1="349.00000000000006" x2="349.00000000000006" y1="214.98039000000003" y2="238.98039000000003"/>
-  <line opacity="0.5" stroke="#0000ff" x1="349.00000000000006" x2="288.00000000000006" y1="238.98039000000003" y2="238.98039000000003"/>
-  <line opacity="0.5" stroke="#0000ff" x1="288.00000000000006" x2="288.00000000000006" y1="238.98039000000003" y2="214.98039000000003"/>
-  <line stroke="#000000" x1="288.00000000000006" x2="288.00000000000006" y1="207.98039000000003" y2="214.98039000000003"/>
-  <line stroke="#000000" x1="348.00000000000006" x2="288.00000000000006" y1="207.98039000000003" y2="207.98039000000003"/>
-  <line stroke="#000000" x1="348.00000000000006" x2="348.00000000000006" y1="214.98039000000003" y2="207.98039000000003"/>
-  <line stroke="#000000" x1="356.00000000000006" x2="349.00000000000006" y1="214.98039000000003" y2="214.98039000000003"/>
-  <line stroke="#000000" x1="356.00000000000006" x2="356.00000000000006" y1="238.98039000000003" y2="214.98039000000003"/>
-  <line stroke="#000000" x1="349.00000000000006" x2="356.00000000000006" y1="238.98039000000003" y2="238.98039000000003"/>
-  <line opacity="0.5" stroke="#0000ff" x1="349.00000000000006" x2="349.00000000000006" y1="238.98039000000003" y2="299.98039000000006"/>
-  <line stroke="#000000" x1="289.00000000000006" x2="349.00000000000006" y1="299.98039000000006" y2="299.98039000000006"/>
-  <line opacity="0.5" stroke="#0000ff" x1="289.00000000000006" x2="289.00000000000006" y1="238.98039000000003" y2="299.98039000000006"/>
-  <line stroke="#000000" x1="373.0" x2="349.00000000000006" y1="238.98039000000003" y2="238.98039000000003"/>
-  <line opacity="0.5" stroke="#0000ff" x1="373.0" x2="373.0" y1="238.98039000000003" y2="299.98039000000006"/>
-  <line stroke="#000000" x1="349.00000000000006" x2="373.0" y1="299.98039000000006" y2="299.98039000000006"/>
-  <line stroke="#000000" x1="433.00000000000006" x2="373.0" y1="238.98039000000003" y2="238.98039000000003"/>
-  <line stroke="#000000" x1="433.00000000000006" x2="433.00000000000006" y1="299.98039000000006" y2="238.98039000000003"/>
-  <line stroke="#000000" x1="373.0" x2="433.00000000000006" y1="299.98039000000006" y2="299.98039000000006"/>
-  <line stroke="#000000" x1="289.00000000000006" x2="265.00000000000006" y1="238.98039000000003" y2="238.98039000000003"/>
-  <line stroke="#000000" x1="265.00000000000006" x2="289.00000000000006" y1="299.98039000000006" y2="299.98039000000006"/>
-  <line opacity="0.5" stroke="#0000ff" x1="265.00000000000006" x2="265.00000000000006" y1="299.98039000000006" y2="238.98039000000003"/>
-  <line stroke="#000000" x1="255.00000000000003" x2="265.00000000000006" y1="299.98039000000006" y2="299.98039000000006"/>
-  <line stroke="#000000" x1="255.00000000000003" x2="255.00000000000003" y1="238.98039000000003" y2="299.98039000000006"/>
-  <line stroke="#000000" x1="265.00000000000006" x2="255.00000000000003" y1="238.98039000000003" y2="238.98039000000003"/>
-  <line stroke="#000000" x1="281.00000000000006" x2="288.00000000000006" y1="238.98039000000003" y2="238.98039000000003"/>
-  <line stroke="#000000" x1="281.00000000000006" x2="281.00000000000006" y1="214.98039000000003" y2="238.98039000000003"/>
-  <line stroke="#000000" x1="288.00000000000006" x2="281.00000000000006" y1="214.98039000000003" y2="214.98039000000003"/>
-  <line stroke="#888888" x1="337.0909090909092" x2="340.59090909090907" y1="209.73039000000003" y2="209.73039000000003"/>
-  <line stroke="#888888" x1="340.59090909090907" x2="337.0909090909092" y1="209.73039000000003" y2="213.23039000000003"/>
-  <line stroke="#888888" x1="337.0909090909092" x2="326.18181818181824" y1="213.23039000000003" y2="213.23039000000003"/>
-  <line stroke="#888888" x1="326.18181818181824" x2="322.68181818181824" y1="213.23039000000003" y2="209.73039000000003"/>
-  <line stroke="#888888" x1="322.68181818181824" x2="326.18181818181824" y1="209.73039000000003" y2="209.73039000000003"/>
-  <line stroke="#888888" x1="309.81818181818187" x2="313.31818181818187" y1="209.73039000000003" y2="209.73039000000003"/>
-  <line stroke="#888888" x1="313.31818181818187" x2="309.81818181818187" y1="209.73039000000003" y2="213.23039000000003"/>
-  <line stroke="#888888" x1="309.81818181818187" x2="298.909090909091" y1="213.23039000000003" y2="213.23039000000003"/>
-  <line stroke="#888888" x1="298.909090909091" x2="295.409090909091" y1="213.23039000000003" y2="209.73039000000003"/>
-  <line stroke="#888888" x1="295.409090909091" x2="298.909090909091" y1="209.73039000000003" y2="209.73039000000003"/>
-  <line stroke="#888888" x1="354.25000000000006" x2="350.75" y1="230.98039000000003" y2="230.98039000000003"/>
-  <line stroke="#888888" x1="350.75" x2="350.75" y1="230.98039000000003" y2="222.98039000000003"/>
-  <line stroke="#888888" x1="350.75" x2="354.25000000000006" y1="222.98039000000003" y2="222.98039000000003"/>
-  <line stroke="#888888" x1="296.5" x2="296.5" y1="290.48039000000006" y2="272.48039000000006"/>
-  <line stroke="#888888" x1="296.5" x2="331.5" y1="272.48039000000006" y2="272.48039000000006"/>
-  <line stroke="#888888" x1="331.5" x2="331.5" y1="272.48039000000006" y2="290.48039000000006"/>
-  <line stroke="#888888" x1="331.5" x2="296.5" y1="290.48039000000006" y2="290.48039000000006"/>
-  <line stroke="#888888" x1="349.50000000000006" x2="349.50000000000006" y1="252.23039000000003" y2="249.23039000000003"/>
-  <line stroke="#888888" x1="349.50000000000006" x2="352.50000000000006" y1="249.23039000000003" y2="249.23039000000003"/>
-  <line stroke="#888888" x1="352.50000000000006" x2="352.50000000000006" y1="249.23039000000003" y2="252.23039000000003"/>
-  <line stroke="#888888" x1="352.50000000000006" x2="349.50000000000006" y1="252.23039000000003" y2="252.23039000000003"/>
-  <line stroke="#888888" x1="370.50000000000006" x2="370.50000000000006" y1="251.23039000000003" y2="250.23039000000003"/>
-  <line stroke="#888888" x1="370.50000000000006" x2="371.50000000000006" y1="250.23039000000003" y2="250.23039000000003"/>
-  <line stroke="#888888" x1="371.50000000000006" x2="371.50000000000006" y1="250.23039000000003" y2="251.23039000000003"/>
-  <line stroke="#888888" x1="371.50000000000006" x2="370.50000000000006" y1="251.23039000000003" y2="251.23039000000003"/>
-  <line stroke="#888888" x1="350.5" x2="350.5" y1="253.73039000000003" y2="252.73039000000003"/>
-  <line stroke="#888888" x1="350.5" x2="351.50000000000006" y1="252.73039000000003" y2="252.73039000000003"/>
-  <line stroke="#888888" x1="351.50000000000006" x2="351.50000000000006" y1="252.73039000000003" y2="253.73039000000003"/>
-  <line stroke="#888888" x1="351.50000000000006" x2="350.5" y1="253.73039000000003" y2="253.73039000000003"/>
-  <line stroke="#888888" x1="370.50000000000006" x2="370.50000000000006" y1="253.73039000000003" y2="252.73039000000003"/>
-  <line stroke="#888888" x1="370.50000000000006" x2="371.50000000000006" y1="252.73039000000003" y2="252.73039000000003"/>
-  <line stroke="#888888" x1="371.50000000000006" x2="371.50000000000006" y1="252.73039000000003" y2="253.73039000000003"/>
-  <line stroke="#888888" x1="371.50000000000006" x2="370.50000000000006" y1="253.73039000000003" y2="253.73039000000003"/>
-  <line stroke="#888888" x1="350.5" x2="350.5" y1="256.23039000000006" y2="255.23039000000003"/>
-  <line stroke="#888888" x1="350.5" x2="351.50000000000006" y1="255.23039000000003" y2="255.23039000000003"/>
-  <line stroke="#888888" x1="351.50000000000006" x2="351.50000000000006" y1="255.23039000000003" y2="256.23039000000006"/>
-  <line stroke="#888888" x1="351.50000000000006" x2="350.5" y1="256.23039000000006" y2="256.23039000000006"/>
-  <line stroke="#888888" x1="370.50000000000006" x2="370.50000000000006" y1="256.23039000000006" y2="255.23039000000003"/>
-  <line stroke="#888888" x1="370.50000000000006" x2="371.50000000000006" y1="255.23039000000003" y2="255.23039000000003"/>
-  <line stroke="#888888" x1="371.50000000000006" x2="371.50000000000006" y1="255.23039000000003" y2="256.23039000000006"/>
-  <line stroke="#888888" x1="371.50000000000006" x2="370.50000000000006" y1="256.23039000000006" y2="256.23039000000006"/>
-  <line stroke="#888888" x1="350.5" x2="350.5" y1="258.73039000000006" y2="257.73039"/>
-  <line stroke="#888888" x1="350.5" x2="351.50000000000006" y1="257.73039" y2="257.73039"/>
-  <line stroke="#888888" x1="351.50000000000006" x2="351.50000000000006" y1="257.73039" y2="258.73039000000006"/>
-  <line stroke="#888888" x1="351.50000000000006" x2="350.5" y1="258.73039000000006" y2="258.73039000000006"/>
-  <line stroke="#888888" x1="370.50000000000006" x2="370.50000000000006" y1="258.73039000000006" y2="257.73039"/>
-  <line stroke="#888888" x1="370.50000000000006" x2="371.50000000000006" y1="257.73039" y2="257.73039"/>
-  <line stroke="#888888" x1="371.50000000000006" x2="371.50000000000006" y1="257.73039" y2="258.73039000000006"/>
-  <line stroke="#888888" x1="371.50000000000006" x2="370.50000000000006" y1="258.73039000000006" y2="258.73039000000006"/>
-  <line stroke="#888888" x1="350.5" x2="350.5" y1="261.23039000000006" y2="260.23039000000006"/>
-  <line stroke="#888888" x1="350.5" x2="351.50000000000006" y1="260.23039000000006" y2="260.23039000000006"/>
-  <line stroke="#888888" x1="351.50000000000006" x2="351.50000000000006" y1="260.23039000000006" y2="261.23039000000006"/>
-  <line stroke="#888888" x1="351.50000000000006" x2="350.5" y1="261.23039000000006" y2="261.23039000000006"/>
-  <line stroke="#888888" x1="370.50000000000006" x2="370.50000000000006" y1="261.23039000000006" y2="260.23039000000006"/>
-  <line stroke="#888888" x1="370.50000000000006" x2="371.50000000000006" y1="260.23039000000006" y2="260.23039000000006"/>
-  <line stroke="#888888" x1="371.50000000000006" x2="371.50000000000006" y1="260.23039000000006" y2="261.23039000000006"/>
-  <line stroke="#888888" x1="371.50000000000006" x2="370.50000000000006" y1="261.23039000000006" y2="261.23039000000006"/>
-  <line stroke="#888888" x1="350.5" x2="350.5" y1="263.73039000000006" y2="262.73039000000006"/>
-  <line stroke="#888888" x1="350.5" x2="351.50000000000006" y1="262.73039000000006" y2="262.73039000000006"/>
-  <line stroke="#888888" x1="351.50000000000006" x2="351.50000000000006" y1="262.73039000000006" y2="263.73039000000006"/>
-  <line stroke="#888888" x1="351.50000000000006" x2="350.5" y1="263.73039000000006" y2="263.73039000000006"/>
-  <line stroke="#888888" x1="370.50000000000006" x2="370.50000000000006" y1="263.73039000000006" y2="262.73039000000006"/>
-  <line stroke="#888888" x1="370.50000000000006" x2="371.50000000000006" y1="262.73039000000006" y2="262.73039000000006"/>
-  <line stroke="#888888" x1="371.50000000000006" x2="371.50000000000006" y1="262.73039000000006" y2="263.73039000000006"/>
-  <line stroke="#888888" x1="371.50000000000006" x2="370.50000000000006" y1="263.73039000000006" y2="263.73039000000006"/>
-  <line stroke="#888888" x1="350.5" x2="350.5" y1="266.23039" y2="265.23039000000006"/>
-  <line stroke="#888888" x1="350.5" x2="351.50000000000006" y1="265.23039000000006" y2="265.23039000000006"/>
-  <line stroke="#888888" x1="351.50000000000006" x2="351.50000000000006" y1="265.23039000000006" y2="266.23039"/>
-  <line stroke="#888888" x1="351.50000000000006" x2="350.5" y1="266.23039" y2="266.23039"/>
-  <line stroke="#888888" x1="370.50000000000006" x2="370.50000000000006" y1="266.23039" y2="265.23039000000006"/>
-  <line stroke="#888888" x1="370.50000000000006" x2="371.50000000000006" y1="265.23039000000006" y2="265.23039000000006"/>
-  <line stroke="#888888" x1="371.50000000000006" x2="371.50000000000006" y1="265.23039000000006" y2="266.23039"/>
-  <line stroke="#888888" x1="371.50000000000006" x2="370.50000000000006" y1="266.23039" y2="266.23039"/>
-  <line stroke="#888888" x1="350.5" x2="350.5" y1="268.73039" y2="267.73039000000006"/>
-  <line stroke="#888888" x1="350.5" x2="351.50000000000006" y1="267.73039000000006" y2="267.73039000000006"/>
-  <line stroke="#888888" x1="351.50000000000006" x2="351.50000000000006" y1="267.73039000000006" y2="268.73039"/>
-  <line stroke="#888888" x1="351.50000000000006" x2="350.5" y1="268.73039" y2="268.73039"/>
-  <line stroke="#888888" x1="370.50000000000006" x2="370.50000000000006" y1="268.73039" y2="267.73039000000006"/>
-  <line stroke="#888888" x1="370.50000000000006" x2="371.50000000000006" y1="267.73039000000006" y2="267.73039000000006"/>
-  <line stroke="#888888" x1="371.50000000000006" x2="371.50000000000006" y1="267.73039000000006" y2="268.73039"/>
-  <line stroke="#888888" x1="371.50000000000006" x2="370.50000000000006" y1="268.73039" y2="268.73039"/>
-  <line stroke="#888888" x1="350.5" x2="350.5" y1="271.23039" y2="270.23039000000006"/>
-  <line stroke="#888888" x1="350.5" x2="351.50000000000006" y1="270.23039000000006" y2="270.23039000000006"/>
-  <line stroke="#888888" x1="351.50000000000006" x2="351.50000000000006" y1="270.23039000000006" y2="271.23039"/>
-  <line stroke="#888888" x1="351.50000000000006" x2="350.5" y1="271.23039" y2="271.23039"/>
-  <line stroke="#888888" x1="370.50000000000006" x2="370.50000000000006" y1="271.23039" y2="270.23039000000006"/>
-  <line stroke="#888888" x1="370.50000000000006" x2="371.50000000000006" y1="270.23039000000006" y2="270.23039000000006"/>
-  <line stroke="#888888" x1="371.50000000000006" x2="371.50000000000006" y1="270.23039000000006" y2="271.23039"/>
-  <line stroke="#888888" x1="371.50000000000006" x2="370.50000000000006" y1="271.23039" y2="271.23039"/>
-  <line stroke="#888888" x1="350.5" x2="350.5" y1="273.73039000000006" y2="272.73039000000006"/>
-  <line stroke="#888888" x1="350.5" x2="351.50000000000006" y1="272.73039000000006" y2="272.73039000000006"/>
-  <line stroke="#888888" x1="351.50000000000006" x2="351.50000000000006" y1="272.73039000000006" y2="273.73039000000006"/>
-  <line stroke="#888888" x1="351.50000000000006" x2="350.5" y1="273.73039000000006" y2="273.73039000000006"/>
-  <line stroke="#888888" x1="370.50000000000006" x2="370.50000000000006" y1="273.73039000000006" y2="272.73039000000006"/>
-  <line stroke="#888888" x1="370.50000000000006" x2="371.50000000000006" y1="272.73039000000006" y2="272.73039000000006"/>
-  <line stroke="#888888" x1="371.50000000000006" x2="371.50000000000006" y1="272.73039000000006" y2="273.73039000000006"/>
-  <line stroke="#888888" x1="371.50000000000006" x2="370.50000000000006" y1="273.73039000000006" y2="273.73039000000006"/>
-  <line stroke="#888888" x1="350.5" x2="350.5" y1="276.23039000000006" y2="275.23039"/>
-  <line stroke="#888888" x1="350.5" x2="351.50000000000006" y1="275.23039" y2="275.23039"/>
-  <line stroke="#888888" x1="351.50000000000006" x2="351.50000000000006" y1="275.23039" y2="276.23039000000006"/>
-  <line stroke="#888888" x1="351.50000000000006" x2="350.5" y1="276.23039000000006" y2="276.23039000000006"/>
-  <line stroke="#888888" x1="370.50000000000006" x2="370.50000000000006" y1="276.23039000000006" y2="275.23039"/>
-  <line stroke="#888888" x1="370.50000000000006" x2="371.50000000000006" y1="275.23039" y2="275.23039"/>
-  <line stroke="#888888" x1="371.50000000000006" x2="371.50000000000006" y1="275.23039" y2="276.23039000000006"/>
-  <line stroke="#888888" x1="371.50000000000006" x2="370.50000000000006" y1="276.23039000000006" y2="276.23039000000006"/>
-  <line stroke="#888888" x1="350.5" x2="350.5" y1="278.73039" y2="277.73039000000006"/>
-  <line stroke="#888888" x1="350.5" x2="351.50000000000006" y1="277.73039000000006" y2="277.73039000000006"/>
-  <line stroke="#888888" x1="351.50000000000006" x2="351.50000000000006" y1="277.73039000000006" y2="278.73039"/>
-  <line stroke="#888888" x1="351.50000000000006" x2="350.5" y1="278.73039" y2="278.73039"/>
-  <line stroke="#888888" x1="370.50000000000006" x2="370.50000000000006" y1="278.73039" y2="277.73039000000006"/>
-  <line stroke="#888888" x1="370.50000000000006" x2="371.50000000000006" y1="277.73039000000006" y2="277.73039000000006"/>
-  <line stroke="#888888" x1="371.50000000000006" x2="371.50000000000006" y1="277.73039000000006" y2="278.73039"/>
-  <line stroke="#888888" x1="371.50000000000006" x2="370.50000000000006" y1="278.73039" y2="278.73039"/>
-  <line stroke="#888888" x1="350.5" x2="350.5" y1="281.23039000000006" y2="280.23039"/>
-  <line stroke="#888888" x1="350.5" x2="351.50000000000006" y1="280.23039" y2="280.23039"/>
-  <line stroke="#888888" x1="351.50000000000006" x2="351.50000000000006" y1="280.23039" y2="281.23039000000006"/>
-  <line stroke="#888888" x1="351.50000000000006" x2="350.5" y1="281.23039000000006" y2="281.23039000000006"/>
-  <line stroke="#888888" x1="370.50000000000006" x2="370.50000000000006" y1="281.23039000000006" y2="280.23039"/>
-  <line stroke="#888888" x1="370.50000000000006" x2="371.50000000000006" y1="280.23039" y2="280.23039"/>
-  <line stroke="#888888" x1="371.50000000000006" x2="371.50000000000006" y1="280.23039" y2="281.23039000000006"/>
-  <line stroke="#888888" x1="371.50000000000006" x2="370.50000000000006" y1="281.23039000000006" y2="281.23039000000006"/>
-  <line stroke="#888888" x1="350.5" x2="350.5" y1="283.73039" y2="282.73039000000006"/>
-  <line stroke="#888888" x1="350.5" x2="351.50000000000006" y1="282.73039000000006" y2="282.73039000000006"/>
-  <line stroke="#888888" x1="351.50000000000006" x2="351.50000000000006" y1="282.73039000000006" y2="283.73039"/>
-  <line stroke="#888888" x1="351.50000000000006" x2="350.5" y1="283.73039" y2="283.73039"/>
-  <line stroke="#888888" x1="370.50000000000006" x2="370.50000000000006" y1="283.73039" y2="282.73039000000006"/>
-  <line stroke="#888888" x1="370.50000000000006" x2="371.50000000000006" y1="282.73039000000006" y2="282.73039000000006"/>
-  <line stroke="#888888" x1="371.50000000000006" x2="371.50000000000006" y1="282.73039000000006" y2="283.73039"/>
-  <line stroke="#888888" x1="371.50000000000006" x2="370.50000000000006" y1="283.73039" y2="283.73039"/>
-  <line stroke="#888888" x1="350.5" x2="350.5" y1="286.23039000000006" y2="285.23039000000006"/>
-  <line stroke="#888888" x1="350.5" x2="351.50000000000006" y1="285.23039000000006" y2="285.23039000000006"/>
-  <line stroke="#888888" x1="351.50000000000006" x2="351.50000000000006" y1="285.23039000000006" y2="286.23039000000006"/>
-  <line stroke="#888888" x1="351.50000000000006" x2="350.5" y1="286.23039000000006" y2="286.23039000000006"/>
-  <line stroke="#888888" x1="370.50000000000006" x2="370.50000000000006" y1="286.23039000000006" y2="285.23039000000006"/>
-  <line stroke="#888888" x1="370.50000000000006" x2="371.50000000000006" y1="285.23039000000006" y2="285.23039000000006"/>
-  <line stroke="#888888" x1="371.50000000000006" x2="371.50000000000006" y1="285.23039000000006" y2="286.23039000000006"/>
-  <line stroke="#888888" x1="371.50000000000006" x2="370.50000000000006" y1="286.23039000000006" y2="286.23039000000006"/>
-  <line stroke="#888888" x1="350.5" x2="350.5" y1="288.73039" y2="287.73039000000006"/>
-  <line stroke="#888888" x1="350.5" x2="351.50000000000006" y1="287.73039000000006" y2="287.73039000000006"/>
-  <line stroke="#888888" x1="351.50000000000006" x2="351.50000000000006" y1="287.73039000000006" y2="288.73039"/>
-  <line stroke="#888888" x1="351.50000000000006" x2="350.5" y1="288.73039" y2="288.73039"/>
-  <line stroke="#888888" x1="369.50000000000006" x2="369.50000000000006" y1="289.73039000000006" y2="286.73039000000006"/>
-  <line stroke="#888888" x1="369.50000000000006" x2="372.50000000000006" y1="286.73039000000006" y2="286.73039000000006"/>
-  <line stroke="#888888" x1="372.50000000000006" x2="372.50000000000006" y1="286.73039000000006" y2="289.73039000000006"/>
-  <line stroke="#888888" x1="372.50000000000006" x2="369.50000000000006" y1="289.73039000000006" y2="289.73039000000006"/>
-  <line stroke="#888888" x1="365.25000000000006" x2="356.75000000000006" y1="246.73039000000003" y2="246.73039000000003"/>
-  <line stroke="#888888" x1="356.75000000000006" x2="356.75000000000006" y1="246.73039000000003" y2="246.23039000000003"/>
-  <line stroke="#888888" x1="356.75000000000006" x2="365.25000000000006" y1="246.23039000000003" y2="246.23039000000003"/>
-  <line stroke="#888888" x1="365.25000000000006" x2="365.25000000000006" y1="246.23039000000003" y2="246.73039000000003"/>
-  <line stroke="#888888" x1="356.75000000000006" x2="365.25000000000006" y1="294.48039000000006" y2="294.48039000000006"/>
-  <line stroke="#888888" x1="365.25000000000006" x2="365.25000000000006" y1="294.48039000000006" y2="294.98039000000006"/>
-  <line stroke="#888888" x1="365.25000000000006" x2="356.75000000000006" y1="294.98039000000006" y2="294.98039000000006"/>
-  <line stroke="#888888" x1="356.75000000000006" x2="356.75000000000006" y1="294.98039000000006" y2="294.48039000000006"/>
-  <line stroke="#888888" x1="388.00000000000006" x2="388.00000000000006" y1="289.98039000000006" y2="276.98039000000006"/>
-  <line stroke="#888888" x1="388.00000000000006" x2="418.00000000000006" y1="276.98039000000006" y2="276.98039000000006"/>
-  <line stroke="#888888" x1="418.00000000000006" x2="418.00000000000006" y1="276.98039000000006" y2="289.98039000000006"/>
-  <line stroke="#888888" x1="418.00000000000006" x2="388.00000000000006" y1="289.98039000000006" y2="289.98039000000006"/>
-  <line stroke="#888888" x1="395.06818181818187" x2="383.6590909090909" y1="244.48039000000003" y2="244.48039000000003"/>
-  <line stroke="#888888" x1="383.6590909090909" x2="383.6590909090909" y1="244.48039000000003" y2="243.98039000000003"/>
-  <line stroke="#888888" x1="383.6590909090909" x2="395.06818181818187" y1="243.98039000000003" y2="243.98039000000003"/>
-  <line stroke="#888888" x1="395.06818181818187" x2="395.06818181818187" y1="243.98039000000003" y2="244.48039000000003"/>
-  <line stroke="#888888" x1="422.3409090909092" x2="410.93181818181824" y1="244.48039000000003" y2="244.48039000000003"/>
-  <line stroke="#888888" x1="410.93181818181824" x2="410.93181818181824" y1="244.48039000000003" y2="243.98039000000003"/>
-  <line stroke="#888888" x1="410.93181818181824" x2="422.3409090909092" y1="243.98039000000003" y2="243.98039000000003"/>
-  <line stroke="#888888" x1="422.3409090909092" x2="422.3409090909092" y1="243.98039000000003" y2="244.48039000000003"/>
-  <line stroke="#888888" x1="425.25000000000006" x2="425.25000000000006" y1="261.4122081818182" y2="249.82129909090912"/>
-  <line stroke="#888888" x1="425.25000000000006" x2="425.75000000000006" y1="249.82129909090912" y2="249.82129909090912"/>
-  <line stroke="#888888" x1="425.75000000000006" x2="425.75000000000006" y1="249.82129909090912" y2="261.4122081818182"/>
-  <line stroke="#888888" x1="425.75000000000006" x2="425.25000000000006" y1="261.4122081818182" y2="261.4122081818182"/>
-  <line stroke="#888888" x1="425.25000000000006" x2="425.25000000000006" y1="289.13948090909093" y2="277.5485718181818"/>
-  <line stroke="#888888" x1="425.25000000000006" x2="425.75000000000006" y1="277.5485718181818" y2="277.5485718181818"/>
-  <line stroke="#888888" x1="425.75000000000006" x2="425.75000000000006" y1="277.5485718181818" y2="289.13948090909093"/>
-  <line stroke="#888888" x1="425.75000000000006" x2="425.25000000000006" y1="289.13948090909093" y2="289.13948090909093"/>
-  <line stroke="#888888" x1="265.50000000000006" x2="265.50000000000006" y1="252.23039000000003" y2="249.23039000000003"/>
-  <line stroke="#888888" x1="265.50000000000006" x2="268.50000000000006" y1="249.23039000000003" y2="249.23039000000003"/>
-  <line stroke="#888888" x1="268.50000000000006" x2="268.50000000000006" y1="249.23039000000003" y2="252.23039000000003"/>
-  <line stroke="#888888" x1="268.50000000000006" x2="265.50000000000006" y1="252.23039000000003" y2="252.23039000000003"/>
-  <line stroke="#888888" x1="286.5" x2="286.5" y1="251.23039000000003" y2="250.23039000000003"/>
-  <line stroke="#888888" x1="286.5" x2="287.5" y1="250.23039000000003" y2="250.23039000000003"/>
-  <line stroke="#888888" x1="287.5" x2="287.5" y1="250.23039000000003" y2="251.23039000000003"/>
-  <line stroke="#888888" x1="287.5" x2="286.5" y1="251.23039000000003" y2="251.23039000000003"/>
-  <line stroke="#888888" x1="266.5" x2="266.5" y1="253.73039000000003" y2="252.73039000000003"/>
-  <line stroke="#888888" x1="266.5" x2="267.50000000000006" y1="252.73039000000003" y2="252.73039000000003"/>
-  <line stroke="#888888" x1="267.50000000000006" x2="267.50000000000006" y1="252.73039000000003" y2="253.73039000000003"/>
-  <line stroke="#888888" x1="267.50000000000006" x2="266.5" y1="253.73039000000003" y2="253.73039000000003"/>
-  <line stroke="#888888" x1="286.5" x2="286.5" y1="253.73039000000003" y2="252.73039000000003"/>
-  <line stroke="#888888" x1="286.5" x2="287.5" y1="252.73039000000003" y2="252.73039000000003"/>
-  <line stroke="#888888" x1="287.5" x2="287.5" y1="252.73039000000003" y2="253.73039000000003"/>
-  <line stroke="#888888" x1="287.5" x2="286.5" y1="253.73039000000003" y2="253.73039000000003"/>
-  <line stroke="#888888" x1="266.5" x2="266.5" y1="256.23039000000006" y2="255.23039000000003"/>
-  <line stroke="#888888" x1="266.5" x2="267.50000000000006" y1="255.23039000000003" y2="255.23039000000003"/>
-  <line stroke="#888888" x1="267.50000000000006" x2="267.50000000000006" y1="255.23039000000003" y2="256.23039000000006"/>
-  <line stroke="#888888" x1="267.50000000000006" x2="266.5" y1="256.23039000000006" y2="256.23039000000006"/>
-  <line stroke="#888888" x1="286.5" x2="286.5" y1="256.23039000000006" y2="255.23039000000003"/>
-  <line stroke="#888888" x1="286.5" x2="287.5" y1="255.23039000000003" y2="255.23039000000003"/>
-  <line stroke="#888888" x1="287.5" x2="287.5" y1="255.23039000000003" y2="256.23039000000006"/>
-  <line stroke="#888888" x1="287.5" x2="286.5" y1="256.23039000000006" y2="256.23039000000006"/>
-  <line stroke="#888888" x1="266.5" x2="266.5" y1="258.73039000000006" y2="257.73039"/>
-  <line stroke="#888888" x1="266.5" x2="267.50000000000006" y1="257.73039" y2="257.73039"/>
-  <line stroke="#888888" x1="267.50000000000006" x2="267.50000000000006" y1="257.73039" y2="258.73039000000006"/>
-  <line stroke="#888888" x1="267.50000000000006" x2="266.5" y1="258.73039000000006" y2="258.73039000000006"/>
-  <line stroke="#888888" x1="286.5" x2="286.5" y1="258.73039000000006" y2="257.73039"/>
-  <line stroke="#888888" x1="286.5" x2="287.5" y1="257.73039" y2="257.73039"/>
-  <line stroke="#888888" x1="287.5" x2="287.5" y1="257.73039" y2="258.73039000000006"/>
-  <line stroke="#888888" x1="287.5" x2="286.5" y1="258.73039000000006" y2="258.73039000000006"/>
-  <line stroke="#888888" x1="266.5" x2="266.5" y1="261.23039000000006" y2="260.23039000000006"/>
-  <line stroke="#888888" x1="266.5" x2="267.50000000000006" y1="260.23039000000006" y2="260.23039000000006"/>
-  <line stroke="#888888" x1="267.50000000000006" x2="267.50000000000006" y1="260.23039000000006" y2="261.23039000000006"/>
-  <line stroke="#888888" x1="267.50000000000006" x2="266.5" y1="261.23039000000006" y2="261.23039000000006"/>
-  <line stroke="#888888" x1="286.5" x2="286.5" y1="261.23039000000006" y2="260.23039000000006"/>
-  <line stroke="#888888" x1="286.5" x2="287.5" y1="260.23039000000006" y2="260.23039000000006"/>
-  <line stroke="#888888" x1="287.5" x2="287.5" y1="260.23039000000006" y2="261.23039000000006"/>
-  <line stroke="#888888" x1="287.5" x2="286.5" y1="261.23039000000006" y2="261.23039000000006"/>
-  <line stroke="#888888" x1="266.5" x2="266.5" y1="263.73039000000006" y2="262.73039000000006"/>
-  <line stroke="#888888" x1="266.5" x2="267.50000000000006" y1="262.73039000000006" y2="262.73039000000006"/>
-  <line stroke="#888888" x1="267.50000000000006" x2="267.50000000000006" y1="262.73039000000006" y2="263.73039000000006"/>
-  <line stroke="#888888" x1="267.50000000000006" x2="266.5" y1="263.73039000000006" y2="263.73039000000006"/>
-  <line stroke="#888888" x1="286.5" x2="286.5" y1="263.73039000000006" y2="262.73039000000006"/>
-  <line stroke="#888888" x1="286.5" x2="287.5" y1="262.73039000000006" y2="262.73039000000006"/>
-  <line stroke="#888888" x1="287.5" x2="287.5" y1="262.73039000000006" y2="263.73039000000006"/>
-  <line stroke="#888888" x1="287.5" x2="286.5" y1="263.73039000000006" y2="263.73039000000006"/>
-  <line stroke="#888888" x1="266.5" x2="266.5" y1="266.23039" y2="265.23039000000006"/>
-  <line stroke="#888888" x1="266.5" x2="267.50000000000006" y1="265.23039000000006" y2="265.23039000000006"/>
-  <line stroke="#888888" x1="267.50000000000006" x2="267.50000000000006" y1="265.23039000000006" y2="266.23039"/>
-  <line stroke="#888888" x1="267.50000000000006" x2="266.5" y1="266.23039" y2="266.23039"/>
-  <line stroke="#888888" x1="286.5" x2="286.5" y1="266.23039" y2="265.23039000000006"/>
-  <line stroke="#888888" x1="286.5" x2="287.5" y1="265.23039000000006" y2="265.23039000000006"/>
-  <line stroke="#888888" x1="287.5" x2="287.5" y1="265.23039000000006" y2="266.23039"/>
-  <line stroke="#888888" x1="287.5" x2="286.5" y1="266.23039" y2="266.23039"/>
-  <line stroke="#888888" x1="266.5" x2="266.5" y1="268.73039" y2="267.73039000000006"/>
-  <line stroke="#888888" x1="266.5" x2="267.50000000000006" y1="267.73039000000006" y2="267.73039000000006"/>
-  <line stroke="#888888" x1="267.50000000000006" x2="267.50000000000006" y1="267.73039000000006" y2="268.73039"/>
-  <line stroke="#888888" x1="267.50000000000006" x2="266.5" y1="268.73039" y2="268.73039"/>
-  <line stroke="#888888" x1="286.5" x2="286.5" y1="268.73039" y2="267.73039000000006"/>
-  <line stroke="#888888" x1="286.5" x2="287.5" y1="267.73039000000006" y2="267.73039000000006"/>
-  <line stroke="#888888" x1="287.5" x2="287.5" y1="267.73039000000006" y2="268.73039"/>
-  <line stroke="#888888" x1="287.5" x2="286.5" y1="268.73039" y2="268.73039"/>
-  <line stroke="#888888" x1="266.5" x2="266.5" y1="271.23039" y2="270.23039000000006"/>
-  <line stroke="#888888" x1="266.5" x2="267.50000000000006" y1="270.23039000000006" y2="270.23039000000006"/>
-  <line stroke="#888888" x1="267.50000000000006" x2="267.50000000000006" y1="270.23039000000006" y2="271.23039"/>
-  <line stroke="#888888" x1="267.50000000000006" x2="266.5" y1="271.23039" y2="271.23039"/>
-  <line stroke="#888888" x1="286.5" x2="286.5" y1="271.23039" y2="270.23039000000006"/>
-  <line stroke="#888888" x1="286.5" x2="287.5" y1="270.23039000000006" y2="270.23039000000006"/>
-  <line stroke="#888888" x1="287.5" x2="287.5" y1="270.23039000000006" y2="271.23039"/>
-  <line stroke="#888888" x1="287.5" x2="286.5" y1="271.23039" y2="271.23039"/>
-  <line stroke="#888888" x1="266.5" x2="266.5" y1="273.73039000000006" y2="272.73039000000006"/>
-  <line stroke="#888888" x1="266.5" x2="267.50000000000006" y1="272.73039000000006" y2="272.73039000000006"/>
-  <line stroke="#888888" x1="267.50000000000006" x2="267.50000000000006" y1="272.73039000000006" y2="273.73039000000006"/>
-  <line stroke="#888888" x1="267.50000000000006" x2="266.5" y1="273.73039000000006" y2="273.73039000000006"/>
-  <line stroke="#888888" x1="286.5" x2="286.5" y1="273.73039000000006" y2="272.73039000000006"/>
-  <line stroke="#888888" x1="286.5" x2="287.5" y1="272.73039000000006" y2="272.73039000000006"/>
-  <line stroke="#888888" x1="287.5" x2="287.5" y1="272.73039000000006" y2="273.73039000000006"/>
-  <line stroke="#888888" x1="287.5" x2="286.5" y1="273.73039000000006" y2="273.73039000000006"/>
-  <line stroke="#888888" x1="266.5" x2="266.5" y1="276.23039000000006" y2="275.23039"/>
-  <line stroke="#888888" x1="266.5" x2="267.50000000000006" y1="275.23039" y2="275.23039"/>
-  <line stroke="#888888" x1="267.50000000000006" x2="267.50000000000006" y1="275.23039" y2="276.23039000000006"/>
-  <line stroke="#888888" x1="267.50000000000006" x2="266.5" y1="276.23039000000006" y2="276.23039000000006"/>
-  <line stroke="#888888" x1="286.5" x2="286.5" y1="276.23039000000006" y2="275.23039"/>
-  <line stroke="#888888" x1="286.5" x2="287.5" y1="275.23039" y2="275.23039"/>
-  <line stroke="#888888" x1="287.5" x2="287.5" y1="275.23039" y2="276.23039000000006"/>
-  <line stroke="#888888" x1="287.5" x2="286.5" y1="276.23039000000006" y2="276.23039000000006"/>
-  <line stroke="#888888" x1="266.5" x2="266.5" y1="278.73039" y2="277.73039000000006"/>
-  <line stroke="#888888" x1="266.5" x2="267.50000000000006" y1="277.73039000000006" y2="277.73039000000006"/>
-  <line stroke="#888888" x1="267.50000000000006" x2="267.50000000000006" y1="277.73039000000006" y2="278.73039"/>
-  <line stroke="#888888" x1="267.50000000000006" x2="266.5" y1="278.73039" y2="278.73039"/>
-  <line stroke="#888888" x1="286.5" x2="286.5" y1="278.73039" y2="277.73039000000006"/>
-  <line stroke="#888888" x1="286.5" x2="287.5" y1="277.73039000000006" y2="277.73039000000006"/>
-  <line stroke="#888888" x1="287.5" x2="287.5" y1="277.73039000000006" y2="278.73039"/>
-  <line stroke="#888888" x1="287.5" x2="286.5" y1="278.73039" y2="278.73039"/>
-  <line stroke="#888888" x1="266.5" x2="266.5" y1="281.23039000000006" y2="280.23039"/>
-  <line stroke="#888888" x1="266.5" x2="267.50000000000006" y1="280.23039" y2="280.23039"/>
-  <line stroke="#888888" x1="267.50000000000006" x2="267.50000000000006" y1="280.23039" y2="281.23039000000006"/>
-  <line stroke="#888888" x1="267.50000000000006" x2="266.5" y1="281.23039000000006" y2="281.23039000000006"/>
-  <line stroke="#888888" x1="286.5" x2="286.5" y1="281.23039000000006" y2="280.23039"/>
-  <line stroke="#888888" x1="286.5" x2="287.5" y1="280.23039" y2="280.23039"/>
-  <line stroke="#888888" x1="287.5" x2="287.5" y1="280.23039" y2="281.23039000000006"/>
-  <line stroke="#888888" x1="287.5" x2="286.5" y1="281.23039000000006" y2="281.23039000000006"/>
-  <line stroke="#888888" x1="266.5" x2="266.5" y1="283.73039" y2="282.73039000000006"/>
-  <line stroke="#888888" x1="266.5" x2="267.50000000000006" y1="282.73039000000006" y2="282.73039000000006"/>
-  <line stroke="#888888" x1="267.50000000000006" x2="267.50000000000006" y1="282.73039000000006" y2="283.73039"/>
-  <line stroke="#888888" x1="267.50000000000006" x2="266.5" y1="283.73039" y2="283.73039"/>
-  <line stroke="#888888" x1="286.5" x2="286.5" y1="283.73039" y2="282.73039000000006"/>
-  <line stroke="#888888" x1="286.5" x2="287.5" y1="282.73039000000006" y2="282.73039000000006"/>
-  <line stroke="#888888" x1="287.5" x2="287.5" y1="282.73039000000006" y2="283.73039"/>
-  <line stroke="#888888" x1="287.5" x2="286.5" y1="283.73039" y2="283.73039"/>
-  <line stroke="#888888" x1="266.5" x2="266.5" y1="286.23039000000006" y2="285.23039000000006"/>
-  <line stroke="#888888" x1="266.5" x2="267.50000000000006" y1="285.23039000000006" y2="285.23039000000006"/>
-  <line stroke="#888888" x1="267.50000000000006" x2="267.50000000000006" y1="285.23039000000006" y2="286.23039000000006"/>
-  <line stroke="#888888" x1="267.50000000000006" x2="266.5" y1="286.23039000000006" y2="286.23039000000006"/>
-  <line stroke="#888888" x1="286.5" x2="286.5" y1="286.23039000000006" y2="285.23039000000006"/>
-  <line stroke="#888888" x1="286.5" x2="287.5" y1="285.23039000000006" y2="285.23039000000006"/>
-  <line stroke="#888888" x1="287.5" x2="287.5" y1="285.23039000000006" y2="286.23039000000006"/>
-  <line stroke="#888888" x1="287.5" x2="286.5" y1="286.23039000000006" y2="286.23039000000006"/>
-  <line stroke="#888888" x1="266.5" x2="266.5" y1="288.73039" y2="287.73039000000006"/>
-  <line stroke="#888888" x1="266.5" x2="267.50000000000006" y1="287.73039000000006" y2="287.73039000000006"/>
-  <line stroke="#888888" x1="267.50000000000006" x2="267.50000000000006" y1="287.73039000000006" y2="288.73039"/>
-  <line stroke="#888888" x1="267.50000000000006" x2="266.5" y1="288.73039" y2="288.73039"/>
-  <line stroke="#888888" x1="285.50000000000006" x2="285.50000000000006" y1="289.73039000000006" y2="286.73039000000006"/>
-  <line stroke="#888888" x1="285.50000000000006" x2="288.50000000000006" y1="286.73039000000006" y2="286.73039000000006"/>
-  <line stroke="#888888" x1="288.50000000000006" x2="288.50000000000006" y1="286.73039000000006" y2="289.73039000000006"/>
-  <line stroke="#888888" x1="288.50000000000006" x2="285.50000000000006" y1="289.73039000000006" y2="289.73039000000006"/>
-  <line stroke="#888888" x1="281.25" x2="272.75" y1="246.73039000000003" y2="246.73039000000003"/>
-  <line stroke="#888888" x1="272.75" x2="272.75" y1="246.73039000000003" y2="246.23039000000003"/>
-  <line stroke="#888888" x1="272.75" x2="281.25" y1="246.23039000000003" y2="246.23039000000003"/>
-  <line stroke="#888888" x1="281.25" x2="281.25" y1="246.23039000000003" y2="246.73039000000003"/>
-  <line stroke="#888888" x1="272.75" x2="281.25" y1="294.48039000000006" y2="294.48039000000006"/>
-  <line stroke="#888888" x1="281.25" x2="281.25" y1="294.48039000000006" y2="294.98039000000006"/>
-  <line stroke="#888888" x1="281.25" x2="272.75" y1="294.98039000000006" y2="294.98039000000006"/>
-  <line stroke="#888888" x1="272.75" x2="272.75" y1="294.98039000000006" y2="294.48039000000006"/>
-  <line stroke="#888888" x1="257.5" x2="262.5" y1="250.07129909090912" y2="250.07129909090912"/>
-  <line stroke="#888888" x1="262.5" x2="262.5" y1="250.07129909090912" y2="261.16220818181824"/>
-  <line stroke="#888888" x1="262.5" x2="257.5" y1="261.16220818181824" y2="261.16220818181824"/>
-  <line stroke="#888888" x1="257.5" x2="262.5" y1="277.7985718181818" y2="277.7985718181818"/>
-  <line stroke="#888888" x1="262.5" x2="262.5" y1="277.7985718181818" y2="288.889480909091"/>
-  <line stroke="#888888" x1="262.5" x2="257.5" y1="288.889480909091" y2="288.889480909091"/>
-  <line stroke="#888888" x1="282.75" x2="286.25" y1="222.98039000000003" y2="222.98039000000003"/>
-  <line stroke="#888888" x1="286.25" x2="286.25" y1="222.98039000000003" y2="230.98039000000003"/>
-  <line stroke="#888888" x1="286.25" x2="282.75" y1="230.98039000000003" y2="230.98039000000003"/>
-  <line opacity="0.5" stroke="#0000ff" x1="653.0000000000001" x2="653.0000000000001" y1="101.98039000000001" y2="351.98039"/>
-  <line opacity="0.5" stroke="#0000ff" x1="593.0" x2="593.0" y1="101.98039000000001" y2="351.98039"/>
-  <line opacity="0.06283295818900127" stroke="#0000ff" x1="623.0000000000001" x2="593.0" y1="101.98039000000001" y2="101.98039000000001"/>
-  <line opacity="0.06283295818900127" stroke="#0000ff" x1="653.0000000000001" x2="623.0000000000001" y1="101.98039000000001" y2="101.98039000000001"/>
-  <line opacity="0.4820525978704366" stroke="#0000ff" x1="623.0000000000001" x2="593.0" y1="-2.718556970648933e-07" y2="101.98039000000003"/>
-  <line stroke="#000000" x1="577.4351669969384" x2="575.2175834984691" y1="88.51883783587918" y2="92.82693910068978"/>
-  <line stroke="#000000" x1="623.0000000000001" x2="577.4351669969384" y1="-2.718556970648933e-07" y2="88.51883783587918"/>
-  <line opacity="1.0" stroke="#0000ff" x1="593.0" x2="575.2175834984691" y1="101.98039000000001" y2="92.82693910068978"/>
-  <line opacity="1.0" stroke="#ff0000" x1="593.0" x2="573.0" y1="101.98039000000001" y2="97.13504036550037"/>
-  <line stroke="#000000" x1="575.2175834984691" x2="573.0" y1="92.82693910068978" y2="97.13504036550037"/>
-  <line opacity="0.9666666666666667" stroke="#ff0000" x1="573.0" x2="573.0" y1="101.98039000000001" y2="97.1350403655004"/>
-  <line opacity="0.09277357907774236" stroke="#0000ff" x1="593.0" x2="573.0" y1="101.98039000000001" y2="101.98039000000001"/>
-  <line stroke="#000000" x1="571.3848834551669" x2="573.0" y1="101.98039000000001" y2="101.98039000000001"/>
-  <line stroke="#000000" x1="571.3848834551669" x2="571.3848834551669" y1="97.1350403655004" y2="101.98039000000001"/>
-  <line stroke="#000000" x1="573.0" x2="571.3848834551669" y1="97.1350403655004" y2="97.1350403655004"/>
-  <line opacity="0.2788579383763045" stroke="#0000ff" x1="573.0" x2="593.0" y1="351.98039" y2="351.98039"/>
-  <line opacity="1.0" stroke="#ff0000" x1="573.0" x2="593.0" y1="366.05164438473815" y2="351.98039"/>
-  <line opacity="0.9666666666666667" stroke="#ff0000" x1="573.0" x2="573.0" y1="366.05164438473815" y2="351.98039"/>
-  <line stroke="#000000" x1="573.0" x2="586.2441561038441" y1="366.0516443847381" y2="370.80480428705755"/>
-  <line opacity="1.0" stroke="#0000ff" x1="586.2441561038441" x2="593.0" y1="370.80480428705755" y2="351.98039"/>
-  <line opacity="0.34067147682435556" stroke="#0000ff" x1="623.0000000000001" x2="593.0" y1="383.99601118716436" y2="351.98039"/>
-  <line stroke="#000000" x1="599.4883122076884" x2="623.0000000000001" y1="375.55796418937695" y2="383.99601118716436"/>
-  <line stroke="#000000" x1="586.2441561038441" x2="599.4883122076884" y1="370.80480428705755" y2="375.55796418937695"/>
-  <line opacity="0.21477671252272268" stroke="#0000ff" x1="593.0" x2="623.0000000000001" y1="351.98039" y2="351.98039"/>
-  <line opacity="0.21477671252272268" stroke="#0000ff" x1="623.0000000000001" x2="653.0000000000001" y1="351.98039" y2="351.98039"/>
-  <line opacity="0.34067147682435556" stroke="#0000ff" x1="623.0000000000001" x2="653.0000000000001" y1="383.99601118716436" y2="351.98039"/>
-  <line stroke="#000000" x1="646.5116877923116" x2="659.7558438961557" y1="375.55796418937695" y2="370.80480428705755"/>
-  <line stroke="#000000" x1="623.0000000000001" x2="646.5116877923116" y1="383.9960111871643" y2="375.55796418937695"/>
-  <line opacity="1.0" stroke="#0000ff" x1="653.0000000000001" x2="659.7558438961557" y1="351.98039" y2="370.80480428705755"/>
-  <line opacity="1.0" stroke="#ff0000" x1="653.0000000000001" x2="673.0" y1="351.98039000000006" y2="366.05164438473815"/>
-  <line stroke="#000000" x1="659.7558438961557" x2="673.0" y1="370.8048042870576" y2="366.05164438473815"/>
-  <line opacity="0.9666666666666667" stroke="#ff0000" x1="673.0" x2="673.0" y1="351.98039000000006" y2="366.05164438473815"/>
-  <line opacity="0.2788579383763045" stroke="#0000ff" x1="653.0000000000001" x2="673.0" y1="351.98039000000006" y2="351.98039000000006"/>
-  <line stroke="#000000" x1="677.690418128246" x2="673.0" y1="351.98039000000006" y2="351.98039000000006"/>
-  <line stroke="#000000" x1="677.690418128246" x2="677.690418128246" y1="366.05164438473815" y2="351.98039000000006"/>
-  <line stroke="#000000" x1="673.0" x2="677.690418128246" y1="366.05164438473815" y2="366.05164438473815"/>
-  <line stroke="#000000" x1="673.0" x2="673.0000000000001" y1="351.98039" y2="101.98038999999997"/>
-  <line opacity="0.09277357907774236" stroke="#0000ff" x1="673.0000000000001" x2="653.0000000000001" y1="101.98038999999999" y2="101.98038999999997"/>
-  <line opacity="1.0" stroke="#ff0000" x1="673.0000000000001" x2="653.0000000000001" y1="97.13504036550036" y2="101.98038999999997"/>
-  <line opacity="0.9666666666666667" stroke="#ff0000" x1="673.0000000000001" x2="673.0000000000001" y1="97.13504036550036" y2="101.98038999999997"/>
-  <line stroke="#000000" x1="673.0000000000001" x2="670.782416501531" y1="97.13504036550036" y2="92.82693910068974"/>
-  <line opacity="1.0" stroke="#0000ff" x1="670.782416501531" x2="653.0000000000001" y1="92.82693910068974" y2="101.98038999999997"/>
-  <line opacity="0.4820525978704366" stroke="#0000ff" x1="623.0000000000002" x2="653.0000000000001" y1="-2.7185575390831223e-07" y2="101.98038999999997"/>
-  <line stroke="#000000" x1="668.5648330030618" x2="623.0000000000002" y1="88.51883783587913" y2="-2.7185575390831223e-07"/>
-  <line stroke="#000000" x1="670.782416501531" x2="668.5648330030618" y1="92.82693910068974" y2="88.51883783587913"/>
-  <line stroke="#000000" x1="674.6151165448334" x2="673.0000000000001" y1="97.13504036550036" y2="97.13504036550036"/>
-  <line stroke="#000000" x1="674.6151165448334" x2="674.6151165448334" y1="101.98038999999997" y2="97.13504036550036"/>
-  <line stroke="#000000" x1="673.0000000000001" x2="674.6151165448334" y1="101.98038999999997" y2="101.98038999999997"/>
-  <line stroke="#000000" x1="568.3095818717541" x2="573.0" y1="366.0516443847381" y2="366.0516443847381"/>
-  <line stroke="#000000" x1="568.3095818717541" x2="568.3095818717541" y1="351.98039" y2="366.0516443847381"/>
-  <line stroke="#000000" x1="573.0" x2="568.3095818717541" y1="351.98039" y2="351.98039"/>
-  <line stroke="#000000" x1="573.0" x2="573.0" y1="351.98039" y2="351.98039"/>
-  <line stroke="#000000" x1="573.0" x2="573.0" y1="251.98039000000003" y2="351.98039"/>
-  <line stroke="#000000" x1="573.0" x2="573.0" y1="101.98039000000001" y2="201.98039000000003"/>
-  <line stroke="#000000" x1="573.0" x2="573.0" y1="101.98039000000001" y2="101.98039000000001"/>
-  <line opacity="0.5" stroke="#0000ff" x1="573.0" x2="543.0000000000001" y1="251.98039000000003" y2="251.98039000000003"/>
-  <line opacity="0.5" stroke="#0000ff" x1="543.0000000000001" x2="543.0000000000001" y1="201.98039000000003" y2="251.98039000000003"/>
-  <line opacity="0.5" stroke="#0000ff" x1="543.0000000000001" x2="573.0" y1="201.98039000000003" y2="201.98039000000003"/>
-  <line stroke="#000000" x1="573.0" x2="573.0" y1="261.98039" y2="251.98039000000003"/>
-  <line stroke="#000000" x1="543.0000000000001" x2="573.0" y1="261.98039" y2="261.98039"/>
-  <line stroke="#000000" x1="543.0000000000001" x2="543.0000000000001" y1="251.98039000000003" y2="261.98039"/>
-  <line opacity="0.5" stroke="#0000ff" x1="543.0000000000001" x2="483.00000000000006" y1="251.98039000000003" y2="251.98039"/>
-  <line opacity="0.5" stroke="#0000ff" x1="483.00000000000006" x2="483.00000000000006" y1="251.98039" y2="201.98039"/>
-  <line opacity="0.5" stroke="#0000ff" x1="483.00000000000006" x2="543.0000000000001" y1="201.98039" y2="201.98039000000003"/>
-  <line stroke="#000000" x1="483.00000000000006" x2="543.0000000000001" y1="281.98039000000006" y2="281.98039000000006"/>
-  <line stroke="#000000" x1="483.00000000000006" x2="483.00000000000006" y1="251.98039" y2="281.98039000000006"/>
-  <line stroke="#000000" x1="543.0000000000001" x2="543.0000000000001" y1="281.98039000000006" y2="251.98039000000003"/>
-  <line opacity="0.5" stroke="#0000ff" x1="483.00000000000006" x2="453.00000000000006" y1="251.98039" y2="251.98039"/>
-  <line stroke="#000000" x1="483.00000000000006" x2="453.00000000000006" y1="201.98039" y2="201.98039"/>
-  <line stroke="#000000" x1="483.00000000000006" x2="483.00000000000006" y1="261.98039" y2="251.98039"/>
-  <line stroke="#000000" x1="453.00000000000006" x2="483.00000000000006" y1="261.98038999999994" y2="261.98039"/>
-  <line stroke="#000000" x1="453.00000000000006" x2="453.00000000000006" y1="251.98039" y2="261.98038999999994"/>
-  <line stroke="#000000" x1="453.00000000000006" x2="453.00000000000006" y1="101.98038999999999" y2="101.98038999999999"/>
-  <line stroke="#000000" x1="453.00000000000006" x2="453.00000000000006" y1="201.98039" y2="101.98038999999999"/>
-  <line stroke="#000000" x1="453.0" x2="453.00000000000006" y1="351.98039" y2="251.98039"/>
-  <line stroke="#000000" x1="453.0" x2="453.0" y1="351.98039" y2="351.98039"/>
-  <line stroke="#000000" x1="443.0" x2="453.0" y1="351.98039" y2="351.98039"/>
-  <line stroke="#000000" x1="443.00000000000006" x2="443.0" y1="101.98038999999999" y2="351.98039"/>
-  <line stroke="#000000" x1="453.00000000000006" x2="443.00000000000006" y1="101.98038999999999" y2="101.98038999999999"/>
-  <line opacity="0.5" stroke="#0000ff" x1="483.00000000000006" x2="483.00000000000006" y1="201.98039" y2="171.98039"/>
-  <line stroke="#000000" x1="543.0000000000001" x2="483.00000000000006" y1="171.98039000000003" y2="171.98039"/>
-  <line stroke="#000000" x1="543.0000000000001" x2="543.0000000000001" y1="201.98039000000003" y2="171.98039000000003"/>
-  <line stroke="#000000" x1="473.00000000000006" x2="483.00000000000006" y1="201.98039" y2="201.98039"/>
-  <line stroke="#000000" x1="473.00000000000006" x2="473.00000000000006" y1="171.98039" y2="201.98039"/>
-  <line stroke="#000000" x1="483.00000000000006" x2="473.00000000000006" y1="171.98039" y2="171.98039"/>
-  <line stroke="#000000" x1="543.0000000000001" x2="543.0000000000001" y1="191.98039000000003" y2="201.98039000000003"/>
-  <line stroke="#000000" x1="573.0" x2="543.0000000000001" y1="191.98039000000003" y2="191.98039000000003"/>
-  <line stroke="#000000" x1="573.0" x2="573.0" y1="201.98039000000003" y2="191.98039000000003"/>
-  <line stroke="#888888" x1="578.1096961561617" x2="577.1416653841894" y1="90.40140539540558" y2="92.28199956288073"/>
-  <line stroke="#888888" x1="577.1416653841894" x2="576.6971049716511" y1="92.28199956288073" y2="92.05316329039796"/>
-  <line stroke="#888888" x1="576.6971049716511" x2="577.6651357436235" y1="92.05316329039796" y2="90.17256912292281"/>
-  <line stroke="#888888" x1="577.6651357436235" x2="578.1096961561617" y1="90.17256912292281" y2="90.40140539540558"/>
-  <line stroke="#888888" x1="571.7886625913752" x2="572.5962208637918" y1="98.75015691033362" y2="98.75015691033362"/>
-  <line stroke="#888888" x1="572.5962208637918" x2="572.5962208637918" y1="98.75015691033362" y2="100.36527345516681"/>
-  <line stroke="#888888" x1="572.5962208637918" x2="571.7886625913752" y1="100.36527345516681" y2="100.36527345516681"/>
-  <line stroke="#888888" x1="591.6963076508192" x2="596.5816367092771" y1="368.7583986679128" y2="370.5116813994232"/>
-  <line stroke="#888888" x1="596.5816367092771" x2="596.4127406118731" y1="370.5116813994232" y2="370.98229175659964"/>
-  <line stroke="#888888" x1="596.4127406118731" x2="591.5274115534152" y1="370.98229175659964" y2="369.2290090250893"/>
-  <line stroke="#888888" x1="591.5274115534152" x2="591.6963076508192" y1="369.2290090250893" y2="368.7583986679128"/>
-  <line stroke="#888888" x1="649.418363290723" x2="654.3036923491809" y1="370.5116813994232" y2="368.7583986679128"/>
-  <line stroke="#888888" x1="654.3036923491809" x2="654.4725884465847" y1="368.7583986679128" y2="369.2290090250893"/>
-  <line stroke="#888888" x1="654.4725884465847" x2="649.587259388127" y1="369.2290090250893" y2="370.98229175659964"/>
-  <line stroke="#888888" x1="649.587259388127" x2="649.418363290723" y1="370.98229175659964" y2="370.5116813994232"/>
-  <line stroke="#888888" x1="676.5178135961846" x2="674.1726045320615" y1="361.3612262564921" y2="361.3612262564921"/>
-  <line stroke="#888888" x1="674.1726045320615" x2="674.1726045320615" y1="361.3612262564921" y2="356.6708081282461"/>
-  <line stroke="#888888" x1="674.1726045320615" x2="676.5178135961846" y1="356.6708081282461" y2="356.6708081282461"/>
-  <line stroke="#888888" x1="665.2500000000001" x2="665.2500000000001" y1="140.69192846153842" y2="120.9611592307692"/>
-  <line stroke="#888888" x1="665.2500000000001" x2="665.7500000000001" y1="120.9611592307692" y2="120.9611592307692"/>
-  <line stroke="#888888" x1="665.7500000000001" x2="665.7500000000001" y1="120.9611592307692" y2="140.69192846153842"/>
-  <line stroke="#888888" x1="665.7500000000001" x2="665.2500000000001" y1="140.69192846153842" y2="140.69192846153842"/>
-  <line stroke="#888888" x1="665.2500000000001" x2="665.2500000000001" y1="188.76885153846155" y2="169.0380823076923"/>
-  <line stroke="#888888" x1="665.2500000000001" x2="665.7500000000001" y1="169.0380823076923" y2="169.0380823076923"/>
-  <line stroke="#888888" x1="665.7500000000001" x2="665.7500000000001" y1="169.0380823076923" y2="188.76885153846155"/>
-  <line stroke="#888888" x1="665.7500000000001" x2="665.2500000000001" y1="188.76885153846155" y2="188.76885153846155"/>
-  <line stroke="#888888" x1="665.2500000000001" x2="665.2500000000001" y1="236.84577461538464" y2="217.11500538461536"/>
-  <line stroke="#888888" x1="665.2500000000001" x2="665.7500000000001" y1="217.11500538461536" y2="217.1150053846154"/>
-  <line stroke="#888888" x1="665.7500000000001" x2="665.7500000000001" y1="217.1150053846154" y2="236.84577461538464"/>
-  <line stroke="#888888" x1="665.7500000000001" x2="665.2500000000001" y1="236.84577461538464" y2="236.84577461538464"/>
-  <line stroke="#888888" x1="665.2500000000001" x2="665.2500000000001" y1="284.9226976923077" y2="265.19192846153845"/>
-  <line stroke="#888888" x1="665.2500000000001" x2="665.7500000000001" y1="265.19192846153845" y2="265.19192846153845"/>
-  <line stroke="#888888" x1="665.7500000000001" x2="665.7500000000001" y1="265.19192846153845" y2="284.9226976923077"/>
-  <line stroke="#888888" x1="665.7500000000001" x2="665.2500000000001" y1="284.9226976923077" y2="284.9226976923077"/>
-  <line stroke="#888888" x1="665.2500000000001" x2="665.2500000000001" y1="332.99962076923083" y2="313.26885153846155"/>
-  <line stroke="#888888" x1="665.2500000000001" x2="665.7500000000001" y1="313.26885153846155" y2="313.26885153846155"/>
-  <line stroke="#888888" x1="665.7500000000001" x2="665.7500000000001" y1="313.26885153846155" y2="332.99962076923083"/>
-  <line stroke="#888888" x1="665.7500000000001" x2="665.2500000000001" y1="332.99962076923083" y2="332.99962076923083"/>
-  <line stroke="#888888" x1="668.8583346158109" x2="667.8903038438383" y1="92.2819995628807" y2="90.40140539540555"/>
-  <line stroke="#888888" x1="667.8903038438383" x2="668.3348642563766" y1="90.40140539540555" y2="90.17256912292278"/>
-  <line stroke="#888888" x1="668.3348642563766" x2="669.3028950283492" y1="90.17256912292278" y2="92.05316329039792"/>
-  <line stroke="#888888" x1="669.3028950283492" x2="668.8583346158109" y1="92.05316329039792" y2="92.2819995628807"/>
-  <line stroke="#888888" x1="674.2113374086251" x2="673.4037791362085" y1="100.36527345516676" y2="100.36527345516676"/>
-  <line stroke="#888888" x1="673.4037791362085" x2="673.4037791362085" y1="100.36527345516676" y2="98.75015691033356"/>
-  <line stroke="#888888" x1="673.4037791362085" x2="674.2113374086251" y1="98.75015691033356" y2="98.75015691033356"/>
-  <line stroke="#888888" x1="569.4821864038155" x2="571.8273954679385" y1="356.67080812824605" y2="356.67080812824605"/>
-  <line stroke="#888888" x1="571.8273954679385" x2="571.8273954679385" y1="356.67080812824605" y2="361.3612262564921"/>
-  <line stroke="#888888" x1="571.8273954679385" x2="569.4821864038155" y1="361.3612262564921" y2="361.3612262564921"/>
-  <line stroke="#888888" x1="553.0000000000001" x2="553.0000000000001" y1="259.48039" y2="254.48039000000003"/>
-  <line stroke="#888888" x1="553.0000000000001" x2="563.0" y1="254.48039000000003" y2="254.48039000000003"/>
-  <line stroke="#888888" x1="563.0" x2="563.0" y1="254.48039000000003" y2="259.48039"/>
-  <line stroke="#888888" x1="490.75000000000006" x2="490.75000000000006" y1="261.73039" y2="272.23039000000006"/>
-  <line stroke="#888888" x1="490.75000000000006" x2="490.25000000000006" y1="272.23039000000006" y2="272.23039000000006"/>
-  <line stroke="#888888" x1="490.25000000000006" x2="490.25000000000006" y1="272.23039000000006" y2="261.73039"/>
-  <line stroke="#888888" x1="490.25000000000006" x2="490.75000000000006" y1="261.73039" y2="261.73039"/>
-  <line stroke="#888888" x1="535.2500000000001" x2="535.2500000000001" y1="272.23039000000006" y2="261.73039"/>
-  <line stroke="#888888" x1="535.2500000000001" x2="535.7500000000001" y1="261.73039" y2="261.73039"/>
-  <line stroke="#888888" x1="535.7500000000001" x2="535.7500000000001" y1="261.73039" y2="272.23039000000006"/>
-  <line stroke="#888888" x1="535.7500000000001" x2="535.2500000000001" y1="272.23039000000006" y2="272.23039000000006"/>
-  <line stroke="#888888" x1="473.25" x2="462.75000000000006" y1="209.73039" y2="209.73039"/>
-  <line stroke="#888888" x1="462.75000000000006" x2="462.75000000000006" y1="209.73039" y2="209.23038999999997"/>
-  <line stroke="#888888" x1="462.75000000000006" x2="473.25" y1="209.23038999999997" y2="209.23038999999997"/>
-  <line stroke="#888888" x1="473.25" x2="473.25" y1="209.23038999999997" y2="209.73039"/>
-  <line stroke="#888888" x1="463.00000000000006" x2="463.00000000000006" y1="259.48039" y2="254.48039"/>
-  <line stroke="#888888" x1="463.00000000000006" x2="473.00000000000006" y1="254.48039" y2="254.48039"/>
-  <line stroke="#888888" x1="473.00000000000006" x2="473.00000000000006" y1="254.48039" y2="259.48039"/>
-  <line stroke="#888888" x1="445.50000000000006" x2="445.50000000000006" y1="121.21115923076921" y2="116.21115923076921"/>
-  <line stroke="#888888" x1="445.50000000000006" x2="450.5" y1="116.21115923076921" y2="121.21115923076921"/>
-  <line stroke="#888888" x1="450.5" x2="450.5" y1="121.21115923076921" y2="140.44192846153842"/>
-  <line stroke="#888888" x1="450.5" x2="445.50000000000006" y1="140.44192846153842" y2="145.44192846153842"/>
-  <line stroke="#888888" x1="445.50000000000006" x2="445.50000000000006" y1="145.44192846153842" y2="140.44192846153842"/>
-  <line stroke="#888888" x1="445.50000000000006" x2="445.50000000000006" y1="169.2880823076923" y2="164.2880823076923"/>
-  <line stroke="#888888" x1="445.50000000000006" x2="450.5" y1="164.2880823076923" y2="169.2880823076923"/>
-  <line stroke="#888888" x1="450.5" x2="450.5" y1="169.2880823076923" y2="188.51885153846152"/>
-  <line stroke="#888888" x1="450.5" x2="445.50000000000006" y1="188.51885153846152" y2="193.51885153846152"/>
-  <line stroke="#888888" x1="445.50000000000006" x2="445.50000000000006" y1="193.51885153846152" y2="188.51885153846152"/>
-  <line stroke="#888888" x1="445.50000000000006" x2="445.50000000000006" y1="217.36500538461536" y2="212.36500538461536"/>
-  <line stroke="#888888" x1="445.50000000000006" x2="450.5" y1="212.36500538461536" y2="217.36500538461536"/>
-  <line stroke="#888888" x1="450.5" x2="450.5" y1="217.36500538461536" y2="236.5957746153846"/>
-  <line stroke="#888888" x1="450.5" x2="445.50000000000006" y1="236.5957746153846" y2="241.5957746153846"/>
-  <line stroke="#888888" x1="445.50000000000006" x2="445.50000000000006" y1="241.5957746153846" y2="236.5957746153846"/>
-  <line stroke="#888888" x1="445.50000000000006" x2="445.50000000000006" y1="265.44192846153845" y2="260.44192846153845"/>
-  <line stroke="#888888" x1="445.50000000000006" x2="450.5" y1="260.44192846153845" y2="265.44192846153845"/>
-  <line stroke="#888888" x1="450.5" x2="450.5" y1="265.44192846153845" y2="284.6726976923077"/>
-  <line stroke="#888888" x1="450.5" x2="445.50000000000006" y1="284.6726976923077" y2="289.6726976923077"/>
-  <line stroke="#888888" x1="445.50000000000006" x2="445.50000000000006" y1="289.6726976923077" y2="284.6726976923077"/>
-  <line stroke="#888888" x1="445.50000000000006" x2="445.50000000000006" y1="313.51885153846155" y2="308.51885153846155"/>
-  <line stroke="#888888" x1="445.50000000000006" x2="450.5" y1="308.51885153846155" y2="313.51885153846155"/>
-  <line stroke="#888888" x1="450.5" x2="450.5" y1="313.51885153846155" y2="332.7496207692308"/>
-  <line stroke="#888888" x1="450.5" x2="445.50000000000006" y1="332.7496207692308" y2="337.7496207692308"/>
-  <line stroke="#888888" x1="445.50000000000006" x2="445.50000000000006" y1="337.7496207692308" y2="332.7496207692308"/>
-  <line stroke="#888888" x1="535.2500000000001" x2="535.2500000000001" y1="192.23039000000003" y2="181.73039"/>
-  <line stroke="#888888" x1="535.2500000000001" x2="535.7500000000001" y1="181.73039" y2="181.73039"/>
-  <line stroke="#888888" x1="535.7500000000001" x2="535.7500000000001" y1="181.73039" y2="192.23039000000003"/>
-  <line stroke="#888888" x1="535.7500000000001" x2="535.2500000000001" y1="192.23039000000003" y2="192.23039000000003"/>
-  <line stroke="#888888" x1="475.50000000000006" x2="480.50000000000006" y1="181.98038999999997" y2="181.98038999999997"/>
-  <line stroke="#888888" x1="480.50000000000006" x2="480.50000000000006" y1="181.98038999999997" y2="191.98039"/>
-  <line stroke="#888888" x1="480.50000000000006" x2="475.50000000000006" y1="191.98039" y2="191.98039"/>
-  <line stroke="#888888" x1="563.0" x2="563.0" y1="194.48039000000003" y2="199.48039000000003"/>
-  <line stroke="#888888" x1="563.0" x2="553.0000000000001" y1="199.48039000000003" y2="199.48039000000003"/>
-  <line stroke="#888888" x1="553.0000000000001" x2="553.0000000000001" y1="199.48039000000003" y2="194.48039000000003"/>
+  <line opacity="0.5" stroke="#0000ff" x1="127.92433336086202" x2="127.92433336086202" y1="117.88129600000003" y2="415.8812960000001"/>
+  <line opacity="0.5" stroke="#0000ff" x1="37.924333360862015" x2="37.924333360862015" y1="117.88129600000003" y2="415.8812960000001"/>
+  <line opacity="0.08190868242483747" stroke="#0000ff" x1="82.92433336086202" x2="37.924333360862015" y1="117.88129600000003" y2="117.88129600000003"/>
+  <line opacity="0.08190868242483747" stroke="#0000ff" x1="127.92433336086202" x2="82.92433336086202" y1="117.88129600000003" y2="117.88129600000003"/>
+  <line opacity="0.4702132174037356" stroke="#0000ff" x1="82.92433336086202" x2="37.924333360862015" y1="-2.2633099661106828e-07" y2="117.88129600000003"/>
+  <line stroke="#000000" x1="18.56479320700301" x2="13.244563283932509" y1="93.12697584332294" y2="100.82524285309951"/>
+  <line stroke="#000000" x1="82.92433336086201" x2="18.56479320700301" y1="-2.2633093976764942e-07" y2="93.12697584332294"/>
+  <line opacity="1.0" stroke="#0000ff" x1="37.92433336086201" x2="13.244563283932509" y1="117.88129600000006" y2="100.82524285309951"/>
+  <line opacity="1.0" stroke="#ff0000" x1="37.924333360862015" x2="7.924333360862009" y1="117.88129600000003" y2="108.52350986287608"/>
+  <line stroke="#000000" x1="13.244563283932523" x2="7.924333360862009" y1="100.82524285309951" y2="108.52350986287608"/>
+  <line opacity="0.9666666666666667" stroke="#ff0000" x1="7.924333360862009" x2="7.924333360862009" y1="117.88129600000003" y2="108.52350986287608"/>
+  <line opacity="0.11967208843632464" stroke="#0000ff" x1="37.924333360862015" x2="7.924333360862009" y1="117.88129600000003" y2="117.88129600000003"/>
+  <line stroke="#000000" x1="4.8050713151540245" x2="7.924333360862009" y1="117.88129600000003" y2="117.88129600000003"/>
+  <line stroke="#000000" x1="4.8050713151540245" x2="4.8050713151540245" y1="108.52350986287608" y2="117.88129600000003"/>
+  <line stroke="#000000" x1="7.924333360862009" x2="4.8050713151540245" y1="108.52350986287608" y2="108.52350986287608"/>
+  <line stroke="#000000" x1="7.924333360861966" x2="7.924333360862009" y1="415.88129600000013" y2="117.88129600000003"/>
+  <line opacity="0.32029198055865543" stroke="#0000ff" x1="7.924333360861966" x2="37.924333360861965" y1="415.88129600000013" y2="415.88129600000013"/>
+  <line opacity="1.0" stroke="#ff0000" x1="7.924333360861966" x2="37.924333360861965" y1="439.65429608258603" y2="415.88129600000013"/>
+  <line opacity="0.9666666666666667" stroke="#ff0000" x1="7.924333360861966" x2="7.924333360861966" y1="439.65429608258603" y2="415.88129600000013"/>
+  <line stroke="#000000" x1="7.924333360861952" x2="31.068177965444168" y1="439.65429608258603" y2="445.08734217530235"/>
+  <line opacity="1.0" stroke="#0000ff" x1="31.068177965444168" x2="37.924333360861965" y1="445.08734217530235" y2="415.88129600000013"/>
+  <line opacity="0.2901666240598844" stroke="#0000ff" x1="82.92433336086197" x2="37.924333360861965" y1="457.26063867240134" y2="415.88129600000013"/>
+  <line stroke="#000000" x1="54.21202257002637" x2="82.92433336086197" y1="450.5203882680186" y2="457.26063867240134"/>
+  <line stroke="#000000" x1="31.068177965444168" x2="54.21202257002637" y1="445.08734217530235" y2="450.5203882680186"/>
+  <line opacity="0.2581600039688101" stroke="#0000ff" x1="37.924333360861965" x2="82.92433336086197" y1="415.88129600000013" y2="415.88129600000013"/>
+  <line opacity="0.2581600039688101" stroke="#0000ff" x1="82.92433336086197" x2="127.92433336086198" y1="415.88129600000013" y2="415.88129600000013"/>
+  <line opacity="0.2901666240598844" stroke="#0000ff" x1="82.92433336086195" x2="127.92433336086198" y1="457.2606386724013" y2="415.88129600000013"/>
+  <line stroke="#000000" x1="111.63664415169755" x2="134.78048875627974" y1="450.5203882680186" y2="445.08734217530235"/>
+  <line stroke="#000000" x1="82.92433336086197" x2="111.63664415169755" y1="457.2606386724013" y2="450.5203882680186"/>
+  <line opacity="1.0" stroke="#0000ff" x1="127.92433336086198" x2="134.78048875627974" y1="415.88129600000013" y2="445.08734217530235"/>
+  <line opacity="1.0" stroke="#ff0000" x1="127.92433336086198" x2="157.924333360862" y1="415.88129600000013" y2="439.65429608258603"/>
+  <line stroke="#000000" x1="134.78048875627974" x2="157.924333360862" y1="445.08734217530235" y2="439.65429608258603"/>
+  <line opacity="0.9666666666666667" stroke="#ff0000" x1="157.924333360862" x2="157.924333360862" y1="415.88129600000013" y2="439.65429608258603"/>
+  <line opacity="0.32029198055865543" stroke="#0000ff" x1="127.92433336086197" x2="157.924333360862" y1="415.88129600000013" y2="415.88129600000013"/>
+  <line stroke="#000000" x1="165.84866672172393" x2="157.924333360862" y1="415.88129600000013" y2="415.88129600000013"/>
+  <line stroke="#000000" x1="165.84866672172393" x2="165.84866672172393" y1="439.65429608258603" y2="415.88129600000013"/>
+  <line stroke="#000000" x1="157.924333360862" x2="165.84866672172393" y1="439.65429608258603" y2="439.65429608258603"/>
+  <line stroke="#000000" x1="157.92433336086205" x2="157.924333360862" y1="117.88129600000009" y2="415.88129600000013"/>
+  <line opacity="0.11967208843632464" stroke="#0000ff" x1="157.92433336086205" x2="127.92433336086204" y1="117.88129600000009" y2="117.88129600000009"/>
+  <line opacity="1.0" stroke="#ff0000" x1="157.92433336086205" x2="127.92433336086204" y1="108.52350986287614" y2="117.88129600000009"/>
+  <line opacity="0.9666666666666667" stroke="#ff0000" x1="157.92433336086205" x2="157.92433336086205" y1="108.52350986287614" y2="117.88129600000009"/>
+  <line stroke="#000000" x1="157.92433336086205" x2="152.60410343779157" y1="108.52350986287614" y2="100.82524285309957"/>
+  <line opacity="1.0" stroke="#0000ff" x1="152.60410343779157" x2="127.92433336086204" y1="100.82524285309957" y2="117.88129600000009"/>
+  <line opacity="0.4702132174037356" stroke="#0000ff" x1="82.9243333608621" x2="127.92433336086204" y1="-2.2633093976764942e-07" y2="117.88129600000009"/>
+  <line stroke="#000000" x1="147.28387351472105" x2="82.9243333608621" y1="93.126975843323" y2="-2.2633093976764942e-07"/>
+  <line stroke="#000000" x1="152.60410343779157" x2="147.28387351472105" y1="100.82524285309957" y2="93.126975843323"/>
+  <line stroke="#000000" x1="161.04359540657003" x2="157.92433336086205" y1="108.52350986287614" y2="108.52350986287614"/>
+  <line stroke="#000000" x1="161.04359540657003" x2="161.04359540657003" y1="117.88129600000009" y2="108.52350986287614"/>
+  <line stroke="#000000" x1="157.92433336086205" x2="161.04359540657003" y1="117.88129600000009" y2="117.88129600000009"/>
+  <line stroke="#000000" x1="157.924333360862" x2="157.924333360862" y1="345.88129600000013" y2="345.88129600000013"/>
+  <line stroke="#000000" x1="157.92433336086205" x2="157.92433336086205" y1="117.88129600000009" y2="117.88129600000009"/>
+  <line stroke="#000000" x1="157.92433336086205" x2="157.92433336086205" y1="178.8812960000001" y2="117.88129600000009"/>
+  <line stroke="#000000" x1="157.92433336086205" x2="157.92433336086205" y1="188.88129600000008" y2="178.8812960000001"/>
+  <line stroke="#000000" x1="157.92433336086202" x2="157.92433336086205" y1="285.88129600000013" y2="212.8812960000001"/>
+  <line stroke="#000000" x1="157.92433336086202" x2="157.92433336086202" y1="285.88129600000013" y2="285.88129600000013"/>
+  <line stroke="#000000" x1="157.92433336086205" x2="157.92433336086205" y1="117.88129600000009" y2="117.88129600000009"/>
+  <line stroke="#000000" x1="191.92433336086205" x2="157.92433336086205" y1="188.88129600000008" y2="188.88129600000008"/>
+  <line opacity="0.5" stroke="#0000ff" x1="157.92433336086205" x2="191.92433336086205" y1="212.8812960000001" y2="212.8812960000001"/>
+  <line stroke="#000000" x1="227.92433336086205" x2="191.92433336086205" y1="188.8812960000001" y2="188.8812960000001"/>
+  <line opacity="0.5" stroke="#ff0000" x1="227.92433336086205" x2="227.92433336086205" y1="188.8812960000001" y2="212.88129600000013"/>
+  <line stroke="#000000" x1="191.92433336086205" x2="227.92433336086205" y1="212.88129600000013" y2="212.88129600000013"/>
+  <line stroke="#000000" x1="227.92433336086205" x2="272.924333360862" y1="212.88129600000013" y2="212.88129600000016"/>
+  <line stroke="#000000" x1="272.924333360862" x2="227.92433336086205" y1="188.88129600000013" y2="188.8812960000001"/>
+  <line stroke="#000000" x1="272.924333360862" x2="272.924333360862" y1="212.88129600000016" y2="188.88129600000013"/>
+  <line stroke="#000000" x1="157.92433336086205" x2="157.92433336086205" y1="212.8812960000001" y2="232.8812960000001"/>
+  <line stroke="#000000" x1="191.92433336086205" x2="191.92433336086205" y1="232.8812960000001" y2="212.8812960000001"/>
+  <line opacity="0.5" stroke="#0000ff" x1="157.92433336086205" x2="191.92433336086205" y1="232.8812960000001" y2="232.8812960000001"/>
+  <line stroke="#000000" x1="157.92433336086205" x2="157.92433336086205" y1="232.8812960000001" y2="256.88129600000013"/>
+  <line stroke="#000000" x1="191.92433336086205" x2="191.92433336086205" y1="256.88129600000013" y2="232.8812960000001"/>
+  <line opacity="0.5" stroke="#0000ff" x1="157.92433336086205" x2="191.92433336086205" y1="256.88129600000013" y2="256.88129600000013"/>
+  <line stroke="#000000" x1="157.92433336086205" x2="157.92433336086205" y1="256.88129600000013" y2="276.88129600000013"/>
+  <line stroke="#000000" x1="191.92433336086205" x2="191.92433336086205" y1="276.88129600000013" y2="256.88129600000013"/>
+  <line opacity="0.5" stroke="#0000ff" x1="191.92433336086205" x2="157.92433336086205" y1="276.88129600000013" y2="276.88129600000013"/>
+  <line stroke="#000000" x1="191.92433336086205" x2="191.92433336086205" y1="286.88129600000013" y2="276.88129600000013"/>
+  <line stroke="#000000" x1="157.92433336086205" x2="191.92433336086205" y1="286.88129600000013" y2="286.88129600000013"/>
+  <line stroke="#000000" x1="157.92433336086205" x2="157.92433336086205" y1="276.88129600000013" y2="286.88129600000013"/>
+  <line stroke="#000000" x1="157.924333360862" x2="219.57861139572347" y1="345.88129600000013" y2="345.8812960000002"/>
+  <line stroke="#000000" x1="219.57861139572347" x2="157.92433336086202" y1="285.88129600000013" y2="285.88129600000013"/>
+  <line opacity="0.25" stroke="#ff0000" x1="219.57861139572347" x2="219.57861139572347" y1="285.88129600000013" y2="345.8812960000002"/>
+  <line stroke="#000000" x1="246.5786113957235" x2="219.57861139572347" y1="285.8812960000002" y2="285.88129600000013"/>
+  <line opacity="0.25" stroke="#ff0000" x1="246.5786113957235" x2="246.5786113957235" y1="345.8812960000002" y2="285.8812960000002"/>
+  <line opacity="0.5" stroke="#0000ff" x1="219.57861139572347" x2="246.5786113957235" y1="345.8812960000002" y2="345.8812960000002"/>
+  <line stroke="#000000" x1="308.2328894305849" x2="246.5786113957235" y1="285.8812960000002" y2="285.8812960000002"/>
+  <line stroke="#000000" x1="308.2328894305849" x2="308.2328894305849" y1="345.8812960000002" y2="285.8812960000002"/>
+  <line stroke="#000000" x1="246.5786113957234" x2="308.2328894305849" y1="345.8812960000002" y2="345.8812960000002"/>
+  <line stroke="#000000" x1="219.57861139572339" x2="219.57861139572339" y1="345.8812960000002" y2="362.8812960000002"/>
+  <line stroke="#000000" x1="246.5786113957234" x2="246.5786113957234" y1="362.8812960000002" y2="345.8812960000002"/>
+  <line opacity="0.5" stroke="#0000ff" x1="219.57861139572339" x2="246.5786113957234" y1="362.8812960000002" y2="362.8812960000002"/>
+  <line stroke="#000000" x1="219.57861139572339" x2="219.57861139572339" y1="362.8812960000002" y2="422.8812960000002"/>
+  <line stroke="#000000" x1="246.5786113957234" x2="246.5786113957234" y1="422.8812960000002" y2="362.8812960000002"/>
+  <line opacity="0.5" stroke="#0000ff" x1="219.57861139572339" x2="246.5786113957234" y1="422.8812960000002" y2="422.8812960000002"/>
+  <line stroke="#000000" x1="219.57861139572339" x2="219.57861139572339" y1="422.8812960000002" y2="439.8812960000002"/>
+  <line stroke="#000000" x1="246.5786113957234" x2="246.5786113957234" y1="439.8812960000002" y2="422.8812960000002"/>
+  <line opacity="0.5" stroke="#0000ff" x1="246.5786113957234" x2="219.57861139572339" y1="439.8812960000002" y2="439.8812960000002"/>
+  <line stroke="#000000" x1="246.5786113957234" x2="246.5786113957234" y1="449.8812960000002" y2="439.8812960000002"/>
+  <line stroke="#000000" x1="219.57861139572339" x2="246.5786113957234" y1="449.8812960000002" y2="449.8812960000002"/>
+  <line stroke="#000000" x1="219.57861139572339" x2="219.57861139572339" y1="439.8812960000002" y2="449.8812960000002"/>
+  <line stroke="#000000" x1="157.92433336086205" x2="157.92433336086205" y1="117.88129600000009" y2="117.88129600000009"/>
+  <line stroke="#000000" x1="157.92433336086205" x2="157.92433336086205" y1="231.8812960000001" y2="117.88129600000009"/>
+  <line stroke="#000000" x1="157.924333360862" x2="157.92433336086202" y1="415.88129600000013" y2="301.88129600000013"/>
+  <line stroke="#000000" x1="157.924333360862" x2="157.924333360862" y1="415.88129600000013" y2="415.88129600000013"/>
+  <line opacity="0.5" stroke="#0000ff" x1="187.924333360862" x2="157.924333360862" y1="301.88129600000013" y2="301.88129600000013"/>
+  <line stroke="#000000" x1="187.92433336086205" x2="157.92433336086205" y1="231.8812960000001" y2="231.8812960000001"/>
+  <line opacity="0.5" stroke="#0000ff" x1="187.924333360862" x2="187.92433336086205" y1="301.88129600000013" y2="231.8812960000001"/>
+  <line stroke="#000000" x1="187.924333360862" x2="187.924333360862" y1="311.8812960000001" y2="301.88129600000013"/>
+  <line stroke="#000000" x1="157.924333360862" x2="187.924333360862" y1="311.8812960000001" y2="311.8812960000001"/>
+  <line stroke="#000000" x1="157.924333360862" x2="157.924333360862" y1="301.88129600000013" y2="311.8812960000001"/>
+  <line opacity="0.5" stroke="#0000ff" x1="277.924333360862" x2="187.92433336086205" y1="301.88129600000013" y2="301.88129600000013"/>
+  <line opacity="0.5" stroke="#0000ff" x1="187.92433336086205" x2="277.924333360862" y1="231.8812960000001" y2="231.88129600000016"/>
+  <line opacity="0.5" stroke="#0000ff" x1="277.924333360862" x2="277.924333360862" y1="231.88129600000016" y2="301.88129600000013"/>
+  <line stroke="#000000" x1="187.924333360862" x2="277.92433336086197" y1="331.88129600000013" y2="331.8812960000002"/>
+  <line stroke="#000000" x1="187.92433336086202" x2="187.924333360862" y1="301.88129600000013" y2="331.88129600000013"/>
+  <line stroke="#000000" x1="277.92433336086197" x2="277.92433336086197" y1="331.8812960000002" y2="301.88129600000013"/>
+  <line opacity="0.5" stroke="#0000ff" x1="187.92433336086205" x2="187.92433336086205" y1="231.8812960000001" y2="201.8812960000001"/>
+  <line stroke="#000000" x1="277.924333360862" x2="187.92433336086205" y1="201.88129600000016" y2="201.8812960000001"/>
+  <line stroke="#000000" x1="277.924333360862" x2="277.924333360862" y1="231.88129600000016" y2="201.88129600000016"/>
+  <line stroke="#000000" x1="177.92433336086205" x2="187.92433336086205" y1="231.8812960000001" y2="231.8812960000001"/>
+  <line stroke="#000000" x1="177.92433336086205" x2="177.92433336086205" y1="201.8812960000001" y2="231.8812960000001"/>
+  <line stroke="#000000" x1="187.92433336086205" x2="177.92433336086205" y1="201.8812960000001" y2="201.8812960000001"/>
+  <line opacity="0.5" stroke="#0000ff" x1="307.9243333608621" x2="277.924333360862" y1="301.88129600000013" y2="301.88129600000013"/>
+  <line opacity="0.5" stroke="#0000ff" x1="277.924333360862" x2="307.9243333608621" y1="231.88129600000016" y2="231.88129600000016"/>
+  <line stroke="#000000" x1="307.924333360862" x2="307.924333360862" y1="311.88129600000013" y2="301.88129600000013"/>
+  <line stroke="#000000" x1="277.92433336086197" x2="307.924333360862" y1="311.88129600000013" y2="311.88129600000013"/>
+  <line stroke="#000000" x1="277.92433336086197" x2="277.92433336086197" y1="301.88129600000013" y2="311.88129600000013"/>
+  <line stroke="#000000" x1="277.924333360862" x2="277.924333360862" y1="221.88129600000016" y2="231.88129600000016"/>
+  <line stroke="#000000" x1="307.9243333608621" x2="277.924333360862" y1="221.88129600000016" y2="221.88129600000016"/>
+  <line stroke="#000000" x1="307.9243333608621" x2="307.9243333608621" y1="231.88129600000016" y2="221.88129600000016"/>
+  <line stroke="#000000" x1="307.924333360862" x2="307.924333360862" y1="415.8812960000002" y2="415.8812960000002"/>
+  <line stroke="#000000" x1="307.924333360862" x2="307.924333360862" y1="301.88129600000013" y2="415.8812960000002"/>
+  <line stroke="#000000" x1="307.9243333608621" x2="307.9243333608621" y1="117.88129600000015" y2="231.88129600000016"/>
+  <line stroke="#000000" x1="307.9243333608621" x2="307.9243333608621" y1="117.88129600000015" y2="117.88129600000015"/>
+  <line stroke="#000000" x1="307.9243333608621" x2="307.9243333608621" y1="187.88129600000016" y2="187.88129600000016"/>
+  <line stroke="#000000" x1="307.924333360862" x2="307.924333360862" y1="415.8812960000002" y2="415.8812960000002"/>
+  <line stroke="#000000" x1="297.924333360862" x2="307.924333360862" y1="415.8812960000002" y2="415.8812960000002"/>
+  <line stroke="#000000" x1="297.924333360862" x2="297.924333360862" y1="355.8812960000002" y2="415.8812960000002"/>
+  <line stroke="#000000" x1="307.924333360862" x2="297.924333360862" y1="355.8812960000002" y2="355.8812960000002"/>
+  <line stroke="#000000" x1="307.9243333608621" x2="307.924333360862" y1="282.8812960000002" y2="355.8812960000002"/>
+  <line stroke="#000000" x1="307.9243333608621" x2="307.9243333608621" y1="248.88129600000016" y2="258.8812960000002"/>
+  <line stroke="#000000" x1="307.9243333608621" x2="307.9243333608621" y1="187.88129600000016" y2="187.88129600000016"/>
+  <line stroke="#000000" x1="307.924333360862" x2="307.924333360862" y1="355.8812960000002" y2="355.8812960000002"/>
+  <line stroke="#000000" x1="307.9243333608621" x2="273.9243333608621" y1="258.8812960000002" y2="258.8812960000002"/>
+  <line opacity="0.5" stroke="#0000ff" x1="273.9243333608621" x2="307.9243333608621" y1="282.8812960000002" y2="282.8812960000002"/>
+  <line stroke="#000000" x1="237.92433336086205" x2="273.9243333608621" y1="282.8812960000002" y2="282.8812960000002"/>
+  <line opacity="0.5" stroke="#ff0000" x1="237.92433336086205" x2="237.92433336086205" y1="282.8812960000002" y2="258.8812960000002"/>
+  <line stroke="#000000" x1="273.9243333608621" x2="237.92433336086205" y1="258.8812960000002" y2="258.8812960000002"/>
+  <line stroke="#000000" x1="237.92433336086205" x2="192.92433336086202" y1="258.8812960000002" y2="258.88129600000013"/>
+  <line stroke="#000000" x1="192.92433336086202" x2="237.92433336086205" y1="282.88129600000013" y2="282.8812960000002"/>
+  <line stroke="#000000" x1="187.92433336086205" x2="192.92433336086202" y1="282.88129600000013" y2="282.88129600000013"/>
+  <line stroke="#000000" x1="187.92433336086205" x2="187.92433336086205" y1="258.88129600000013" y2="282.88129600000013"/>
+  <line stroke="#000000" x1="192.92433336086202" x2="187.92433336086205" y1="258.88129600000013" y2="258.88129600000013"/>
+  <line stroke="#000000" x1="273.9243333608621" x2="273.9243333608621" y1="282.8812960000002" y2="302.88129600000013"/>
+  <line stroke="#000000" x1="307.9243333608621" x2="307.9243333608621" y1="302.88129600000013" y2="282.8812960000002"/>
+  <line opacity="0.5" stroke="#0000ff" x1="273.9243333608621" x2="307.9243333608621" y1="302.88129600000013" y2="302.88129600000013"/>
+  <line stroke="#000000" x1="273.9243333608621" x2="273.9243333608621" y1="302.88129600000013" y2="326.8812960000002"/>
+  <line stroke="#000000" x1="307.9243333608621" x2="307.9243333608621" y1="326.8812960000002" y2="302.88129600000013"/>
+  <line opacity="0.5" stroke="#0000ff" x1="273.9243333608621" x2="307.9243333608621" y1="326.8812960000002" y2="326.8812960000002"/>
+  <line stroke="#000000" x1="273.9243333608621" x2="273.9243333608621" y1="326.8812960000002" y2="346.8812960000002"/>
+  <line stroke="#000000" x1="307.9243333608621" x2="307.9243333608621" y1="346.8812960000002" y2="326.8812960000002"/>
+  <line opacity="0.5" stroke="#0000ff" x1="307.9243333608621" x2="273.9243333608621" y1="346.8812960000002" y2="346.8812960000002"/>
+  <line stroke="#000000" x1="307.9243333608621" x2="307.9243333608621" y1="356.88129600000013" y2="346.8812960000002"/>
+  <line stroke="#000000" x1="273.9243333608621" x2="307.9243333608621" y1="356.88129600000013" y2="356.88129600000013"/>
+  <line stroke="#000000" x1="273.9243333608621" x2="273.9243333608621" y1="346.8812960000002" y2="356.88129600000013"/>
+  <line opacity="0.25" stroke="#0000ff" x1="271.78571136167676" x2="271.7857113616768" y1="248.88129600000016" y2="187.88129600000016"/>
+  <line stroke="#000000" x1="307.9243333608621" x2="271.7857113616768" y1="187.88129600000016" y2="187.88129600000016"/>
+  <line stroke="#000000" x1="271.78571136167676" x2="307.9243333608621" y1="248.88129600000016" y2="248.88129600000016"/>
+  <line opacity="0.25" stroke="#0000ff" x1="247.78571136167673" x2="247.78571136167673" y1="187.88129600000016" y2="248.88129600000013"/>
+  <line opacity="0.5" stroke="#0000ff" x1="247.78571136167673" x2="271.78571136167676" y1="187.88129600000016" y2="187.88129600000016"/>
+  <line stroke="#000000" x1="211.64708936249147" x2="247.78571136167673" y1="248.88129600000013" y2="248.88129600000013"/>
+  <line stroke="#000000" x1="247.7857113616768" x2="211.64708936249147" y1="187.88129600000013" y2="187.88129600000013"/>
+  <line stroke="#000000" x1="201.64708936249147" x2="211.64708936249147" y1="248.8812960000001" y2="248.8812960000001"/>
+  <line stroke="#000000" x1="201.64708936249147" x2="201.64708936249147" y1="187.8812960000001" y2="248.8812960000001"/>
+  <line stroke="#000000" x1="211.64708936249147" x2="201.64708936249147" y1="187.8812960000001" y2="187.8812960000001"/>
+  <line stroke="#000000" x1="247.7857113616768" x2="247.7857113616768" y1="177.8812960000001" y2="187.88129600000013"/>
+  <line stroke="#000000" x1="271.7857113616768" x2="247.7857113616768" y1="177.88129600000016" y2="177.8812960000001"/>
+  <line stroke="#000000" x1="271.7857113616768" x2="271.7857113616768" y1="187.88129600000016" y2="177.88129600000016"/>
+  <line stroke="#000000" x1="271.78571136167676" x2="271.78571136167676" y1="258.8812960000002" y2="248.88129600000016"/>
+  <line stroke="#000000" x1="247.78571136167673" x2="271.78571136167676" y1="258.8812960000002" y2="258.8812960000002"/>
+  <line stroke="#000000" x1="247.78571136167673" x2="247.78571136167673" y1="248.88129600000013" y2="258.8812960000002"/>
+  <line stroke="#000000" x1="0.0" x2="7.924333360861966" y1="439.65429608258603" y2="439.65429608258603"/>
+  <line stroke="#000000" x1="0.0" x2="0.0" y1="415.88129600000013" y2="439.65429608258603"/>
+  <line stroke="#000000" x1="7.924333360861966" x2="0.0" y1="415.88129600000013" y2="415.88129600000013"/>
+  <line stroke="#888888" x1="19.063748511955573" x2="17.006070985150405" y1="96.95959135293252" y2="99.93700985747354"/>
+  <line stroke="#888888" x1="17.006070985150405" x2="16.594741483868248" y1="99.93700985747354" y2="99.6527423050252"/>
+  <line stroke="#888888" x1="16.594741483868248" x2="18.652419010673427" y1="99.6527423050252" y2="96.67532380048418"/>
+  <line stroke="#888888" x1="18.652419010673427" x2="19.063748511955573" y1="96.67532380048418" y2="96.95959135293252"/>
+  <line stroke="#888888" x1="5.584886826581027" x2="7.14451784943502" y1="111.64277190858407" y2="111.64277190858407"/>
+  <line stroke="#888888" x1="7.14451784943502" x2="7.14451784943502" y1="111.64277190858407" y2="114.76203395429205"/>
+  <line stroke="#888888" x1="7.14451784943502" x2="5.584886826581027" y1="114.76203395429205" y2="114.76203395429205"/>
+  <line stroke="#888888" x1="39.954805266984934" x2="48.156187571434046" y1="440.8118780419729" y2="442.73716266280195"/>
+  <line stroke="#888888" x1="48.156187571434046" x2="48.04191831484375" y1="442.73716266280195" y2="443.223930099057"/>
+  <line stroke="#888888" x1="48.04191831484375" x2="39.84053601039464" y1="443.223930099057" y2="441.29864547822785"/>
+  <line stroke="#888888" x1="39.84053601039464" x2="39.954805266984934" y1="441.29864547822785" y2="440.8118780419729"/>
+  <line stroke="#888888" x1="117.69247915028988" x2="125.893861454739" y1="442.73716266280195" y2="440.8118780419729"/>
+  <line stroke="#888888" x1="125.893861454739" x2="126.00813071132929" y1="440.8118780419729" y2="441.29864547822785"/>
+  <line stroke="#888888" x1="126.00813071132929" x2="117.80674840688017" y1="441.29864547822785" y2="443.223930099057"/>
+  <line stroke="#888888" x1="117.80674840688017" x2="117.69247915028988" y1="443.223930099057" y2="442.73716266280195"/>
+  <line stroke="#888888" x1="163.86758338150847" x2="159.90541670107746" y1="431.72996272172406" y2="431.72996272172406"/>
+  <line stroke="#888888" x1="159.90541670107746" x2="159.90541670107746" y1="431.72996272172406" y2="423.8056293608621"/>
+  <line stroke="#888888" x1="159.90541670107746" x2="163.86758338150847" y1="423.8056293608621" y2="423.8056293608621"/>
+  <line stroke="#888888" x1="148.84259573657366" x2="146.78491820976848" y1="99.9370098574736" y2="96.95959135293258"/>
+  <line stroke="#888888" x1="146.78491820976848" x2="147.19624771105066" y1="96.95959135293258" y2="96.67532380048424"/>
+  <line stroke="#888888" x1="147.19624771105066" x2="149.25392523785584" y1="96.67532380048424" y2="99.65274230502526"/>
+  <line stroke="#888888" x1="149.25392523785584" x2="148.84259573657366" y1="99.65274230502526" y2="99.9370098574736"/>
+  <line stroke="#888888" x1="160.26377989514305" x2="158.70414887228904" y1="114.76203395429211" y2="114.76203395429211"/>
+  <line stroke="#888888" x1="158.70414887228904" x2="158.70414887228904" y1="114.76203395429211" y2="111.64277190858412"/>
+  <line stroke="#888888" x1="158.70414887228904" x2="160.26377989514305" y1="111.64277190858412" y2="111.64277190858412"/>
+  <line stroke="#888888" x1="150.17433336086205" x2="150.17433336086205" y1="140.3131141818183" y2="128.7222050909092"/>
+  <line stroke="#888888" x1="150.17433336086205" x2="150.67433336086205" y1="128.7222050909092" y2="128.7222050909092"/>
+  <line stroke="#888888" x1="150.67433336086205" x2="150.67433336086205" y1="128.7222050909092" y2="140.3131141818183"/>
+  <line stroke="#888888" x1="150.67433336086205" x2="150.17433336086205" y1="140.3131141818183" y2="140.3131141818183"/>
+  <line stroke="#888888" x1="150.17433336086205" x2="150.17433336086205" y1="168.040386909091" y2="156.44947781818192"/>
+  <line stroke="#888888" x1="150.17433336086205" x2="150.67433336086205" y1="156.44947781818192" y2="156.44947781818192"/>
+  <line stroke="#888888" x1="150.67433336086205" x2="150.67433336086205" y1="156.44947781818192" y2="168.040386909091"/>
+  <line stroke="#888888" x1="150.67433336086205" x2="150.17433336086205" y1="168.040386909091" y2="168.040386909091"/>
+  <line stroke="#888888" x1="180.84100002752874" x2="169.0076666941954" y1="196.6312960000001" y2="196.6312960000001"/>
+  <line stroke="#888888" x1="169.0076666941954" x2="169.0076666941954" y1="196.6312960000001" y2="196.13129600000008"/>
+  <line stroke="#888888" x1="169.0076666941954" x2="180.84100002752874" y1="196.13129600000008" y2="196.13129600000008"/>
+  <line stroke="#888888" x1="180.84100002752874" x2="180.84100002752874" y1="196.13129600000008" y2="196.6312960000001"/>
+  <line stroke="#888888" x1="268.924333360862" x2="268.924333360862" y1="205.13129600000016" y2="196.63129600000016"/>
+  <line stroke="#888888" x1="268.924333360862" x2="269.4243333608621" y1="196.63129600000016" y2="196.63129600000016"/>
+  <line stroke="#888888" x1="269.4243333608621" x2="269.4243333608621" y1="196.63129600000016" y2="205.13129600000016"/>
+  <line stroke="#888888" x1="269.4243333608621" x2="268.924333360862" y1="205.13129600000016" y2="205.13129600000016"/>
+  <line stroke="#888888" x1="168.92433336086205" x2="168.92433336086205" y1="231.8812960000001" y2="227.88129600000008"/>
+  <line stroke="#888888" x1="168.92433336086205" x2="180.92433336086205" y1="227.88129600000008" y2="227.88129600000008"/>
+  <line stroke="#888888" x1="180.92433336086205" x2="180.92433336086205" y1="227.88129600000008" y2="231.8812960000001"/>
+  <line stroke="#888888" x1="180.92433336086205" x2="168.92433336086205" y1="231.8812960000001" y2="231.8812960000001"/>
+  <line stroke="#888888" x1="170.42433336086202" x2="170.42433336086202" y1="219.8812960000001" y2="215.8812960000001"/>
+  <line stroke="#888888" x1="170.42433336086202" x2="179.42433336086202" y1="215.8812960000001" y2="215.8812960000001"/>
+  <line stroke="#888888" x1="179.42433336086202" x2="179.42433336086202" y1="215.8812960000001" y2="219.8812960000001"/>
+  <line stroke="#888888" x1="179.42433336086202" x2="170.42433336086202" y1="219.8812960000001" y2="219.8812960000001"/>
+  <line stroke="#888888" x1="168.92433336086205" x2="168.92433336086205" y1="256.38129600000013" y2="233.3812960000001"/>
+  <line stroke="#888888" x1="168.92433336086205" x2="180.92433336086205" y1="233.3812960000001" y2="233.3812960000001"/>
+  <line stroke="#888888" x1="180.92433336086205" x2="180.92433336086205" y1="233.3812960000001" y2="256.38129600000013"/>
+  <line stroke="#888888" x1="180.92433336086205" x2="168.92433336086205" y1="256.38129600000013" y2="256.38129600000013"/>
+  <line stroke="#888888" x1="168.92433336086205" x2="168.92433336086205" y1="261.88129600000013" y2="257.8812960000001"/>
+  <line stroke="#888888" x1="168.92433336086205" x2="180.92433336086205" y1="257.8812960000001" y2="257.8812960000001"/>
+  <line stroke="#888888" x1="180.92433336086205" x2="180.92433336086205" y1="257.8812960000001" y2="261.88129600000013"/>
+  <line stroke="#888888" x1="180.92433336086205" x2="168.92433336086205" y1="261.88129600000013" y2="261.88129600000013"/>
+  <line stroke="#888888" x1="169.25766669419536" x2="169.25766669419536" y1="284.3812960000001" y2="279.3812960000001"/>
+  <line stroke="#888888" x1="169.25766669419536" x2="180.59100002752868" y1="279.3812960000001" y2="279.3812960000001"/>
+  <line stroke="#888888" x1="180.59100002752868" x2="180.59100002752868" y1="279.3812960000001" y2="284.3812960000001"/>
+  <line stroke="#888888" x1="224.07861139572347" x2="224.07861139572347" y1="345.3812960000002" y2="342.3812960000002"/>
+  <line stroke="#888888" x1="224.07861139572347" x2="242.07861139572344" y1="342.3812960000002" y2="342.3812960000002"/>
+  <line stroke="#888888" x1="242.07861139572344" x2="242.07861139572344" y1="342.3812960000002" y2="345.3812960000002"/>
+  <line stroke="#888888" x1="242.07861139572344" x2="224.07861139572347" y1="345.3812960000002" y2="345.3812960000002"/>
+  <line stroke="#888888" x1="237.82861139572347" x2="228.32861139572347" y1="293.63129600000013" y2="293.63129600000013"/>
+  <line stroke="#888888" x1="228.32861139572347" x2="228.32861139572347" y1="293.63129600000013" y2="293.13129600000013"/>
+  <line stroke="#888888" x1="228.32861139572347" x2="237.82861139572347" y1="293.13129600000013" y2="293.13129600000013"/>
+  <line stroke="#888888" x1="237.82861139572347" x2="237.82861139572347" y1="293.13129600000013" y2="293.63129600000013"/>
+  <line stroke="#888888" x1="300.4828894305849" x2="300.4828894305849" y1="326.13129600000013" y2="305.6312960000002"/>
+  <line stroke="#888888" x1="300.4828894305849" x2="300.9828894305849" y1="305.6312960000002" y2="305.6312960000002"/>
+  <line stroke="#888888" x1="300.9828894305849" x2="300.9828894305849" y1="305.6312960000002" y2="326.13129600000013"/>
+  <line stroke="#888888" x1="300.9828894305849" x2="300.4828894305849" y1="326.13129600000013" y2="326.13129600000013"/>
+  <line stroke="#888888" x1="224.07861139572339" x2="224.07861139572339" y1="348.8812960000002" y2="345.8812960000002"/>
+  <line stroke="#888888" x1="224.07861139572339" x2="242.0786113957234" y1="345.8812960000002" y2="345.8812960000002"/>
+  <line stroke="#888888" x1="242.0786113957234" x2="242.0786113957234" y1="345.8812960000002" y2="348.8812960000002"/>
+  <line stroke="#888888" x1="242.0786113957234" x2="224.07861139572339" y1="348.8812960000002" y2="348.8812960000002"/>
+  <line stroke="#888888" x1="228.5786113957234" x2="228.5786113957234" y1="447.3812960000002" y2="442.3812960000002"/>
+  <line stroke="#888888" x1="228.5786113957234" x2="237.5786113957234" y1="442.3812960000002" y2="442.3812960000002"/>
+  <line stroke="#888888" x1="237.5786113957234" x2="237.5786113957234" y1="442.3812960000002" y2="447.3812960000002"/>
+  <line stroke="#888888" x1="178.17433336086202" x2="167.674333360862" y1="239.6312960000001" y2="239.6312960000001"/>
+  <line stroke="#888888" x1="167.674333360862" x2="167.674333360862" y1="239.6312960000001" y2="239.13129600000013"/>
+  <line stroke="#888888" x1="167.674333360862" x2="178.17433336086202" y1="239.13129600000013" y2="239.13129600000013"/>
+  <line stroke="#888888" x1="178.17433336086202" x2="178.17433336086202" y1="239.13129600000013" y2="239.6312960000001"/>
+  <line stroke="#888888" x1="167.92433336086197" x2="167.92433336086197" y1="309.38129600000013" y2="304.38129600000013"/>
+  <line stroke="#888888" x1="167.92433336086197" x2="177.924333360862" y1="304.38129600000013" y2="304.38129600000013"/>
+  <line stroke="#888888" x1="177.924333360862" x2="177.924333360862" y1="304.38129600000013" y2="309.38129600000013"/>
+  <line stroke="#888888" x1="195.674333360862" x2="195.674333360862" y1="311.6312960000001" y2="322.13129600000013"/>
+  <line stroke="#888888" x1="195.674333360862" x2="195.17433336086197" y1="322.13129600000013" y2="322.13129600000013"/>
+  <line stroke="#888888" x1="195.17433336086197" x2="195.17433336086197" y1="322.13129600000013" y2="311.6312960000001"/>
+  <line stroke="#888888" x1="195.17433336086197" x2="195.674333360862" y1="311.6312960000001" y2="311.6312960000001"/>
+  <line stroke="#888888" x1="270.174333360862" x2="270.174333360862" y1="322.1312960000002" y2="311.63129600000013"/>
+  <line stroke="#888888" x1="270.174333360862" x2="270.67433336086197" y1="311.63129600000013" y2="311.63129600000013"/>
+  <line stroke="#888888" x1="270.67433336086197" x2="270.67433336086197" y1="311.63129600000013" y2="322.1312960000002"/>
+  <line stroke="#888888" x1="270.67433336086197" x2="270.174333360862" y1="322.1312960000002" y2="322.1312960000002"/>
+  <line stroke="#888888" x1="270.1743333608621" x2="270.1743333608621" y1="222.13129600000016" y2="211.63129600000013"/>
+  <line stroke="#888888" x1="270.1743333608621" x2="270.674333360862" y1="211.63129600000013" y2="211.63129600000013"/>
+  <line stroke="#888888" x1="270.674333360862" x2="270.674333360862" y1="211.63129600000013" y2="222.13129600000016"/>
+  <line stroke="#888888" x1="270.674333360862" x2="270.1743333608621" y1="222.13129600000016" y2="222.13129600000016"/>
+  <line stroke="#888888" x1="180.42433336086205" x2="185.42433336086205" y1="211.88129600000008" y2="211.88129600000008"/>
+  <line stroke="#888888" x1="185.42433336086205" x2="185.42433336086205" y1="211.88129600000008" y2="221.8812960000001"/>
+  <line stroke="#888888" x1="185.42433336086205" x2="180.42433336086205" y1="221.8812960000001" y2="221.8812960000001"/>
+  <line stroke="#888888" x1="287.924333360862" x2="287.924333360862" y1="309.3812960000002" y2="304.3812960000002"/>
+  <line stroke="#888888" x1="287.924333360862" x2="297.924333360862" y1="304.3812960000002" y2="304.3812960000002"/>
+  <line stroke="#888888" x1="297.924333360862" x2="297.924333360862" y1="304.3812960000002" y2="309.3812960000002"/>
+  <line stroke="#888888" x1="297.9243333608621" x2="297.9243333608621" y1="224.38129600000016" y2="229.38129600000016"/>
+  <line stroke="#888888" x1="297.9243333608621" x2="287.9243333608621" y1="229.38129600000016" y2="229.38129600000016"/>
+  <line stroke="#888888" x1="287.9243333608621" x2="287.9243333608621" y1="229.38129600000016" y2="224.38129600000016"/>
+  <line stroke="#888888" x1="300.42433336086197" x2="300.42433336086197" y1="375.88129600000013" y2="370.88129600000013"/>
+  <line stroke="#888888" x1="300.42433336086197" x2="305.42433336086197" y1="370.88129600000013" y2="375.88129600000013"/>
+  <line stroke="#888888" x1="305.42433336086197" x2="305.42433336086197" y1="375.88129600000013" y2="395.8812960000002"/>
+  <line stroke="#888888" x1="305.42433336086197" x2="300.42433336086197" y1="395.8812960000002" y2="400.8812960000002"/>
+  <line stroke="#888888" x1="300.42433336086197" x2="300.42433336086197" y1="400.8812960000002" y2="395.8812960000002"/>
+  <line stroke="#888888" x1="296.8410000275287" x2="285.0076666941954" y1="266.63129600000013" y2="266.63129600000013"/>
+  <line stroke="#888888" x1="285.0076666941954" x2="285.0076666941954" y1="266.63129600000013" y2="266.1312960000002"/>
+  <line stroke="#888888" x1="285.0076666941954" x2="296.8410000275287" y1="266.1312960000002" y2="266.1312960000002"/>
+  <line stroke="#888888" x1="296.8410000275287" x2="296.8410000275287" y1="266.1312960000002" y2="266.63129600000013"/>
+  <line stroke="#888888" x1="189.17433336086205" x2="189.17433336086205" y1="266.8812960000001" y2="264.3812960000001"/>
+  <line stroke="#888888" x1="189.17433336086205" x2="191.67433336086205" y1="264.3812960000001" y2="266.8812960000001"/>
+  <line stroke="#888888" x1="191.67433336086205" x2="191.67433336086205" y1="266.8812960000001" y2="274.8812960000001"/>
+  <line stroke="#888888" x1="191.67433336086205" x2="189.17433336086205" y1="274.8812960000001" y2="277.38129600000013"/>
+  <line stroke="#888888" x1="189.17433336086205" x2="189.17433336086205" y1="277.38129600000013" y2="274.8812960000001"/>
+  <line stroke="#888888" x1="284.9243333608621" x2="284.9243333608621" y1="301.88129600000013" y2="297.88129600000013"/>
+  <line stroke="#888888" x1="284.9243333608621" x2="296.9243333608621" y1="297.88129600000013" y2="297.88129600000013"/>
+  <line stroke="#888888" x1="296.9243333608621" x2="296.9243333608621" y1="297.88129600000013" y2="301.88129600000013"/>
+  <line stroke="#888888" x1="296.9243333608621" x2="284.9243333608621" y1="301.88129600000013" y2="301.88129600000013"/>
+  <line stroke="#888888" x1="286.424333360862" x2="286.424333360862" y1="289.88129600000013" y2="285.8812960000002"/>
+  <line stroke="#888888" x1="286.424333360862" x2="295.424333360862" y1="285.8812960000002" y2="285.8812960000002"/>
+  <line stroke="#888888" x1="295.424333360862" x2="295.424333360862" y1="285.8812960000002" y2="289.88129600000013"/>
+  <line stroke="#888888" x1="295.424333360862" x2="286.424333360862" y1="289.88129600000013" y2="289.88129600000013"/>
+  <line stroke="#888888" x1="284.9243333608621" x2="284.9243333608621" y1="326.3812960000002" y2="303.38129600000013"/>
+  <line stroke="#888888" x1="284.9243333608621" x2="296.9243333608621" y1="303.38129600000013" y2="303.38129600000013"/>
+  <line stroke="#888888" x1="296.9243333608621" x2="296.9243333608621" y1="303.38129600000013" y2="326.3812960000002"/>
+  <line stroke="#888888" x1="296.9243333608621" x2="284.9243333608621" y1="326.3812960000002" y2="326.3812960000002"/>
+  <line stroke="#888888" x1="284.9243333608621" x2="284.9243333608621" y1="331.8812960000002" y2="327.8812960000002"/>
+  <line stroke="#888888" x1="284.9243333608621" x2="296.9243333608621" y1="327.8812960000002" y2="327.8812960000002"/>
+  <line stroke="#888888" x1="296.9243333608621" x2="296.9243333608621" y1="327.8812960000002" y2="331.8812960000002"/>
+  <line stroke="#888888" x1="296.9243333608621" x2="284.9243333608621" y1="331.8812960000002" y2="331.8812960000002"/>
+  <line stroke="#888888" x1="285.2576666941954" x2="285.2576666941954" y1="354.3812960000002" y2="349.3812960000002"/>
+  <line stroke="#888888" x1="285.2576666941954" x2="296.5910000275287" y1="349.3812960000002" y2="349.3812960000002"/>
+  <line stroke="#888888" x1="296.5910000275287" x2="296.5910000275287" y1="349.3812960000002" y2="354.3812960000002"/>
+  <line stroke="#888888" x1="253.28571136167673" x2="253.28571136167673" y1="230.88129600000016" y2="219.88129600000016"/>
+  <line stroke="#888888" x1="253.28571136167673" x2="266.2857113616767" y1="219.88129600000016" y2="219.88129600000016"/>
+  <line stroke="#888888" x1="266.2857113616767" x2="266.2857113616767" y1="219.88129600000016" y2="230.88129600000016"/>
+  <line stroke="#888888" x1="266.2857113616767" x2="253.28571136167673" y1="230.88129600000016" y2="230.88129600000016"/>
+  <line stroke="#888888" x1="254.78571136167673" x2="254.78571136167673" y1="199.38129600000016" y2="193.38129600000013"/>
+  <line stroke="#888888" x1="254.78571136167673" x2="264.78571136167676" y1="193.38129600000013" y2="193.38129600000013"/>
+  <line stroke="#888888" x1="264.78571136167676" x2="264.78571136167676" y1="193.38129600000013" y2="199.38129600000016"/>
+  <line stroke="#888888" x1="264.78571136167676" x2="254.78571136167673" y1="199.38129600000016" y2="199.38129600000016"/>
+  <line stroke="#888888" x1="204.14708936249147" x2="209.14708936249147" y1="198.9722050909092" y2="198.9722050909092"/>
+  <line stroke="#888888" x1="209.14708936249147" x2="209.14708936249147" y1="198.9722050909092" y2="210.0631141818183"/>
+  <line stroke="#888888" x1="209.14708936249147" x2="204.14708936249147" y1="210.0631141818183" y2="210.0631141818183"/>
+  <line stroke="#888888" x1="204.14708936249147" x2="209.14708936249147" y1="226.69947781818195" y2="226.69947781818195"/>
+  <line stroke="#888888" x1="209.14708936249147" x2="209.14708936249147" y1="226.69947781818195" y2="237.79038690909104"/>
+  <line stroke="#888888" x1="209.14708936249147" x2="204.14708936249147" y1="237.79038690909104" y2="237.79038690909104"/>
+  <line stroke="#888888" x1="263.78571136167676" x2="263.78571136167676" y1="180.38129600000016" y2="185.38129600000016"/>
+  <line stroke="#888888" x1="263.78571136167676" x2="255.7857113616768" y1="185.38129600000016" y2="185.38129600000016"/>
+  <line stroke="#888888" x1="255.7857113616768" x2="255.7857113616768" y1="185.38129600000016" y2="180.38129600000016"/>
+  <line stroke="#888888" x1="255.78571136167673" x2="255.78571136167673" y1="256.3812960000002" y2="251.38129600000013"/>
+  <line stroke="#888888" x1="255.78571136167673" x2="263.7857113616767" y1="251.38129600000013" y2="251.38129600000013"/>
+  <line stroke="#888888" x1="263.7857113616767" x2="263.7857113616767" y1="251.38129600000013" y2="256.3812960000002"/>
+  <line stroke="#888888" x1="1.9810833402154915" x2="5.943250020646475" y1="423.8056293608621" y2="423.8056293608621"/>
+  <line stroke="#888888" x1="5.943250020646475" x2="5.943250020646475" y1="423.8056293608621" y2="431.72996272172406"/>
+  <line stroke="#888888" x1="5.943250020646475" x2="1.9810833402154915" y1="431.72996272172406" y2="431.72996272172406"/>
+  <line opacity="0.5" stroke="#0000ff" x1="351.2328894305849" x2="412.2328894305849" y1="254.88129600000005" y2="254.88129600000005"/>
+  <line opacity="0.5" stroke="#0000ff" x1="412.2328894305849" x2="412.2328894305849" y1="254.88129600000005" y2="278.8812960000001"/>
+  <line opacity="0.5" stroke="#0000ff" x1="412.2328894305849" x2="351.2328894305849" y1="278.8812960000001" y2="278.8812960000001"/>
+  <line opacity="0.5" stroke="#0000ff" x1="351.2328894305849" x2="351.2328894305849" y1="278.8812960000001" y2="254.88129600000005"/>
+  <line stroke="#000000" x1="351.2328894305849" x2="351.2328894305849" y1="247.88129600000005" y2="254.88129600000005"/>
+  <line stroke="#000000" x1="411.2328894305849" x2="351.2328894305849" y1="247.88129600000005" y2="247.88129600000005"/>
+  <line stroke="#000000" x1="411.2328894305849" x2="411.2328894305849" y1="254.88129600000005" y2="247.88129600000005"/>
+  <line stroke="#000000" x1="419.2328894305849" x2="412.2328894305849" y1="254.88129600000005" y2="254.88129600000005"/>
+  <line stroke="#000000" x1="419.2328894305849" x2="419.2328894305849" y1="278.8812960000001" y2="254.88129600000005"/>
+  <line stroke="#000000" x1="412.2328894305849" x2="419.2328894305849" y1="278.8812960000001" y2="278.8812960000001"/>
+  <line opacity="0.5" stroke="#0000ff" x1="412.2328894305849" x2="412.2328894305849" y1="278.8812960000001" y2="339.881296"/>
+  <line stroke="#000000" x1="352.23288943058486" x2="412.2328894305849" y1="339.881296" y2="339.881296"/>
+  <line opacity="0.5" stroke="#0000ff" x1="352.23288943058486" x2="352.23288943058486" y1="278.8812960000001" y2="339.881296"/>
+  <line stroke="#000000" x1="436.2328894305849" x2="412.2328894305849" y1="278.8812960000001" y2="278.8812960000001"/>
+  <line opacity="0.5" stroke="#0000ff" x1="436.2328894305849" x2="436.2328894305849" y1="278.8812960000001" y2="339.881296"/>
+  <line stroke="#000000" x1="412.2328894305849" x2="436.2328894305849" y1="339.881296" y2="339.881296"/>
+  <line stroke="#000000" x1="496.2328894305849" x2="436.2328894305849" y1="278.8812960000001" y2="278.8812960000001"/>
+  <line stroke="#000000" x1="496.2328894305849" x2="496.2328894305849" y1="339.881296" y2="278.8812960000001"/>
+  <line stroke="#000000" x1="436.2328894305849" x2="496.2328894305849" y1="339.881296" y2="339.881296"/>
+  <line stroke="#000000" x1="352.23288943058486" x2="328.2328894305849" y1="278.8812960000001" y2="278.8812960000001"/>
+  <line stroke="#000000" x1="328.2328894305849" x2="352.23288943058486" y1="339.881296" y2="339.881296"/>
+  <line opacity="0.5" stroke="#0000ff" x1="328.2328894305849" x2="328.2328894305849" y1="339.881296" y2="278.8812960000001"/>
+  <line stroke="#000000" x1="318.2328894305849" x2="328.2328894305849" y1="339.881296" y2="339.881296"/>
+  <line stroke="#000000" x1="318.2328894305849" x2="318.2328894305849" y1="278.8812960000001" y2="339.881296"/>
+  <line stroke="#000000" x1="328.2328894305849" x2="318.2328894305849" y1="278.8812960000001" y2="278.8812960000001"/>
+  <line stroke="#000000" x1="344.23288943058486" x2="351.2328894305849" y1="278.8812960000001" y2="278.8812960000001"/>
+  <line stroke="#000000" x1="344.23288943058486" x2="344.23288943058486" y1="254.88129600000005" y2="278.8812960000001"/>
+  <line stroke="#000000" x1="351.2328894305849" x2="344.23288943058486" y1="254.88129600000005" y2="254.88129600000005"/>
+  <line stroke="#888888" x1="400.323798521494" x2="403.823798521494" y1="249.63129600000005" y2="249.63129600000005"/>
+  <line stroke="#888888" x1="403.823798521494" x2="400.323798521494" y1="249.63129600000005" y2="253.13129600000005"/>
+  <line stroke="#888888" x1="400.323798521494" x2="389.4147076124031" y1="253.13129600000005" y2="253.13129600000005"/>
+  <line stroke="#888888" x1="389.4147076124031" x2="385.9147076124031" y1="253.13129600000005" y2="249.63129600000005"/>
+  <line stroke="#888888" x1="385.9147076124031" x2="389.4147076124031" y1="249.63129600000005" y2="249.63129600000005"/>
+  <line stroke="#888888" x1="373.0510712487667" x2="376.55107124876673" y1="249.63129600000005" y2="249.63129600000005"/>
+  <line stroke="#888888" x1="376.55107124876673" x2="373.0510712487667" y1="249.63129600000005" y2="253.13129600000005"/>
+  <line stroke="#888888" x1="373.0510712487667" x2="362.14198033967585" y1="253.13129600000005" y2="253.13129600000005"/>
+  <line stroke="#888888" x1="362.14198033967585" x2="358.6419803396758" y1="253.13129600000005" y2="249.63129600000005"/>
+  <line stroke="#888888" x1="358.6419803396758" x2="362.14198033967585" y1="249.63129600000005" y2="249.63129600000005"/>
+  <line stroke="#888888" x1="417.4828894305849" x2="413.9828894305849" y1="270.8812960000001" y2="270.8812960000001"/>
+  <line stroke="#888888" x1="413.9828894305849" x2="413.9828894305849" y1="270.8812960000001" y2="262.881296"/>
+  <line stroke="#888888" x1="413.9828894305849" x2="417.4828894305849" y1="262.881296" y2="262.881296"/>
+  <line stroke="#888888" x1="359.7328894305849" x2="359.7328894305849" y1="330.381296" y2="312.381296"/>
+  <line stroke="#888888" x1="359.7328894305849" x2="394.7328894305849" y1="312.381296" y2="312.381296"/>
+  <line stroke="#888888" x1="394.7328894305849" x2="394.7328894305849" y1="312.381296" y2="330.381296"/>
+  <line stroke="#888888" x1="394.7328894305849" x2="359.7328894305849" y1="330.381296" y2="330.381296"/>
+  <line stroke="#888888" x1="412.7328894305849" x2="412.7328894305849" y1="292.1312960000001" y2="289.131296"/>
+  <line stroke="#888888" x1="412.7328894305849" x2="415.7328894305849" y1="289.131296" y2="289.131296"/>
+  <line stroke="#888888" x1="415.7328894305849" x2="415.7328894305849" y1="289.131296" y2="292.1312960000001"/>
+  <line stroke="#888888" x1="415.7328894305849" x2="412.7328894305849" y1="292.1312960000001" y2="292.1312960000001"/>
+  <line stroke="#888888" x1="433.7328894305849" x2="433.7328894305849" y1="291.1312960000001" y2="290.131296"/>
+  <line stroke="#888888" x1="433.7328894305849" x2="434.73288943058486" y1="290.131296" y2="290.131296"/>
+  <line stroke="#888888" x1="434.73288943058486" x2="434.73288943058486" y1="290.131296" y2="291.1312960000001"/>
+  <line stroke="#888888" x1="434.73288943058486" x2="433.7328894305849" y1="291.1312960000001" y2="291.1312960000001"/>
+  <line stroke="#888888" x1="413.7328894305849" x2="413.7328894305849" y1="293.631296" y2="292.6312960000001"/>
+  <line stroke="#888888" x1="413.7328894305849" x2="414.7328894305849" y1="292.6312960000001" y2="292.6312960000001"/>
+  <line stroke="#888888" x1="414.7328894305849" x2="414.7328894305849" y1="292.6312960000001" y2="293.631296"/>
+  <line stroke="#888888" x1="414.7328894305849" x2="413.7328894305849" y1="293.631296" y2="293.631296"/>
+  <line stroke="#888888" x1="433.7328894305849" x2="433.7328894305849" y1="293.631296" y2="292.6312960000001"/>
+  <line stroke="#888888" x1="433.7328894305849" x2="434.73288943058486" y1="292.6312960000001" y2="292.6312960000001"/>
+  <line stroke="#888888" x1="434.73288943058486" x2="434.73288943058486" y1="292.6312960000001" y2="293.631296"/>
+  <line stroke="#888888" x1="434.73288943058486" x2="433.7328894305849" y1="293.631296" y2="293.631296"/>
+  <line stroke="#888888" x1="413.7328894305849" x2="413.7328894305849" y1="296.1312960000001" y2="295.1312960000001"/>
+  <line stroke="#888888" x1="413.7328894305849" x2="414.7328894305849" y1="295.1312960000001" y2="295.1312960000001"/>
+  <line stroke="#888888" x1="414.7328894305849" x2="414.7328894305849" y1="295.1312960000001" y2="296.1312960000001"/>
+  <line stroke="#888888" x1="414.7328894305849" x2="413.7328894305849" y1="296.1312960000001" y2="296.1312960000001"/>
+  <line stroke="#888888" x1="433.7328894305849" x2="433.7328894305849" y1="296.1312960000001" y2="295.1312960000001"/>
+  <line stroke="#888888" x1="433.7328894305849" x2="434.73288943058486" y1="295.1312960000001" y2="295.1312960000001"/>
+  <line stroke="#888888" x1="434.73288943058486" x2="434.73288943058486" y1="295.1312960000001" y2="296.1312960000001"/>
+  <line stroke="#888888" x1="434.73288943058486" x2="433.7328894305849" y1="296.1312960000001" y2="296.1312960000001"/>
+  <line stroke="#888888" x1="413.7328894305849" x2="413.7328894305849" y1="298.631296" y2="297.6312960000001"/>
+  <line stroke="#888888" x1="413.7328894305849" x2="414.7328894305849" y1="297.6312960000001" y2="297.6312960000001"/>
+  <line stroke="#888888" x1="414.7328894305849" x2="414.7328894305849" y1="297.6312960000001" y2="298.631296"/>
+  <line stroke="#888888" x1="414.7328894305849" x2="413.7328894305849" y1="298.631296" y2="298.631296"/>
+  <line stroke="#888888" x1="433.7328894305849" x2="433.7328894305849" y1="298.631296" y2="297.6312960000001"/>
+  <line stroke="#888888" x1="433.7328894305849" x2="434.73288943058486" y1="297.6312960000001" y2="297.6312960000001"/>
+  <line stroke="#888888" x1="434.73288943058486" x2="434.73288943058486" y1="297.6312960000001" y2="298.631296"/>
+  <line stroke="#888888" x1="434.73288943058486" x2="433.7328894305849" y1="298.631296" y2="298.631296"/>
+  <line stroke="#888888" x1="413.7328894305849" x2="413.7328894305849" y1="301.1312960000001" y2="300.1312960000001"/>
+  <line stroke="#888888" x1="413.7328894305849" x2="414.7328894305849" y1="300.1312960000001" y2="300.1312960000001"/>
+  <line stroke="#888888" x1="414.7328894305849" x2="414.7328894305849" y1="300.1312960000001" y2="301.1312960000001"/>
+  <line stroke="#888888" x1="414.7328894305849" x2="413.7328894305849" y1="301.1312960000001" y2="301.1312960000001"/>
+  <line stroke="#888888" x1="433.7328894305849" x2="433.7328894305849" y1="301.1312960000001" y2="300.1312960000001"/>
+  <line stroke="#888888" x1="433.7328894305849" x2="434.73288943058486" y1="300.1312960000001" y2="300.1312960000001"/>
+  <line stroke="#888888" x1="434.73288943058486" x2="434.73288943058486" y1="300.1312960000001" y2="301.1312960000001"/>
+  <line stroke="#888888" x1="434.73288943058486" x2="433.7328894305849" y1="301.1312960000001" y2="301.1312960000001"/>
+  <line stroke="#888888" x1="413.7328894305849" x2="413.7328894305849" y1="303.631296" y2="302.631296"/>
+  <line stroke="#888888" x1="413.7328894305849" x2="414.7328894305849" y1="302.631296" y2="302.631296"/>
+  <line stroke="#888888" x1="414.7328894305849" x2="414.7328894305849" y1="302.631296" y2="303.631296"/>
+  <line stroke="#888888" x1="414.7328894305849" x2="413.7328894305849" y1="303.631296" y2="303.631296"/>
+  <line stroke="#888888" x1="433.7328894305849" x2="433.7328894305849" y1="303.631296" y2="302.631296"/>
+  <line stroke="#888888" x1="433.7328894305849" x2="434.73288943058486" y1="302.631296" y2="302.631296"/>
+  <line stroke="#888888" x1="434.73288943058486" x2="434.73288943058486" y1="302.631296" y2="303.631296"/>
+  <line stroke="#888888" x1="434.73288943058486" x2="433.7328894305849" y1="303.631296" y2="303.631296"/>
+  <line stroke="#888888" x1="413.7328894305849" x2="413.7328894305849" y1="306.1312960000001" y2="305.1312960000001"/>
+  <line stroke="#888888" x1="413.7328894305849" x2="414.7328894305849" y1="305.1312960000001" y2="305.1312960000001"/>
+  <line stroke="#888888" x1="414.7328894305849" x2="414.7328894305849" y1="305.1312960000001" y2="306.1312960000001"/>
+  <line stroke="#888888" x1="414.7328894305849" x2="413.7328894305849" y1="306.1312960000001" y2="306.1312960000001"/>
+  <line stroke="#888888" x1="433.7328894305849" x2="433.7328894305849" y1="306.1312960000001" y2="305.1312960000001"/>
+  <line stroke="#888888" x1="433.7328894305849" x2="434.73288943058486" y1="305.1312960000001" y2="305.1312960000001"/>
+  <line stroke="#888888" x1="434.73288943058486" x2="434.73288943058486" y1="305.1312960000001" y2="306.1312960000001"/>
+  <line stroke="#888888" x1="434.73288943058486" x2="433.7328894305849" y1="306.1312960000001" y2="306.1312960000001"/>
+  <line stroke="#888888" x1="413.7328894305849" x2="413.7328894305849" y1="308.6312960000001" y2="307.631296"/>
+  <line stroke="#888888" x1="413.7328894305849" x2="414.7328894305849" y1="307.631296" y2="307.631296"/>
+  <line stroke="#888888" x1="414.7328894305849" x2="414.7328894305849" y1="307.631296" y2="308.6312960000001"/>
+  <line stroke="#888888" x1="414.7328894305849" x2="413.7328894305849" y1="308.6312960000001" y2="308.6312960000001"/>
+  <line stroke="#888888" x1="433.7328894305849" x2="433.7328894305849" y1="308.6312960000001" y2="307.631296"/>
+  <line stroke="#888888" x1="433.7328894305849" x2="434.73288943058486" y1="307.631296" y2="307.631296"/>
+  <line stroke="#888888" x1="434.73288943058486" x2="434.73288943058486" y1="307.631296" y2="308.6312960000001"/>
+  <line stroke="#888888" x1="434.73288943058486" x2="433.7328894305849" y1="308.6312960000001" y2="308.6312960000001"/>
+  <line stroke="#888888" x1="413.7328894305849" x2="413.7328894305849" y1="311.1312960000001" y2="310.1312960000001"/>
+  <line stroke="#888888" x1="413.7328894305849" x2="414.7328894305849" y1="310.1312960000001" y2="310.1312960000001"/>
+  <line stroke="#888888" x1="414.7328894305849" x2="414.7328894305849" y1="310.1312960000001" y2="311.1312960000001"/>
+  <line stroke="#888888" x1="414.7328894305849" x2="413.7328894305849" y1="311.1312960000001" y2="311.1312960000001"/>
+  <line stroke="#888888" x1="433.7328894305849" x2="433.7328894305849" y1="311.1312960000001" y2="310.1312960000001"/>
+  <line stroke="#888888" x1="433.7328894305849" x2="434.73288943058486" y1="310.1312960000001" y2="310.1312960000001"/>
+  <line stroke="#888888" x1="434.73288943058486" x2="434.73288943058486" y1="310.1312960000001" y2="311.1312960000001"/>
+  <line stroke="#888888" x1="434.73288943058486" x2="433.7328894305849" y1="311.1312960000001" y2="311.1312960000001"/>
+  <line stroke="#888888" x1="413.7328894305849" x2="413.7328894305849" y1="313.6312960000001" y2="312.631296"/>
+  <line stroke="#888888" x1="413.7328894305849" x2="414.7328894305849" y1="312.631296" y2="312.631296"/>
+  <line stroke="#888888" x1="414.7328894305849" x2="414.7328894305849" y1="312.631296" y2="313.6312960000001"/>
+  <line stroke="#888888" x1="414.7328894305849" x2="413.7328894305849" y1="313.6312960000001" y2="313.6312960000001"/>
+  <line stroke="#888888" x1="433.7328894305849" x2="433.7328894305849" y1="313.6312960000001" y2="312.631296"/>
+  <line stroke="#888888" x1="433.7328894305849" x2="434.73288943058486" y1="312.631296" y2="312.631296"/>
+  <line stroke="#888888" x1="434.73288943058486" x2="434.73288943058486" y1="312.631296" y2="313.6312960000001"/>
+  <line stroke="#888888" x1="434.73288943058486" x2="433.7328894305849" y1="313.6312960000001" y2="313.6312960000001"/>
+  <line stroke="#888888" x1="413.7328894305849" x2="413.7328894305849" y1="316.131296" y2="315.1312960000001"/>
+  <line stroke="#888888" x1="413.7328894305849" x2="414.7328894305849" y1="315.1312960000001" y2="315.1312960000001"/>
+  <line stroke="#888888" x1="414.7328894305849" x2="414.7328894305849" y1="315.1312960000001" y2="316.131296"/>
+  <line stroke="#888888" x1="414.7328894305849" x2="413.7328894305849" y1="316.131296" y2="316.131296"/>
+  <line stroke="#888888" x1="433.7328894305849" x2="433.7328894305849" y1="316.131296" y2="315.1312960000001"/>
+  <line stroke="#888888" x1="433.7328894305849" x2="434.73288943058486" y1="315.1312960000001" y2="315.1312960000001"/>
+  <line stroke="#888888" x1="434.73288943058486" x2="434.73288943058486" y1="315.1312960000001" y2="316.131296"/>
+  <line stroke="#888888" x1="434.73288943058486" x2="433.7328894305849" y1="316.131296" y2="316.131296"/>
+  <line stroke="#888888" x1="413.7328894305849" x2="413.7328894305849" y1="318.6312960000001" y2="317.6312960000001"/>
+  <line stroke="#888888" x1="413.7328894305849" x2="414.7328894305849" y1="317.6312960000001" y2="317.6312960000001"/>
+  <line stroke="#888888" x1="414.7328894305849" x2="414.7328894305849" y1="317.6312960000001" y2="318.6312960000001"/>
+  <line stroke="#888888" x1="414.7328894305849" x2="413.7328894305849" y1="318.6312960000001" y2="318.6312960000001"/>
+  <line stroke="#888888" x1="433.7328894305849" x2="433.7328894305849" y1="318.6312960000001" y2="317.6312960000001"/>
+  <line stroke="#888888" x1="433.7328894305849" x2="434.73288943058486" y1="317.6312960000001" y2="317.6312960000001"/>
+  <line stroke="#888888" x1="434.73288943058486" x2="434.73288943058486" y1="317.6312960000001" y2="318.6312960000001"/>
+  <line stroke="#888888" x1="434.73288943058486" x2="433.7328894305849" y1="318.6312960000001" y2="318.6312960000001"/>
+  <line stroke="#888888" x1="413.7328894305849" x2="413.7328894305849" y1="321.131296" y2="320.1312960000001"/>
+  <line stroke="#888888" x1="413.7328894305849" x2="414.7328894305849" y1="320.1312960000001" y2="320.1312960000001"/>
+  <line stroke="#888888" x1="414.7328894305849" x2="414.7328894305849" y1="320.1312960000001" y2="321.131296"/>
+  <line stroke="#888888" x1="414.7328894305849" x2="413.7328894305849" y1="321.131296" y2="321.131296"/>
+  <line stroke="#888888" x1="433.7328894305849" x2="433.7328894305849" y1="321.131296" y2="320.1312960000001"/>
+  <line stroke="#888888" x1="433.7328894305849" x2="434.73288943058486" y1="320.1312960000001" y2="320.1312960000001"/>
+  <line stroke="#888888" x1="434.73288943058486" x2="434.73288943058486" y1="320.1312960000001" y2="321.131296"/>
+  <line stroke="#888888" x1="434.73288943058486" x2="433.7328894305849" y1="321.131296" y2="321.131296"/>
+  <line stroke="#888888" x1="413.7328894305849" x2="413.7328894305849" y1="323.6312960000001" y2="322.6312960000001"/>
+  <line stroke="#888888" x1="413.7328894305849" x2="414.7328894305849" y1="322.6312960000001" y2="322.6312960000001"/>
+  <line stroke="#888888" x1="414.7328894305849" x2="414.7328894305849" y1="322.6312960000001" y2="323.6312960000001"/>
+  <line stroke="#888888" x1="414.7328894305849" x2="413.7328894305849" y1="323.6312960000001" y2="323.6312960000001"/>
+  <line stroke="#888888" x1="433.7328894305849" x2="433.7328894305849" y1="323.6312960000001" y2="322.6312960000001"/>
+  <line stroke="#888888" x1="433.7328894305849" x2="434.73288943058486" y1="322.6312960000001" y2="322.6312960000001"/>
+  <line stroke="#888888" x1="434.73288943058486" x2="434.73288943058486" y1="322.6312960000001" y2="323.6312960000001"/>
+  <line stroke="#888888" x1="434.73288943058486" x2="433.7328894305849" y1="323.6312960000001" y2="323.6312960000001"/>
+  <line stroke="#888888" x1="413.7328894305849" x2="413.7328894305849" y1="326.131296" y2="325.131296"/>
+  <line stroke="#888888" x1="413.7328894305849" x2="414.7328894305849" y1="325.131296" y2="325.131296"/>
+  <line stroke="#888888" x1="414.7328894305849" x2="414.7328894305849" y1="325.131296" y2="326.131296"/>
+  <line stroke="#888888" x1="414.7328894305849" x2="413.7328894305849" y1="326.131296" y2="326.131296"/>
+  <line stroke="#888888" x1="433.7328894305849" x2="433.7328894305849" y1="326.131296" y2="325.131296"/>
+  <line stroke="#888888" x1="433.7328894305849" x2="434.73288943058486" y1="325.131296" y2="325.131296"/>
+  <line stroke="#888888" x1="434.73288943058486" x2="434.73288943058486" y1="325.131296" y2="326.131296"/>
+  <line stroke="#888888" x1="434.73288943058486" x2="433.7328894305849" y1="326.131296" y2="326.131296"/>
+  <line stroke="#888888" x1="413.7328894305849" x2="413.7328894305849" y1="328.6312960000001" y2="327.6312960000001"/>
+  <line stroke="#888888" x1="413.7328894305849" x2="414.7328894305849" y1="327.6312960000001" y2="327.6312960000001"/>
+  <line stroke="#888888" x1="414.7328894305849" x2="414.7328894305849" y1="327.6312960000001" y2="328.6312960000001"/>
+  <line stroke="#888888" x1="414.7328894305849" x2="413.7328894305849" y1="328.6312960000001" y2="328.6312960000001"/>
+  <line stroke="#888888" x1="432.7328894305849" x2="432.7328894305849" y1="329.6312960000001" y2="326.631296"/>
+  <line stroke="#888888" x1="432.7328894305849" x2="435.7328894305849" y1="326.631296" y2="326.631296"/>
+  <line stroke="#888888" x1="435.7328894305849" x2="435.7328894305849" y1="326.631296" y2="329.6312960000001"/>
+  <line stroke="#888888" x1="435.7328894305849" x2="432.7328894305849" y1="329.6312960000001" y2="329.6312960000001"/>
+  <line stroke="#888888" x1="428.4828894305849" x2="419.9828894305849" y1="286.6312960000001" y2="286.6312960000001"/>
+  <line stroke="#888888" x1="419.9828894305849" x2="419.9828894305849" y1="286.6312960000001" y2="286.1312960000001"/>
+  <line stroke="#888888" x1="419.9828894305849" x2="428.4828894305849" y1="286.1312960000001" y2="286.1312960000001"/>
+  <line stroke="#888888" x1="428.4828894305849" x2="428.4828894305849" y1="286.1312960000001" y2="286.6312960000001"/>
+  <line stroke="#888888" x1="419.9828894305849" x2="428.4828894305849" y1="334.381296" y2="334.381296"/>
+  <line stroke="#888888" x1="428.4828894305849" x2="428.4828894305849" y1="334.381296" y2="334.881296"/>
+  <line stroke="#888888" x1="428.4828894305849" x2="419.9828894305849" y1="334.881296" y2="334.881296"/>
+  <line stroke="#888888" x1="419.9828894305849" x2="419.9828894305849" y1="334.881296" y2="334.381296"/>
+  <line stroke="#888888" x1="451.2328894305849" x2="451.2328894305849" y1="329.881296" y2="316.881296"/>
+  <line stroke="#888888" x1="451.2328894305849" x2="481.2328894305849" y1="316.881296" y2="316.881296"/>
+  <line stroke="#888888" x1="481.2328894305849" x2="481.2328894305849" y1="316.881296" y2="329.881296"/>
+  <line stroke="#888888" x1="481.2328894305849" x2="451.2328894305849" y1="329.881296" y2="329.881296"/>
+  <line stroke="#888888" x1="458.30107124876673" x2="446.89198033967585" y1="284.381296" y2="284.381296"/>
+  <line stroke="#888888" x1="446.89198033967585" x2="446.89198033967585" y1="284.381296" y2="283.8812960000001"/>
+  <line stroke="#888888" x1="446.89198033967585" x2="458.30107124876673" y1="283.8812960000001" y2="283.8812960000001"/>
+  <line stroke="#888888" x1="458.30107124876673" x2="458.30107124876673" y1="283.8812960000001" y2="284.381296"/>
+  <line stroke="#888888" x1="485.573798521494" x2="474.1647076124031" y1="284.381296" y2="284.381296"/>
+  <line stroke="#888888" x1="474.1647076124031" x2="474.1647076124031" y1="284.381296" y2="283.8812960000001"/>
+  <line stroke="#888888" x1="474.1647076124031" x2="485.573798521494" y1="283.8812960000001" y2="283.8812960000001"/>
+  <line stroke="#888888" x1="485.573798521494" x2="485.573798521494" y1="283.8812960000001" y2="284.381296"/>
+  <line stroke="#888888" x1="488.4828894305849" x2="488.4828894305849" y1="301.3131141818182" y2="289.7222050909092"/>
+  <line stroke="#888888" x1="488.4828894305849" x2="488.9828894305849" y1="289.7222050909092" y2="289.7222050909092"/>
+  <line stroke="#888888" x1="488.9828894305849" x2="488.9828894305849" y1="289.7222050909092" y2="301.3131141818182"/>
+  <line stroke="#888888" x1="488.9828894305849" x2="488.4828894305849" y1="301.3131141818182" y2="301.3131141818182"/>
+  <line stroke="#888888" x1="488.4828894305849" x2="488.4828894305849" y1="329.040386909091" y2="317.4494778181819"/>
+  <line stroke="#888888" x1="488.4828894305849" x2="488.9828894305849" y1="317.4494778181819" y2="317.4494778181819"/>
+  <line stroke="#888888" x1="488.9828894305849" x2="488.9828894305849" y1="317.4494778181819" y2="329.040386909091"/>
+  <line stroke="#888888" x1="488.9828894305849" x2="488.4828894305849" y1="329.040386909091" y2="329.040386909091"/>
+  <line stroke="#888888" x1="328.7328894305849" x2="328.7328894305849" y1="292.1312960000001" y2="289.131296"/>
+  <line stroke="#888888" x1="328.7328894305849" x2="331.7328894305849" y1="289.131296" y2="289.131296"/>
+  <line stroke="#888888" x1="331.7328894305849" x2="331.7328894305849" y1="289.131296" y2="292.1312960000001"/>
+  <line stroke="#888888" x1="331.7328894305849" x2="328.7328894305849" y1="292.1312960000001" y2="292.1312960000001"/>
+  <line stroke="#888888" x1="349.7328894305849" x2="349.7328894305849" y1="291.1312960000001" y2="290.131296"/>
+  <line stroke="#888888" x1="349.7328894305849" x2="350.7328894305849" y1="290.131296" y2="290.131296"/>
+  <line stroke="#888888" x1="350.7328894305849" x2="350.7328894305849" y1="290.131296" y2="291.1312960000001"/>
+  <line stroke="#888888" x1="350.7328894305849" x2="349.7328894305849" y1="291.1312960000001" y2="291.1312960000001"/>
+  <line stroke="#888888" x1="329.73288943058486" x2="329.73288943058486" y1="293.631296" y2="292.6312960000001"/>
+  <line stroke="#888888" x1="329.73288943058486" x2="330.7328894305849" y1="292.6312960000001" y2="292.6312960000001"/>
+  <line stroke="#888888" x1="330.7328894305849" x2="330.7328894305849" y1="292.6312960000001" y2="293.631296"/>
+  <line stroke="#888888" x1="330.7328894305849" x2="329.73288943058486" y1="293.631296" y2="293.631296"/>
+  <line stroke="#888888" x1="349.7328894305849" x2="349.7328894305849" y1="293.631296" y2="292.6312960000001"/>
+  <line stroke="#888888" x1="349.7328894305849" x2="350.7328894305849" y1="292.6312960000001" y2="292.6312960000001"/>
+  <line stroke="#888888" x1="350.7328894305849" x2="350.7328894305849" y1="292.6312960000001" y2="293.631296"/>
+  <line stroke="#888888" x1="350.7328894305849" x2="349.7328894305849" y1="293.631296" y2="293.631296"/>
+  <line stroke="#888888" x1="329.73288943058486" x2="329.73288943058486" y1="296.1312960000001" y2="295.1312960000001"/>
+  <line stroke="#888888" x1="329.73288943058486" x2="330.7328894305849" y1="295.1312960000001" y2="295.1312960000001"/>
+  <line stroke="#888888" x1="330.7328894305849" x2="330.7328894305849" y1="295.1312960000001" y2="296.1312960000001"/>
+  <line stroke="#888888" x1="330.7328894305849" x2="329.73288943058486" y1="296.1312960000001" y2="296.1312960000001"/>
+  <line stroke="#888888" x1="349.7328894305849" x2="349.7328894305849" y1="296.1312960000001" y2="295.1312960000001"/>
+  <line stroke="#888888" x1="349.7328894305849" x2="350.7328894305849" y1="295.1312960000001" y2="295.1312960000001"/>
+  <line stroke="#888888" x1="350.7328894305849" x2="350.7328894305849" y1="295.1312960000001" y2="296.1312960000001"/>
+  <line stroke="#888888" x1="350.7328894305849" x2="349.7328894305849" y1="296.1312960000001" y2="296.1312960000001"/>
+  <line stroke="#888888" x1="329.73288943058486" x2="329.73288943058486" y1="298.631296" y2="297.6312960000001"/>
+  <line stroke="#888888" x1="329.73288943058486" x2="330.7328894305849" y1="297.6312960000001" y2="297.6312960000001"/>
+  <line stroke="#888888" x1="330.7328894305849" x2="330.7328894305849" y1="297.6312960000001" y2="298.631296"/>
+  <line stroke="#888888" x1="330.7328894305849" x2="329.73288943058486" y1="298.631296" y2="298.631296"/>
+  <line stroke="#888888" x1="349.7328894305849" x2="349.7328894305849" y1="298.631296" y2="297.6312960000001"/>
+  <line stroke="#888888" x1="349.7328894305849" x2="350.7328894305849" y1="297.6312960000001" y2="297.6312960000001"/>
+  <line stroke="#888888" x1="350.7328894305849" x2="350.7328894305849" y1="297.6312960000001" y2="298.631296"/>
+  <line stroke="#888888" x1="350.7328894305849" x2="349.7328894305849" y1="298.631296" y2="298.631296"/>
+  <line stroke="#888888" x1="329.73288943058486" x2="329.73288943058486" y1="301.1312960000001" y2="300.1312960000001"/>
+  <line stroke="#888888" x1="329.73288943058486" x2="330.7328894305849" y1="300.1312960000001" y2="300.1312960000001"/>
+  <line stroke="#888888" x1="330.7328894305849" x2="330.7328894305849" y1="300.1312960000001" y2="301.1312960000001"/>
+  <line stroke="#888888" x1="330.7328894305849" x2="329.73288943058486" y1="301.1312960000001" y2="301.1312960000001"/>
+  <line stroke="#888888" x1="349.7328894305849" x2="349.7328894305849" y1="301.1312960000001" y2="300.1312960000001"/>
+  <line stroke="#888888" x1="349.7328894305849" x2="350.7328894305849" y1="300.1312960000001" y2="300.1312960000001"/>
+  <line stroke="#888888" x1="350.7328894305849" x2="350.7328894305849" y1="300.1312960000001" y2="301.1312960000001"/>
+  <line stroke="#888888" x1="350.7328894305849" x2="349.7328894305849" y1="301.1312960000001" y2="301.1312960000001"/>
+  <line stroke="#888888" x1="329.73288943058486" x2="329.73288943058486" y1="303.631296" y2="302.631296"/>
+  <line stroke="#888888" x1="329.73288943058486" x2="330.7328894305849" y1="302.631296" y2="302.631296"/>
+  <line stroke="#888888" x1="330.7328894305849" x2="330.7328894305849" y1="302.631296" y2="303.631296"/>
+  <line stroke="#888888" x1="330.7328894305849" x2="329.73288943058486" y1="303.631296" y2="303.631296"/>
+  <line stroke="#888888" x1="349.7328894305849" x2="349.7328894305849" y1="303.631296" y2="302.631296"/>
+  <line stroke="#888888" x1="349.7328894305849" x2="350.7328894305849" y1="302.631296" y2="302.631296"/>
+  <line stroke="#888888" x1="350.7328894305849" x2="350.7328894305849" y1="302.631296" y2="303.631296"/>
+  <line stroke="#888888" x1="350.7328894305849" x2="349.7328894305849" y1="303.631296" y2="303.631296"/>
+  <line stroke="#888888" x1="329.73288943058486" x2="329.73288943058486" y1="306.1312960000001" y2="305.1312960000001"/>
+  <line stroke="#888888" x1="329.73288943058486" x2="330.7328894305849" y1="305.1312960000001" y2="305.1312960000001"/>
+  <line stroke="#888888" x1="330.7328894305849" x2="330.7328894305849" y1="305.1312960000001" y2="306.1312960000001"/>
+  <line stroke="#888888" x1="330.7328894305849" x2="329.73288943058486" y1="306.1312960000001" y2="306.1312960000001"/>
+  <line stroke="#888888" x1="349.7328894305849" x2="349.7328894305849" y1="306.1312960000001" y2="305.1312960000001"/>
+  <line stroke="#888888" x1="349.7328894305849" x2="350.7328894305849" y1="305.1312960000001" y2="305.1312960000001"/>
+  <line stroke="#888888" x1="350.7328894305849" x2="350.7328894305849" y1="305.1312960000001" y2="306.1312960000001"/>
+  <line stroke="#888888" x1="350.7328894305849" x2="349.7328894305849" y1="306.1312960000001" y2="306.1312960000001"/>
+  <line stroke="#888888" x1="329.73288943058486" x2="329.73288943058486" y1="308.6312960000001" y2="307.631296"/>
+  <line stroke="#888888" x1="329.73288943058486" x2="330.7328894305849" y1="307.631296" y2="307.631296"/>
+  <line stroke="#888888" x1="330.7328894305849" x2="330.7328894305849" y1="307.631296" y2="308.6312960000001"/>
+  <line stroke="#888888" x1="330.7328894305849" x2="329.73288943058486" y1="308.6312960000001" y2="308.6312960000001"/>
+  <line stroke="#888888" x1="349.7328894305849" x2="349.7328894305849" y1="308.6312960000001" y2="307.631296"/>
+  <line stroke="#888888" x1="349.7328894305849" x2="350.7328894305849" y1="307.631296" y2="307.631296"/>
+  <line stroke="#888888" x1="350.7328894305849" x2="350.7328894305849" y1="307.631296" y2="308.6312960000001"/>
+  <line stroke="#888888" x1="350.7328894305849" x2="349.7328894305849" y1="308.6312960000001" y2="308.6312960000001"/>
+  <line stroke="#888888" x1="329.73288943058486" x2="329.73288943058486" y1="311.1312960000001" y2="310.1312960000001"/>
+  <line stroke="#888888" x1="329.73288943058486" x2="330.7328894305849" y1="310.1312960000001" y2="310.1312960000001"/>
+  <line stroke="#888888" x1="330.7328894305849" x2="330.7328894305849" y1="310.1312960000001" y2="311.1312960000001"/>
+  <line stroke="#888888" x1="330.7328894305849" x2="329.73288943058486" y1="311.1312960000001" y2="311.1312960000001"/>
+  <line stroke="#888888" x1="349.7328894305849" x2="349.7328894305849" y1="311.1312960000001" y2="310.1312960000001"/>
+  <line stroke="#888888" x1="349.7328894305849" x2="350.7328894305849" y1="310.1312960000001" y2="310.1312960000001"/>
+  <line stroke="#888888" x1="350.7328894305849" x2="350.7328894305849" y1="310.1312960000001" y2="311.1312960000001"/>
+  <line stroke="#888888" x1="350.7328894305849" x2="349.7328894305849" y1="311.1312960000001" y2="311.1312960000001"/>
+  <line stroke="#888888" x1="329.73288943058486" x2="329.73288943058486" y1="313.6312960000001" y2="312.631296"/>
+  <line stroke="#888888" x1="329.73288943058486" x2="330.7328894305849" y1="312.631296" y2="312.631296"/>
+  <line stroke="#888888" x1="330.7328894305849" x2="330.7328894305849" y1="312.631296" y2="313.6312960000001"/>
+  <line stroke="#888888" x1="330.7328894305849" x2="329.73288943058486" y1="313.6312960000001" y2="313.6312960000001"/>
+  <line stroke="#888888" x1="349.7328894305849" x2="349.7328894305849" y1="313.6312960000001" y2="312.631296"/>
+  <line stroke="#888888" x1="349.7328894305849" x2="350.7328894305849" y1="312.631296" y2="312.631296"/>
+  <line stroke="#888888" x1="350.7328894305849" x2="350.7328894305849" y1="312.631296" y2="313.6312960000001"/>
+  <line stroke="#888888" x1="350.7328894305849" x2="349.7328894305849" y1="313.6312960000001" y2="313.6312960000001"/>
+  <line stroke="#888888" x1="329.73288943058486" x2="329.73288943058486" y1="316.131296" y2="315.1312960000001"/>
+  <line stroke="#888888" x1="329.73288943058486" x2="330.7328894305849" y1="315.1312960000001" y2="315.1312960000001"/>
+  <line stroke="#888888" x1="330.7328894305849" x2="330.7328894305849" y1="315.1312960000001" y2="316.131296"/>
+  <line stroke="#888888" x1="330.7328894305849" x2="329.73288943058486" y1="316.131296" y2="316.131296"/>
+  <line stroke="#888888" x1="349.7328894305849" x2="349.7328894305849" y1="316.131296" y2="315.1312960000001"/>
+  <line stroke="#888888" x1="349.7328894305849" x2="350.7328894305849" y1="315.1312960000001" y2="315.1312960000001"/>
+  <line stroke="#888888" x1="350.7328894305849" x2="350.7328894305849" y1="315.1312960000001" y2="316.131296"/>
+  <line stroke="#888888" x1="350.7328894305849" x2="349.7328894305849" y1="316.131296" y2="316.131296"/>
+  <line stroke="#888888" x1="329.73288943058486" x2="329.73288943058486" y1="318.6312960000001" y2="317.6312960000001"/>
+  <line stroke="#888888" x1="329.73288943058486" x2="330.7328894305849" y1="317.6312960000001" y2="317.6312960000001"/>
+  <line stroke="#888888" x1="330.7328894305849" x2="330.7328894305849" y1="317.6312960000001" y2="318.6312960000001"/>
+  <line stroke="#888888" x1="330.7328894305849" x2="329.73288943058486" y1="318.6312960000001" y2="318.6312960000001"/>
+  <line stroke="#888888" x1="349.7328894305849" x2="349.7328894305849" y1="318.6312960000001" y2="317.6312960000001"/>
+  <line stroke="#888888" x1="349.7328894305849" x2="350.7328894305849" y1="317.6312960000001" y2="317.6312960000001"/>
+  <line stroke="#888888" x1="350.7328894305849" x2="350.7328894305849" y1="317.6312960000001" y2="318.6312960000001"/>
+  <line stroke="#888888" x1="350.7328894305849" x2="349.7328894305849" y1="318.6312960000001" y2="318.6312960000001"/>
+  <line stroke="#888888" x1="329.73288943058486" x2="329.73288943058486" y1="321.131296" y2="320.1312960000001"/>
+  <line stroke="#888888" x1="329.73288943058486" x2="330.7328894305849" y1="320.1312960000001" y2="320.1312960000001"/>
+  <line stroke="#888888" x1="330.7328894305849" x2="330.7328894305849" y1="320.1312960000001" y2="321.131296"/>
+  <line stroke="#888888" x1="330.7328894305849" x2="329.73288943058486" y1="321.131296" y2="321.131296"/>
+  <line stroke="#888888" x1="349.7328894305849" x2="349.7328894305849" y1="321.131296" y2="320.1312960000001"/>
+  <line stroke="#888888" x1="349.7328894305849" x2="350.7328894305849" y1="320.1312960000001" y2="320.1312960000001"/>
+  <line stroke="#888888" x1="350.7328894305849" x2="350.7328894305849" y1="320.1312960000001" y2="321.131296"/>
+  <line stroke="#888888" x1="350.7328894305849" x2="349.7328894305849" y1="321.131296" y2="321.131296"/>
+  <line stroke="#888888" x1="329.73288943058486" x2="329.73288943058486" y1="323.6312960000001" y2="322.6312960000001"/>
+  <line stroke="#888888" x1="329.73288943058486" x2="330.7328894305849" y1="322.6312960000001" y2="322.6312960000001"/>
+  <line stroke="#888888" x1="330.7328894305849" x2="330.7328894305849" y1="322.6312960000001" y2="323.6312960000001"/>
+  <line stroke="#888888" x1="330.7328894305849" x2="329.73288943058486" y1="323.6312960000001" y2="323.6312960000001"/>
+  <line stroke="#888888" x1="349.7328894305849" x2="349.7328894305849" y1="323.6312960000001" y2="322.6312960000001"/>
+  <line stroke="#888888" x1="349.7328894305849" x2="350.7328894305849" y1="322.6312960000001" y2="322.6312960000001"/>
+  <line stroke="#888888" x1="350.7328894305849" x2="350.7328894305849" y1="322.6312960000001" y2="323.6312960000001"/>
+  <line stroke="#888888" x1="350.7328894305849" x2="349.7328894305849" y1="323.6312960000001" y2="323.6312960000001"/>
+  <line stroke="#888888" x1="329.73288943058486" x2="329.73288943058486" y1="326.131296" y2="325.131296"/>
+  <line stroke="#888888" x1="329.73288943058486" x2="330.7328894305849" y1="325.131296" y2="325.131296"/>
+  <line stroke="#888888" x1="330.7328894305849" x2="330.7328894305849" y1="325.131296" y2="326.131296"/>
+  <line stroke="#888888" x1="330.7328894305849" x2="329.73288943058486" y1="326.131296" y2="326.131296"/>
+  <line stroke="#888888" x1="349.7328894305849" x2="349.7328894305849" y1="326.131296" y2="325.131296"/>
+  <line stroke="#888888" x1="349.7328894305849" x2="350.7328894305849" y1="325.131296" y2="325.131296"/>
+  <line stroke="#888888" x1="350.7328894305849" x2="350.7328894305849" y1="325.131296" y2="326.131296"/>
+  <line stroke="#888888" x1="350.7328894305849" x2="349.7328894305849" y1="326.131296" y2="326.131296"/>
+  <line stroke="#888888" x1="329.73288943058486" x2="329.73288943058486" y1="328.6312960000001" y2="327.6312960000001"/>
+  <line stroke="#888888" x1="329.73288943058486" x2="330.7328894305849" y1="327.6312960000001" y2="327.6312960000001"/>
+  <line stroke="#888888" x1="330.7328894305849" x2="330.7328894305849" y1="327.6312960000001" y2="328.6312960000001"/>
+  <line stroke="#888888" x1="330.7328894305849" x2="329.73288943058486" y1="328.6312960000001" y2="328.6312960000001"/>
+  <line stroke="#888888" x1="348.73288943058486" x2="348.73288943058486" y1="329.6312960000001" y2="326.631296"/>
+  <line stroke="#888888" x1="348.73288943058486" x2="351.7328894305849" y1="326.631296" y2="326.631296"/>
+  <line stroke="#888888" x1="351.7328894305849" x2="351.7328894305849" y1="326.631296" y2="329.6312960000001"/>
+  <line stroke="#888888" x1="351.7328894305849" x2="348.73288943058486" y1="329.6312960000001" y2="329.6312960000001"/>
+  <line stroke="#888888" x1="344.4828894305849" x2="335.9828894305849" y1="286.6312960000001" y2="286.6312960000001"/>
+  <line stroke="#888888" x1="335.9828894305849" x2="335.9828894305849" y1="286.6312960000001" y2="286.1312960000001"/>
+  <line stroke="#888888" x1="335.9828894305849" x2="344.4828894305849" y1="286.1312960000001" y2="286.1312960000001"/>
+  <line stroke="#888888" x1="344.4828894305849" x2="344.4828894305849" y1="286.1312960000001" y2="286.6312960000001"/>
+  <line stroke="#888888" x1="335.9828894305849" x2="344.4828894305849" y1="334.381296" y2="334.381296"/>
+  <line stroke="#888888" x1="344.4828894305849" x2="344.4828894305849" y1="334.381296" y2="334.881296"/>
+  <line stroke="#888888" x1="344.4828894305849" x2="335.9828894305849" y1="334.881296" y2="334.881296"/>
+  <line stroke="#888888" x1="335.9828894305849" x2="335.9828894305849" y1="334.881296" y2="334.381296"/>
+  <line stroke="#888888" x1="320.73288943058486" x2="325.73288943058486" y1="289.9722050909092" y2="289.9722050909092"/>
+  <line stroke="#888888" x1="325.73288943058486" x2="325.73288943058486" y1="289.9722050909092" y2="301.0631141818182"/>
+  <line stroke="#888888" x1="325.73288943058486" x2="320.73288943058486" y1="301.0631141818182" y2="301.0631141818182"/>
+  <line stroke="#888888" x1="320.73288943058486" x2="325.73288943058486" y1="317.6994778181819" y2="317.6994778181819"/>
+  <line stroke="#888888" x1="325.73288943058486" x2="325.73288943058486" y1="317.6994778181819" y2="328.790386909091"/>
+  <line stroke="#888888" x1="325.73288943058486" x2="320.73288943058486" y1="328.790386909091" y2="328.790386909091"/>
+  <line stroke="#888888" x1="345.9828894305849" x2="349.4828894305849" y1="262.881296" y2="262.881296"/>
+  <line stroke="#888888" x1="349.4828894305849" x2="349.4828894305849" y1="262.881296" y2="270.8812960000001"/>
+  <line stroke="#888888" x1="349.4828894305849" x2="345.9828894305849" y1="270.8812960000001" y2="270.8812960000001"/>
 </svg>
diff --git a/rocolib/output/HouseboatWithServoMountAndStack/graph-autofold-default.dxf b/rocolib/output/HouseboatWithServoMountAndStack/graph-autofold-default.dxf
index 16b23379adaef42cd29b494ccbe67b1be7976b5a..931d7cc85ede036abf6b868e3f068de8b4493614 100644
--- a/rocolib/output/HouseboatWithServoMountAndStack/graph-autofold-default.dxf
+++ b/rocolib/output/HouseboatWithServoMountAndStack/graph-autofold-default.dxf
@@ -493,7 +493,7 @@ TABLE
   2
 LAYER
  70
-18
+19
   0
 LAYER
   2
@@ -547,7 +547,17 @@ CONTINUOUS
   0
 LAYER
   2
+90
+ 70
 0
+ 62
+1
+  6
+CONTINUOUS
+  0
+LAYER
+  2
+14.743562836470744
  70
 0
  62
@@ -557,7 +567,7 @@ CONTINUOUS
   0
 LAYER
   2
--90
+84.63837913267241
  70
 0
  62
@@ -567,7 +577,7 @@ CONTINUOUS
   0
 LAYER
   2
-90
+0
  70
 0
  62
@@ -577,7 +587,7 @@ CONTINUOUS
   0
 LAYER
   2
-45
+180
  70
 0
  62
@@ -587,7 +597,7 @@ CONTINUOUS
   0
 LAYER
   2
-11.30993247402023
+-180
  70
 0
  62
@@ -597,7 +607,7 @@ CONTINUOUS
   0
 LAYER
   2
-86.76946761667858
+-174
  70
 0
  62
@@ -607,7 +617,7 @@ CONTINUOUS
   0
 LAYER
   2
-180
+21.540975918538436
  70
 0
  62
@@ -617,7 +627,7 @@ CONTINUOUS
   0
 LAYER
   2
--180
+57.65255650055798
  70
 0
  62
@@ -627,7 +637,7 @@ CONTINUOUS
   0
 LAYER
   2
--174
+52.2299923307792
  70
 0
  62
@@ -637,7 +647,7 @@ CONTINUOUS
   0
 LAYER
   2
-16.699244233993625
+46.46880071438582
  70
 0
  62
@@ -647,7 +657,7 @@ CONTINUOUS
   0
 LAYER
   2
-50.19442890773482
+-90
  70
 0
  62
@@ -657,7 +667,7 @@ CONTINUOUS
   0
 LAYER
   2
-61.320865828384
+-45
  70
 0
  62
@@ -667,7 +677,7 @@ CONTINUOUS
   0
 LAYER
   2
-38.65980825409008
+45
  70
 0
  62
@@ -1068,20 +1078,22 @@ MVIEW
 }
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
-cut
+90
  10
-70.00000000000001
+127.92433336086202
  20
-214.98039000000003
+117.88129600000003
  30
 0.0
  11
-34.0
+127.92433336086202
  21
-214.98039000000003
+415.8812960000001
  31
 0.0
   0
@@ -1091,71 +1103,77 @@ DOTTED
  62
 1
   8
--90
+90
  10
-70.00000000000001
+37.924333360862015
  20
-214.98039000000003
+117.88129600000003
  30
 0.0
  11
-70.00000000000001
+37.924333360862015
  21
-238.98039000000003
+415.8812960000001
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
-cut
+14.743562836470744
  10
-34.0
+82.92433336086202
  20
-238.98039000000003
+117.88129600000003
  30
 0.0
  11
-70.00000000000001
+37.924333360862015
  21
-238.98039000000003
+117.88129600000003
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
-cut
+14.743562836470744
  10
-70.00000000000001
+127.92433336086202
  20
-238.98039000000003
+117.88129600000003
  30
 0.0
  11
-115.00000000000001
+82.92433336086202
  21
-238.98039000000003
+117.88129600000003
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
-cut
+84.63837913267241
  10
-115.00000000000001
+82.92433336086202
  20
-214.98039000000003
+-2.2633099661106828e-07
  30
 0.0
  11
-70.00000000000001
+37.924333360862015
  21
-214.98039000000003
+117.88129600000003
  31
 0.0
   0
@@ -1165,15 +1183,15 @@ LINE
   8
 cut
  10
-120.00000000000001
+18.56479320700301
  20
-214.98039000000003
+93.12697584332294
  30
 0.0
  11
-115.00000000000001
+13.244563283932509
  21
-214.98039000000003
+100.82524285309951
  31
 0.0
   0
@@ -1183,33 +1201,55 @@ LINE
   8
 cut
  10
-120.00000000000001
+82.92433336086201
  20
-238.98039000000003
+-2.2633093976764942e-07
  30
 0.0
  11
-120.00000000000001
+18.56479320700301
  21
-214.98039000000003
+93.12697584332294
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
-cut
+180
  10
-115.00000000000001
+37.92433336086201
  20
-238.98039000000003
+117.88129600000006
  30
 0.0
  11
-120.00000000000001
+13.244563283932509
  21
-238.98039000000003
+100.82524285309951
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+-180
+ 10
+37.924333360862015
+ 20
+117.88129600000003
+ 30
+0.0
+ 11
+7.924333360862009
+ 21
+108.52350986287608
  31
 0.0
   0
@@ -1219,15 +1259,15 @@ LINE
   8
 cut
  10
-0.0
+13.244563283932523
  20
-238.98039000000003
+100.82524285309951
  30
 0.0
  11
-34.0
+7.924333360862009
  21
-238.98039000000003
+108.52350986287608
  31
 0.0
   0
@@ -1237,35 +1277,37 @@ DOTTED
  62
 1
   8
-90
+-174
  10
-34.0
+7.924333360862009
  20
-214.98039000000003
+117.88129600000003
  30
 0.0
  11
-0.0
+7.924333360862009
  21
-214.98039000000003
+108.52350986287608
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
-cut
+21.540975918538436
  10
-0.0
+37.924333360862015
  20
-214.98039000000003
+117.88129600000003
  30
 0.0
  11
-0.0
+7.924333360862009
  21
-141.98039000000003
+117.88129600000003
  31
 0.0
   0
@@ -1275,15 +1317,15 @@ LINE
   8
 cut
  10
-0.0
+4.8050713151540245
  20
-248.98039000000003
+117.88129600000003
  30
 0.0
  11
-0.0
+7.924333360862009
  21
-238.98039000000003
+117.88129600000003
  31
 0.0
   0
@@ -1293,15 +1335,15 @@ LINE
   8
 cut
  10
-0.0
+4.8050713151540245
  20
-309.98039000000006
+108.52350986287608
  30
 0.0
  11
-0.0
+4.8050713151540245
  21
-309.98039000000006
+117.88129600000003
  31
 0.0
   0
@@ -1311,15 +1353,15 @@ LINE
   8
 cut
  10
-0.0
+7.924333360862009
  20
-141.98039000000003
+108.52350986287608
  30
 0.0
  11
-0.0
+4.8050713151540245
  21
-309.98039000000006
+108.52350986287608
  31
 0.0
   0
@@ -1329,15 +1371,15 @@ LINE
   8
 cut
  10
-0.0
+7.924333360861966
  20
-141.98039000000003
+415.88129600000013
  30
 0.0
  11
-0.0
+7.924333360862009
  21
-141.98039000000003
+117.88129600000003
  31
 0.0
   0
@@ -1347,35 +1389,57 @@ DOTTED
  62
 1
   8
-45
+57.65255650055798
  10
-36.138621999185304
+7.924333360861966
  20
-248.98039000000003
+415.88129600000013
  30
 0.0
  11
-36.138621999185304
+37.924333360861965
  21
-309.98039000000006
+415.88129600000013
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
-cut
+-180
  10
+7.924333360861966
+ 20
+439.65429608258603
+ 30
+0.0
+ 11
+37.924333360861965
+ 21
+415.88129600000013
+ 31
 0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+-174
+ 10
+7.924333360861966
  20
-309.98039000000006
+439.65429608258603
  30
 0.0
  11
-36.138621999185304
+7.924333360861966
  21
-309.98039000000006
+415.88129600000013
  31
 0.0
   0
@@ -1385,15 +1449,15 @@ LINE
   8
 cut
  10
-36.138621999185304
+7.924333360861952
  20
-248.98039000000003
+439.65429608258603
  30
 0.0
  11
-0.0
+31.068177965444168
  21
-248.98039000000003
+445.08734217530235
  31
 0.0
   0
@@ -1403,17 +1467,17 @@ DOTTED
  62
 1
   8
-45
+180
  10
-60.13862199918531
+31.068177965444168
  20
-309.98039000000006
+445.08734217530235
  30
 0.0
  11
-60.13862199918531
+37.924333360861965
  21
-248.98039000000003
+415.88129600000013
  31
 0.0
   0
@@ -1423,17 +1487,17 @@ DOTTED
  62
 1
   8
-90
+52.2299923307792
  10
-60.13862199918531
+82.92433336086197
  20
-309.98039000000006
+457.26063867240134
  30
 0.0
  11
-36.138621999185304
+37.924333360861965
  21
-309.98039000000006
+415.88129600000013
  31
 0.0
   0
@@ -1443,15 +1507,15 @@ LINE
   8
 cut
  10
-96.27724399837062
+54.21202257002637
  20
-248.98039000000003
+450.5203882680186
  30
 0.0
  11
-60.13862199918531
+82.92433336086197
  21
-248.98039000000003
+457.26063867240134
  31
 0.0
   0
@@ -1461,69 +1525,75 @@ LINE
   8
 cut
  10
-60.13862199918531
+31.068177965444168
  20
-309.98039000000006
+445.08734217530235
  30
 0.0
  11
-96.27724399837062
+54.21202257002637
  21
-309.98039000000006
+450.5203882680186
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
-cut
+46.46880071438582
  10
-106.27724399837062
+37.924333360861965
  20
-248.98039000000003
+415.88129600000013
  30
 0.0
  11
-96.27724399837062
+82.92433336086197
  21
-248.98039000000003
+415.88129600000013
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
-cut
+46.46880071438582
  10
-106.27724399837062
+82.92433336086197
  20
-309.98039000000006
+415.88129600000013
  30
 0.0
  11
-106.27724399837062
+127.92433336086198
  21
-248.98039000000003
+415.88129600000013
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
-cut
+52.2299923307792
  10
-96.27724399837062
+82.92433336086195
  20
-309.98039000000006
+457.2606386724013
  30
 0.0
  11
-106.27724399837062
+127.92433336086198
  21
-309.98039000000006
+415.88129600000013
  31
 0.0
   0
@@ -1533,15 +1603,15 @@ LINE
   8
 cut
  10
-60.13862199918531
+111.63664415169755
  20
-319.98039
+450.5203882680186
  30
 0.0
  11
-60.13862199918531
+134.78048875627974
  21
-309.98039000000006
+445.08734217530235
  31
 0.0
   0
@@ -1551,51 +1621,55 @@ LINE
   8
 cut
  10
-36.138621999185304
+82.92433336086197
  20
-319.98039
+457.2606386724013
  30
 0.0
  11
-60.13862199918531
+111.63664415169755
  21
-319.98039
+450.5203882680186
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
-cut
+180
  10
-36.138621999185304
+127.92433336086198
  20
-309.98039000000006
+415.88129600000013
  30
 0.0
  11
-36.138621999185304
+134.78048875627974
  21
-319.98039
+445.08734217530235
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
-cut
+-180
  10
-36.138621999185304
+127.92433336086198
  20
-238.98039000000003
+415.88129600000013
  30
 0.0
  11
-36.138621999185304
+157.924333360862
  21
-248.98039000000003
+439.65429608258603
  31
 0.0
   0
@@ -1605,51 +1679,55 @@ LINE
   8
 cut
  10
-60.13862199918531
+134.78048875627974
  20
-238.98039000000003
+445.08734217530235
  30
 0.0
  11
-36.138621999185304
+157.924333360862
  21
-238.98039000000003
+439.65429608258603
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
-cut
+-174
  10
-60.13862199918531
+157.924333360862
  20
-248.98039000000003
+415.88129600000013
  30
 0.0
  11
-60.13862199918531
+157.924333360862
  21
-238.98039000000003
+439.65429608258603
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
-cut
+57.65255650055798
  10
-34.0
+127.92433336086197
  20
-214.98039000000003
+415.88129600000013
  30
 0.0
  11
-34.0
+157.924333360862
  21
-194.98039000000003
+415.88129600000013
  31
 0.0
   0
@@ -1659,35 +1737,33 @@ LINE
   8
 cut
  10
-0.0
+165.84866672172393
  20
-194.98039000000003
+415.88129600000013
  30
 0.0
  11
-0.0
+157.924333360862
  21
-214.98039000000003
+415.88129600000013
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
-90
+cut
  10
-34.0
+165.84866672172393
  20
-194.98039000000003
+439.65429608258603
  30
 0.0
  11
-0.0
+165.84866672172393
  21
-194.98039000000003
+415.88129600000013
  31
 0.0
   0
@@ -1697,15 +1773,15 @@ LINE
   8
 cut
  10
-34.0
+157.924333360862
  20
-194.98039000000003
+439.65429608258603
  30
 0.0
  11
-34.0
+165.84866672172393
  21
-170.98039000000003
+439.65429608258603
  31
 0.0
   0
@@ -1715,15 +1791,15 @@ LINE
   8
 cut
  10
-0.0
+157.92433336086205
  20
-170.98039000000003
+117.88129600000009
  30
 0.0
  11
-0.0
+157.924333360862
  21
-194.98039000000003
+415.88129600000013
  31
 0.0
   0
@@ -1733,35 +1809,57 @@ DOTTED
  62
 1
   8
-90
+21.540975918538436
  10
-34.0
+157.92433336086205
  20
-170.98039000000003
+117.88129600000009
  30
 0.0
  11
+127.92433336086204
+ 21
+117.88129600000009
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+-180
+ 10
+157.92433336086205
+ 20
+108.52350986287614
+ 30
 0.0
+ 11
+127.92433336086204
  21
-170.98039000000003
+117.88129600000009
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
-cut
+-174
  10
-34.0
+157.92433336086205
  20
-170.98039000000003
+108.52350986287614
  30
 0.0
  11
-34.0
+157.92433336086205
  21
-150.98039000000003
+117.88129600000009
  31
 0.0
   0
@@ -1771,15 +1869,15 @@ LINE
   8
 cut
  10
-0.0
+157.92433336086205
  20
-150.98039000000003
+108.52350986287614
  30
 0.0
  11
-0.0
+152.60410343779157
  21
-170.98039000000003
+100.82524285309957
  31
 0.0
   0
@@ -1789,35 +1887,37 @@ DOTTED
  62
 1
   8
-90
+180
  10
-0.0
+152.60410343779157
  20
-150.98039000000003
+100.82524285309957
  30
 0.0
  11
-34.0
+127.92433336086204
  21
-150.98039000000003
+117.88129600000009
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
-cut
+84.63837913267241
  10
-0.0
+82.9243333608621
  20
-140.98039
+-2.2633093976764942e-07
  30
 0.0
  11
-0.0
+127.92433336086204
  21
-150.98039000000003
+117.88129600000009
  31
 0.0
   0
@@ -1827,15 +1927,15 @@ LINE
   8
 cut
  10
-34.0
+147.28387351472105
  20
-140.98039
+93.126975843323
  30
 0.0
  11
-0.0
+82.9243333608621
  21
-140.98039
+-2.2633093976764942e-07
  31
 0.0
   0
@@ -1845,15 +1945,15 @@ LINE
   8
 cut
  10
-34.0
+152.60410343779157
  20
-150.98039000000003
+100.82524285309957
  30
 0.0
  11
-34.0
+147.28387351472105
  21
-140.98039
+93.126975843323
  31
 0.0
   0
@@ -1863,15 +1963,15 @@ LINE
   8
 cut
  10
-118.75000000000001
+161.04359540657003
  20
-230.98039000000003
+108.52350986287614
  30
 0.0
  11
-118.75000000000001
+157.92433336086205
  21
-233.48039000000003
+108.52350986287614
  31
 0.0
   0
@@ -1881,15 +1981,15 @@ LINE
   8
 cut
  10
-118.75000000000001
+161.04359540657003
  20
-233.48039000000003
+117.88129600000009
  30
 0.0
  11
-116.25000000000001
+161.04359540657003
  21
-230.98039000000003
+108.52350986287614
  31
 0.0
   0
@@ -1899,15 +1999,15 @@ LINE
   8
 cut
  10
-116.25000000000001
+157.92433336086205
  20
-230.98039000000003
+117.88129600000009
  30
 0.0
  11
-116.25000000000001
+161.04359540657003
  21
-222.98039000000003
+117.88129600000009
  31
 0.0
   0
@@ -1917,15 +2017,15 @@ LINE
   8
 cut
  10
-116.25000000000001
+157.924333360862
  20
-222.98039000000003
+345.88129600000013
  30
 0.0
  11
-118.75000000000001
+157.924333360862
  21
-220.48039
+345.88129600000013
  31
 0.0
   0
@@ -1935,15 +2035,15 @@ LINE
   8
 cut
  10
-118.75000000000001
+157.92433336086205
  20
-220.48039
+117.88129600000009
  30
 0.0
  11
-118.75000000000001
+157.92433336086205
  21
-222.98039000000003
+117.88129600000009
  31
 0.0
   0
@@ -1953,15 +2053,15 @@ LINE
   8
 cut
  10
-11.08333333333333
+157.92433336086205
  20
-231.23039000000003
+178.8812960000001
  30
 0.0
  11
-22.916666666666668
+157.92433336086205
  21
-231.23039000000003
+117.88129600000009
  31
 0.0
   0
@@ -1971,15 +2071,15 @@ LINE
   8
 cut
  10
-22.916666666666668
+157.92433336086205
  20
-231.23039000000003
+188.88129600000008
  30
 0.0
  11
-22.916666666666668
+157.92433336086205
  21
-231.73039000000003
+178.8812960000001
  31
 0.0
   0
@@ -1989,15 +2089,15 @@ LINE
   8
 cut
  10
-22.916666666666668
+157.92433336086202
  20
-231.73039000000003
+285.88129600000013
  30
 0.0
  11
-11.08333333333333
+157.92433336086205
  21
-231.73039000000003
+212.8812960000001
  31
 0.0
   0
@@ -2007,15 +2107,15 @@ LINE
   8
 cut
  10
-11.08333333333333
+157.92433336086202
  20
-231.73039000000003
+285.88129600000013
  30
 0.0
  11
-11.08333333333333
+157.92433336086202
  21
-231.23039000000003
+285.88129600000013
  31
 0.0
   0
@@ -2025,15 +2125,15 @@ LINE
   8
 cut
  10
-54.63862199918531
+157.92433336086205
  20
-266.98039
+117.88129600000009
  30
 0.0
  11
-54.63862199918531
+157.92433336086205
  21
-277.98039000000006
+117.88129600000009
  31
 0.0
   0
@@ -2043,33 +2143,35 @@ LINE
   8
 cut
  10
-54.63862199918531
+191.92433336086205
  20
-277.98039000000006
+188.88129600000008
  30
 0.0
  11
-41.63862199918531
+157.92433336086205
  21
-277.98039000000006
+188.88129600000008
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
-cut
+90
  10
-41.63862199918531
+157.92433336086205
  20
-277.98039000000006
+212.8812960000001
  30
 0.0
  11
-41.63862199918531
+191.92433336086205
  21
-266.98039
+212.8812960000001
  31
 0.0
   0
@@ -2079,33 +2181,35 @@ LINE
   8
 cut
  10
-41.63862199918531
+227.92433336086205
  20
-266.98039
+188.8812960000001
  30
 0.0
  11
-54.63862199918531
+191.92433336086205
  21
-266.98039
+188.8812960000001
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
-cut
+-90
  10
-53.13862199918531
+227.92433336086205
  20
-298.48039
+188.8812960000001
  30
 0.0
  11
-53.13862199918531
+227.92433336086205
  21
-304.48039000000006
+212.88129600000013
  31
 0.0
   0
@@ -2115,15 +2219,15 @@ LINE
   8
 cut
  10
-53.13862199918531
+191.92433336086205
  20
-304.48039000000006
+212.88129600000013
  30
 0.0
  11
-43.13862199918531
+227.92433336086205
  21
-304.48039000000006
+212.88129600000013
  31
 0.0
   0
@@ -2133,15 +2237,15 @@ LINE
   8
 cut
  10
-43.13862199918531
+227.92433336086205
  20
-304.48039000000006
+212.88129600000013
  30
 0.0
  11
-43.13862199918531
+272.924333360862
  21
-298.48039
+212.88129600000016
  31
 0.0
   0
@@ -2151,15 +2255,15 @@ LINE
   8
 cut
  10
-43.13862199918531
+272.924333360862
  20
-298.48039
+188.88129600000013
  30
 0.0
  11
-53.13862199918531
+227.92433336086205
  21
-298.48039
+188.8812960000001
  31
 0.0
   0
@@ -2169,15 +2273,15 @@ LINE
   8
 cut
  10
-103.77724399837062
+272.924333360862
  20
-298.88948090909093
+212.88129600000016
  30
 0.0
  11
-98.77724399837062
+272.924333360862
  21
-298.88948090909093
+188.88129600000013
  31
 0.0
   0
@@ -2187,15 +2291,15 @@ LINE
   8
 cut
  10
-98.77724399837062
+157.92433336086205
  20
-298.88948090909093
+212.8812960000001
  30
 0.0
  11
-98.77724399837062
+157.92433336086205
  21
-287.79857181818187
+232.8812960000001
  31
 0.0
   0
@@ -2205,33 +2309,35 @@ LINE
   8
 cut
  10
-98.77724399837062
+191.92433336086205
  20
-287.79857181818187
+232.8812960000001
  30
 0.0
  11
-103.77724399837062
+191.92433336086205
  21
-287.79857181818187
+212.8812960000001
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
-cut
+90
  10
-103.77724399837062
+157.92433336086205
  20
-271.16220818181824
+232.8812960000001
  30
 0.0
  11
-98.77724399837062
+191.92433336086205
  21
-271.16220818181824
+232.8812960000001
  31
 0.0
   0
@@ -2241,15 +2347,15 @@ LINE
   8
 cut
  10
-98.77724399837062
+157.92433336086205
  20
-271.16220818181824
+232.8812960000001
  30
 0.0
  11
-98.77724399837062
+157.92433336086205
  21
-260.0712990909091
+256.88129600000013
  31
 0.0
   0
@@ -2259,33 +2365,35 @@ LINE
   8
 cut
  10
-98.77724399837062
+191.92433336086205
  20
-260.0712990909091
+256.88129600000013
  30
 0.0
  11
-103.77724399837062
+191.92433336086205
  21
-260.0712990909091
+232.8812960000001
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
-cut
+90
  10
-44.138621999185304
+157.92433336086205
  20
-317.48039000000006
+256.88129600000013
  30
 0.0
  11
-44.138621999185304
+191.92433336086205
  21
-312.48039000000006
+256.88129600000013
  31
 0.0
   0
@@ -2295,15 +2403,15 @@ LINE
   8
 cut
  10
-44.138621999185304
+157.92433336086205
  20
-312.48039000000006
+256.88129600000013
  30
 0.0
  11
-52.13862199918531
+157.92433336086205
  21
-312.48039000000006
+276.88129600000013
  31
 0.0
   0
@@ -2313,33 +2421,35 @@ LINE
   8
 cut
  10
-52.13862199918531
+191.92433336086205
  20
-312.48039000000006
+276.88129600000013
  30
 0.0
  11
-52.13862199918531
+191.92433336086205
  21
-317.48039000000006
+256.88129600000013
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
-cut
+90
  10
-52.13862199918531
+191.92433336086205
  20
-241.48039000000003
+276.88129600000013
  30
 0.0
  11
-52.13862199918531
+157.92433336086205
  21
-246.48039000000003
+276.88129600000013
  31
 0.0
   0
@@ -2349,15 +2459,15 @@ LINE
   8
 cut
  10
-52.13862199918531
+191.92433336086205
  20
-246.48039000000003
+286.88129600000013
  30
 0.0
  11
-44.138621999185304
+191.92433336086205
  21
-246.48039000000003
+276.88129600000013
  31
 0.0
   0
@@ -2367,15 +2477,15 @@ LINE
   8
 cut
  10
-44.138621999185304
+157.92433336086205
  20
-246.48039000000003
+286.88129600000013
  30
 0.0
  11
-44.138621999185304
+191.92433336086205
  21
-241.48039000000003
+286.88129600000013
  31
 0.0
   0
@@ -2385,15 +2495,15 @@ LINE
   8
 cut
  10
-23.000000000000004
+157.92433336086205
  20
-195.98039000000003
+276.88129600000013
  30
 0.0
  11
-23.000000000000004
+157.92433336086205
  21
-199.98039
+286.88129600000013
  31
 0.0
   0
@@ -2403,15 +2513,15 @@ LINE
   8
 cut
  10
-23.000000000000004
+157.924333360862
  20
-199.98039
+345.88129600000013
  30
 0.0
  11
-11.000000000000002
+219.57861139572347
  21
-199.98039
+345.8812960000002
  31
 0.0
   0
@@ -2421,33 +2531,35 @@ LINE
   8
 cut
  10
-11.000000000000002
+219.57861139572347
  20
-199.98039
+285.88129600000013
  30
 0.0
  11
-11.000000000000002
+157.92433336086202
  21
-195.98039000000003
+285.88129600000013
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
-cut
+-45
  10
-11.000000000000002
+219.57861139572347
  20
-195.98039000000003
+285.88129600000013
  30
 0.0
  11
-23.000000000000004
+219.57861139572347
  21
-195.98039000000003
+345.8812960000002
  31
 0.0
   0
@@ -2457,51 +2569,55 @@ LINE
   8
 cut
  10
-21.500000000000004
+246.5786113957235
  20
-207.98039000000003
+285.8812960000002
  30
 0.0
  11
-21.500000000000004
+219.57861139572347
  21
-211.98039000000003
+285.88129600000013
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
-cut
+-45
  10
-21.500000000000004
+246.5786113957235
  20
-211.98039000000003
+345.8812960000002
  30
 0.0
  11
-12.5
+246.5786113957235
  21
-211.98039000000003
+285.8812960000002
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
-cut
+90
  10
-12.5
+219.57861139572347
  20
-211.98039000000003
+345.8812960000002
  30
 0.0
  11
-12.5
+246.5786113957235
  21
-207.98039000000003
+345.8812960000002
  31
 0.0
   0
@@ -2511,15 +2627,15 @@ LINE
   8
 cut
  10
-12.5
+308.2328894305849
  20
-207.98039000000003
+285.8812960000002
  30
 0.0
  11
-21.500000000000004
+246.5786113957235
  21
-207.98039000000003
+285.8812960000002
  31
 0.0
   0
@@ -2529,15 +2645,15 @@ LINE
   8
 cut
  10
-23.000000000000004
+308.2328894305849
  20
-171.48039000000003
+345.8812960000002
  30
 0.0
  11
-23.000000000000004
+308.2328894305849
  21
-194.48039000000003
+285.8812960000002
  31
 0.0
   0
@@ -2547,15 +2663,15 @@ LINE
   8
 cut
  10
-23.000000000000004
+246.5786113957234
  20
-194.48039000000003
+345.8812960000002
  30
 0.0
  11
-11.000000000000002
+308.2328894305849
  21
-194.48039000000003
+345.8812960000002
  31
 0.0
   0
@@ -2565,15 +2681,15 @@ LINE
   8
 cut
  10
-11.000000000000002
+219.57861139572339
  20
-194.48039000000003
+345.8812960000002
  30
 0.0
  11
-11.000000000000002
+219.57861139572339
  21
-171.48039000000003
+362.8812960000002
  31
 0.0
   0
@@ -2583,33 +2699,35 @@ LINE
   8
 cut
  10
-11.000000000000002
+246.5786113957234
  20
-171.48039000000003
+362.8812960000002
  30
 0.0
  11
-23.000000000000004
+246.5786113957234
  21
-171.48039000000003
+345.8812960000002
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
-cut
+90
  10
-23.000000000000004
+219.57861139572339
  20
-165.98039
+362.8812960000002
  30
 0.0
  11
-23.000000000000004
+246.5786113957234
  21
-169.98039000000003
+362.8812960000002
  31
 0.0
   0
@@ -2619,15 +2737,15 @@ LINE
   8
 cut
  10
-23.000000000000004
+219.57861139572339
  20
-169.98039000000003
+362.8812960000002
  30
 0.0
  11
-11.000000000000002
+219.57861139572339
  21
-169.98039000000003
+422.8812960000002
  31
 0.0
   0
@@ -2637,33 +2755,35 @@ LINE
   8
 cut
  10
-11.000000000000002
+246.5786113957234
  20
-169.98039000000003
+422.8812960000002
  30
 0.0
  11
-11.000000000000002
+246.5786113957234
  21
-165.98039
+362.8812960000002
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
-cut
+90
  10
-11.000000000000002
+219.57861139572339
  20
-165.98039
+422.8812960000002
  30
 0.0
  11
-23.000000000000004
+246.5786113957234
  21
-165.98039
+422.8812960000002
  31
 0.0
   0
@@ -2673,15 +2793,15 @@ LINE
   8
 cut
  10
-22.666666666666668
+219.57861139572339
  20
-143.48039
+422.8812960000002
  30
 0.0
  11
-22.666666666666668
+219.57861139572339
  21
-148.48039000000003
+439.8812960000002
  31
 0.0
   0
@@ -2691,33 +2811,35 @@ LINE
   8
 cut
  10
-22.666666666666668
+246.5786113957234
  20
-148.48039000000003
+439.8812960000002
  30
 0.0
  11
-11.33333333333333
+246.5786113957234
  21
-148.48039000000003
+422.8812960000002
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
-cut
+90
  10
-11.33333333333333
+246.5786113957234
  20
-148.48039000000003
+439.8812960000002
  30
 0.0
  11
-11.33333333333333
+219.57861139572339
  21
-143.48039
+439.8812960000002
  31
 0.0
   0
@@ -2727,35 +2849,33 @@ LINE
   8
 cut
  10
-200.0
+246.5786113957234
  20
-214.98039000000003
+449.8812960000002
  30
 0.0
  11
-164.0
+246.5786113957234
  21
-214.98039000000003
+439.8812960000002
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
--90
+cut
  10
-200.0
+219.57861139572339
  20
-214.98039000000003
+449.8812960000002
  30
 0.0
  11
-200.0
+246.5786113957234
  21
-238.98039000000003
+449.8812960000002
  31
 0.0
   0
@@ -2765,15 +2885,15 @@ LINE
   8
 cut
  10
-164.0
+219.57861139572339
  20
-238.98039000000003
+439.8812960000002
  30
 0.0
  11
-200.0
+219.57861139572339
  21
-238.98039000000003
+449.8812960000002
  31
 0.0
   0
@@ -2783,15 +2903,15 @@ LINE
   8
 cut
  10
-200.0
+157.92433336086205
  20
-238.98039000000003
+117.88129600000009
  30
 0.0
  11
-245.00000000000003
+157.92433336086205
  21
-238.98039000000003
+117.88129600000009
  31
 0.0
   0
@@ -2801,15 +2921,15 @@ LINE
   8
 cut
  10
-245.00000000000003
+157.92433336086205
  20
-214.98039000000003
+231.8812960000001
  30
 0.0
  11
-200.0
+157.92433336086205
  21
-214.98039000000003
+117.88129600000009
  31
 0.0
   0
@@ -2819,15 +2939,15 @@ LINE
   8
 cut
  10
-245.00000000000003
+157.924333360862
  20
-238.98039000000003
+415.88129600000013
  30
 0.0
  11
-245.00000000000003
+157.92433336086202
  21
-214.98039000000003
+301.88129600000013
  31
 0.0
   0
@@ -2837,15 +2957,15 @@ LINE
   8
 cut
  10
-164.0
+157.924333360862
  20
-214.98039000000003
+415.88129600000013
  30
 0.0
  11
-130.0
+157.924333360862
  21
-214.98039000000003
+415.88129600000013
  31
 0.0
   0
@@ -2857,15 +2977,15 @@ DOTTED
   8
 90
  10
-130.0
+187.924333360862
  20
-238.98039000000003
+301.88129600000013
  30
 0.0
  11
-164.0
+157.924333360862
  21
-238.98039000000003
+301.88129600000013
  31
 0.0
   0
@@ -2875,33 +2995,35 @@ LINE
   8
 cut
  10
-130.0
+187.92433336086205
  20
-204.98039000000003
+231.8812960000001
  30
 0.0
  11
-130.0
+157.92433336086205
  21
-143.98039000000003
+231.8812960000001
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
-cut
+90
  10
-130.0
+187.924333360862
  20
-214.98039000000003
+301.88129600000013
  30
 0.0
  11
-130.0
+187.92433336086205
  21
-204.98039000000003
+231.8812960000001
  31
 0.0
   0
@@ -2911,15 +3033,15 @@ LINE
   8
 cut
  10
-130.0
+187.924333360862
  20
-311.98039
+311.8812960000001
  30
 0.0
  11
-130.0
+187.924333360862
  21
-238.98039000000003
+301.88129600000013
  31
 0.0
   0
@@ -2929,15 +3051,15 @@ LINE
   8
 cut
  10
-130.0
+157.924333360862
  20
-311.98039
+311.8812960000001
  30
 0.0
  11
-130.0
+187.924333360862
  21
-311.98039
+311.8812960000001
  31
 0.0
   0
@@ -2947,89 +3069,93 @@ LINE
   8
 cut
  10
-130.0
+157.924333360862
  20
-143.98039000000003
+301.88129600000013
  30
 0.0
  11
-130.0
+157.924333360862
  21
-311.98039
+311.8812960000001
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
-cut
+90
  10
-130.0
+277.924333360862
  20
-143.98039000000003
+301.88129600000013
  30
 0.0
  11
-130.0
+187.92433336086205
  21
-143.98039000000003
+301.88129600000013
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
-cut
+90
  10
-130.0
+187.92433336086205
  20
-238.98039000000003
+231.8812960000001
  30
 0.0
  11
-130.0
+277.924333360862
  21
-258.98039000000006
+231.88129600000016
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
-cut
+90
  10
-164.0
+277.924333360862
  20
-258.98039000000006
+231.88129600000016
  30
 0.0
  11
-164.0
+277.924333360862
  21
-238.98039000000003
+301.88129600000013
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
-90
+cut
  10
-130.0
+187.924333360862
  20
-258.98039000000006
+331.88129600000013
  30
 0.0
  11
-164.0
+277.92433336086197
  21
-258.98039000000006
+331.8812960000002
  31
 0.0
   0
@@ -3039,15 +3165,15 @@ LINE
   8
 cut
  10
-130.0
+187.92433336086202
  20
-258.98039000000006
+301.88129600000013
  30
 0.0
  11
-130.0
+187.924333360862
  21
-282.98039000000006
+331.88129600000013
  31
 0.0
   0
@@ -3057,15 +3183,15 @@ LINE
   8
 cut
  10
-164.0
+277.92433336086197
  20
-282.98039000000006
+331.8812960000002
  30
 0.0
  11
-164.0
+277.92433336086197
  21
-258.98039000000006
+301.88129600000013
  31
 0.0
   0
@@ -3077,15 +3203,15 @@ DOTTED
   8
 90
  10
-130.0
+187.92433336086205
  20
-282.98039000000006
+231.8812960000001
  30
 0.0
  11
-164.0
+187.92433336086205
  21
-282.98039000000006
+201.8812960000001
  31
 0.0
   0
@@ -3095,15 +3221,15 @@ LINE
   8
 cut
  10
-130.0
+277.924333360862
  20
-282.98039000000006
+201.88129600000016
  30
 0.0
  11
-130.0
+187.92433336086205
  21
-302.98039
+201.8812960000001
  31
 0.0
   0
@@ -3113,35 +3239,33 @@ LINE
   8
 cut
  10
-164.0
+277.924333360862
  20
-302.98039
+231.88129600000016
  30
 0.0
  11
-164.0
+277.924333360862
  21
-282.98039000000006
+201.88129600000016
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
-90
+cut
  10
-164.0
+177.92433336086205
  20
-302.98039
+231.8812960000001
  30
 0.0
  11
-130.0
+187.92433336086205
  21
-302.98039
+231.8812960000001
  31
 0.0
   0
@@ -3151,15 +3275,15 @@ LINE
   8
 cut
  10
-164.0
+177.92433336086205
  20
-312.98039000000006
+201.8812960000001
  30
 0.0
  11
-164.0
+177.92433336086205
  21
-302.98039
+231.8812960000001
  31
 0.0
   0
@@ -3169,51 +3293,55 @@ LINE
   8
 cut
  10
-130.0
+187.92433336086205
  20
-312.98039000000006
+201.8812960000001
  30
 0.0
  11
-164.0
+177.92433336086205
  21
-312.98039000000006
+201.8812960000001
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
-cut
+90
  10
-130.0
+307.9243333608621
  20
-302.98039
+301.88129600000013
  30
 0.0
  11
-130.0
+277.924333360862
  21
-312.98039000000006
+301.88129600000013
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
-cut
+90
  10
-241.00000000000003
+277.924333360862
  20
-231.23039000000003
+231.88129600000016
  30
 0.0
  11
-241.00000000000003
+307.9243333608621
  21
-222.73039
+231.88129600000016
  31
 0.0
   0
@@ -3223,15 +3351,15 @@ LINE
   8
 cut
  10
-241.00000000000003
+307.924333360862
  20
-222.73039
+311.88129600000013
  30
 0.0
  11
-241.50000000000003
+307.924333360862
  21
-222.73039
+301.88129600000013
  31
 0.0
   0
@@ -3241,15 +3369,15 @@ LINE
   8
 cut
  10
-241.50000000000003
+277.92433336086197
  20
-222.73039
+311.88129600000013
  30
 0.0
  11
-241.50000000000003
+307.924333360862
  21
-231.23039000000003
+311.88129600000013
  31
 0.0
   0
@@ -3259,15 +3387,15 @@ LINE
   8
 cut
  10
-241.50000000000003
+277.92433336086197
  20
-231.23039000000003
+301.88129600000013
  30
 0.0
  11
-241.00000000000003
+277.92433336086197
  21
-231.23039000000003
+311.88129600000013
  31
 0.0
   0
@@ -3277,15 +3405,15 @@ LINE
   8
 cut
  10
-152.91666666666669
+277.924333360862
  20
-222.73039
+221.88129600000016
  30
 0.0
  11
-141.08333333333334
+277.924333360862
  21
-222.73039
+231.88129600000016
  31
 0.0
   0
@@ -3295,15 +3423,15 @@ LINE
   8
 cut
  10
-141.08333333333334
+307.9243333608621
  20
-222.73039
+221.88129600000016
  30
 0.0
  11
-141.08333333333334
+277.924333360862
  21
-222.23039000000003
+221.88129600000016
  31
 0.0
   0
@@ -3313,15 +3441,15 @@ LINE
   8
 cut
  10
-141.08333333333334
+307.9243333608621
  20
-222.23039000000003
+231.88129600000016
  30
 0.0
  11
-152.91666666666669
+307.9243333608621
  21
-222.23039000000003
+221.88129600000016
  31
 0.0
   0
@@ -3331,15 +3459,15 @@ LINE
   8
 cut
  10
-152.91666666666669
+307.924333360862
  20
-222.23039000000003
+415.8812960000002
  30
 0.0
  11
-152.91666666666669
+307.924333360862
  21
-222.73039
+415.8812960000002
  31
 0.0
   0
@@ -3349,15 +3477,15 @@ LINE
   8
 cut
  10
-122.25000000000001
+307.924333360862
  20
-166.41220818181822
+301.88129600000013
  30
 0.0
  11
-122.25000000000001
+307.924333360862
  21
-154.82129909090912
+415.8812960000002
  31
 0.0
   0
@@ -3367,15 +3495,15 @@ LINE
   8
 cut
  10
-122.25000000000001
+307.9243333608621
  20
-154.82129909090912
+117.88129600000015
  30
 0.0
  11
-122.75000000000001
+307.9243333608621
  21
-154.82129909090912
+231.88129600000016
  31
 0.0
   0
@@ -3385,15 +3513,15 @@ LINE
   8
 cut
  10
-122.75000000000001
+307.9243333608621
  20
-154.82129909090912
+117.88129600000015
  30
 0.0
  11
-122.75000000000001
+307.9243333608621
  21
-166.41220818181822
+117.88129600000015
  31
 0.0
   0
@@ -3403,15 +3531,15 @@ LINE
   8
 cut
  10
-122.75000000000001
+307.9243333608621
  20
-166.41220818181822
+187.88129600000016
  30
 0.0
  11
-122.25000000000001
+307.9243333608621
  21
-166.41220818181822
+187.88129600000016
  31
 0.0
   0
@@ -3421,15 +3549,15 @@ LINE
   8
 cut
  10
-122.25000000000001
+307.924333360862
  20
-194.13948090909093
+415.8812960000002
  30
 0.0
  11
-122.25000000000001
+307.924333360862
  21
-182.54857181818184
+415.8812960000002
  31
 0.0
   0
@@ -3439,15 +3567,15 @@ LINE
   8
 cut
  10
-122.25000000000001
+297.924333360862
  20
-182.54857181818184
+415.8812960000002
  30
 0.0
  11
-122.75000000000001
+307.924333360862
  21
-182.54857181818184
+415.8812960000002
  31
 0.0
   0
@@ -3457,15 +3585,15 @@ LINE
   8
 cut
  10
-122.75000000000001
+297.924333360862
  20
-182.54857181818184
+355.8812960000002
  30
 0.0
  11
-122.75000000000001
+297.924333360862
  21
-194.13948090909093
+415.8812960000002
  31
 0.0
   0
@@ -3475,15 +3603,15 @@ LINE
   8
 cut
  10
-122.75000000000001
+307.924333360862
  20
-194.13948090909093
+355.8812960000002
  30
 0.0
  11
-122.25000000000001
+297.924333360862
  21
-194.13948090909093
+355.8812960000002
  31
 0.0
   0
@@ -3493,15 +3621,15 @@ LINE
   8
 cut
  10
-141.0
+307.9243333608621
  20
-257.98039000000006
+282.8812960000002
  30
 0.0
  11
-141.0
+307.924333360862
  21
-253.98039000000003
+355.8812960000002
  31
 0.0
   0
@@ -3511,15 +3639,15 @@ LINE
   8
 cut
  10
-141.0
+307.9243333608621
  20
-253.98039000000003
+248.88129600000016
  30
 0.0
  11
-153.00000000000003
+307.9243333608621
  21
-253.98039000000003
+258.8812960000002
  31
 0.0
   0
@@ -3529,15 +3657,15 @@ LINE
   8
 cut
  10
-153.00000000000003
+307.9243333608621
  20
-253.98039000000003
+187.88129600000016
  30
 0.0
  11
-153.00000000000003
+307.9243333608621
  21
-257.98039000000006
+187.88129600000016
  31
 0.0
   0
@@ -3547,15 +3675,15 @@ LINE
   8
 cut
  10
-153.00000000000003
+307.924333360862
  20
-257.98039000000006
+355.8812960000002
  30
 0.0
  11
-141.0
+307.924333360862
  21
-257.98039000000006
+355.8812960000002
  31
 0.0
   0
@@ -3565,33 +3693,35 @@ LINE
   8
 cut
  10
-142.50000000000003
+307.9243333608621
  20
-245.98039000000003
+258.8812960000002
  30
 0.0
  11
-142.50000000000003
+273.9243333608621
  21
-241.98039000000003
+258.8812960000002
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
-cut
+90
  10
-142.50000000000003
+273.9243333608621
  20
-241.98039000000003
+282.8812960000002
  30
 0.0
  11
-151.50000000000003
+307.9243333608621
  21
-241.98039000000003
+282.8812960000002
  31
 0.0
   0
@@ -3601,33 +3731,35 @@ LINE
   8
 cut
  10
-151.50000000000003
+237.92433336086205
  20
-241.98039000000003
+282.8812960000002
  30
 0.0
  11
-151.50000000000003
+273.9243333608621
  21
-245.98039000000003
+282.8812960000002
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
-cut
+-90
  10
-151.50000000000003
+237.92433336086205
  20
-245.98039000000003
+282.8812960000002
  30
 0.0
  11
-142.50000000000003
+237.92433336086205
  21
-245.98039000000003
+258.8812960000002
  31
 0.0
   0
@@ -3637,15 +3769,15 @@ LINE
   8
 cut
  10
-141.0
+273.9243333608621
  20
-282.48039000000006
+258.8812960000002
  30
 0.0
  11
-141.0
+237.92433336086205
  21
-259.48039
+258.8812960000002
  31
 0.0
   0
@@ -3655,15 +3787,15 @@ LINE
   8
 cut
  10
-141.0
+237.92433336086205
  20
-259.48039
+258.8812960000002
  30
 0.0
  11
-153.00000000000003
+192.92433336086202
  21
-259.48039
+258.88129600000013
  31
 0.0
   0
@@ -3673,15 +3805,15 @@ LINE
   8
 cut
  10
-153.00000000000003
+192.92433336086202
  20
-259.48039
+282.88129600000013
  30
 0.0
  11
-153.00000000000003
+237.92433336086205
  21
-282.48039000000006
+282.8812960000002
  31
 0.0
   0
@@ -3691,15 +3823,15 @@ LINE
   8
 cut
  10
-153.00000000000003
+187.92433336086205
  20
-282.48039000000006
+282.88129600000013
  30
 0.0
  11
-141.0
+192.92433336086202
  21
-282.48039000000006
+282.88129600000013
  31
 0.0
   0
@@ -3709,15 +3841,15 @@ LINE
   8
 cut
  10
-141.0
+187.92433336086205
  20
-287.98039
+258.88129600000013
  30
 0.0
  11
-141.0
+187.92433336086205
  21
-283.98039
+282.88129600000013
  31
 0.0
   0
@@ -3727,15 +3859,15 @@ LINE
   8
 cut
  10
-141.0
+192.92433336086202
  20
-283.98039
+258.88129600000013
  30
 0.0
  11
-153.00000000000003
+187.92433336086205
  21
-283.98039
+258.88129600000013
  31
 0.0
   0
@@ -3745,15 +3877,15 @@ LINE
   8
 cut
  10
-153.00000000000003
+273.9243333608621
  20
-283.98039
+282.8812960000002
  30
 0.0
  11
-153.00000000000003
+273.9243333608621
  21
-287.98039
+302.88129600000013
  31
 0.0
   0
@@ -3763,33 +3895,35 @@ LINE
   8
 cut
  10
-153.00000000000003
+307.9243333608621
  20
-287.98039
+302.88129600000013
  30
 0.0
  11
-141.0
+307.9243333608621
  21
-287.98039
+282.8812960000002
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
-cut
+90
  10
-141.33333333333334
+273.9243333608621
  20
-310.48039000000006
+302.88129600000013
  30
 0.0
  11
-141.33333333333334
+307.9243333608621
  21
-305.48039000000006
+302.88129600000013
  31
 0.0
   0
@@ -3799,15 +3933,15 @@ LINE
   8
 cut
  10
-141.33333333333334
+273.9243333608621
  20
-305.48039000000006
+302.88129600000013
  30
 0.0
  11
-152.66666666666666
+273.9243333608621
  21
-305.48039000000006
+326.8812960000002
  31
 0.0
   0
@@ -3817,15 +3951,15 @@ LINE
   8
 cut
  10
-152.66666666666666
+307.9243333608621
  20
-305.48039000000006
+326.8812960000002
  30
 0.0
  11
-152.66666666666666
+307.9243333608621
  21
-310.48039000000006
+302.88129600000013
  31
 0.0
   0
@@ -3837,55 +3971,51 @@ DOTTED
   8
 90
  10
-288.00000000000006
+273.9243333608621
  20
-214.98039000000003
+326.8812960000002
  30
 0.0
  11
-349.00000000000006
+307.9243333608621
  21
-214.98039000000003
+326.8812960000002
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
-90
+cut
  10
-349.00000000000006
+273.9243333608621
  20
-214.98039000000003
+326.8812960000002
  30
 0.0
  11
-349.00000000000006
+273.9243333608621
  21
-238.98039000000003
+346.8812960000002
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
-90
+cut
  10
-349.00000000000006
+307.9243333608621
  20
-238.98039000000003
+346.8812960000002
  30
 0.0
  11
-288.00000000000006
+307.9243333608621
  21
-238.98039000000003
+326.8812960000002
  31
 0.0
   0
@@ -3897,15 +4027,15 @@ DOTTED
   8
 90
  10
-288.00000000000006
+307.9243333608621
  20
-238.98039000000003
+346.8812960000002
  30
 0.0
  11
-288.00000000000006
+273.9243333608621
  21
-214.98039000000003
+346.8812960000002
  31
 0.0
   0
@@ -3915,15 +4045,15 @@ LINE
   8
 cut
  10
-288.00000000000006
+307.9243333608621
  20
-207.98039000000003
+356.88129600000013
  30
 0.0
  11
-288.00000000000006
+307.9243333608621
  21
-214.98039000000003
+346.8812960000002
  31
 0.0
   0
@@ -3933,15 +4063,15 @@ LINE
   8
 cut
  10
-348.00000000000006
+273.9243333608621
  20
-207.98039000000003
+356.88129600000013
  30
 0.0
  11
-288.00000000000006
+307.9243333608621
  21
-207.98039000000003
+356.88129600000013
  31
 0.0
   0
@@ -3951,33 +4081,35 @@ LINE
   8
 cut
  10
-348.00000000000006
+273.9243333608621
  20
-214.98039000000003
+346.8812960000002
  30
 0.0
  11
-348.00000000000006
+273.9243333608621
  21
-207.98039000000003
+356.88129600000013
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
-cut
+45
  10
-356.00000000000006
+271.78571136167676
  20
-214.98039000000003
+248.88129600000016
  30
 0.0
  11
-349.00000000000006
+271.7857113616768
  21
-214.98039000000003
+187.88129600000016
  31
 0.0
   0
@@ -3987,15 +4119,15 @@ LINE
   8
 cut
  10
-356.00000000000006
+307.9243333608621
  20
-238.98039000000003
+187.88129600000016
  30
 0.0
  11
-356.00000000000006
+271.7857113616768
  21
-214.98039000000003
+187.88129600000016
  31
 0.0
   0
@@ -4005,15 +4137,15 @@ LINE
   8
 cut
  10
-349.00000000000006
+271.78571136167676
  20
-238.98039000000003
+248.88129600000016
  30
 0.0
  11
-356.00000000000006
+307.9243333608621
  21
-238.98039000000003
+248.88129600000016
  31
 0.0
   0
@@ -4023,55 +4155,55 @@ DOTTED
  62
 1
   8
-90
+45
  10
-349.00000000000006
+247.78571136167673
  20
-238.98039000000003
+187.88129600000016
  30
 0.0
  11
-349.00000000000006
+247.78571136167673
  21
-299.98039000000006
+248.88129600000013
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
-cut
+90
  10
-289.00000000000006
+247.78571136167673
  20
-299.98039000000006
+187.88129600000016
  30
 0.0
  11
-349.00000000000006
+271.78571136167676
  21
-299.98039000000006
+187.88129600000016
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
-90
+cut
  10
-289.00000000000006
+211.64708936249147
  20
-238.98039000000003
+248.88129600000013
  30
 0.0
  11
-289.00000000000006
+247.78571136167673
  21
-299.98039000000006
+248.88129600000013
  31
 0.0
   0
@@ -4081,35 +4213,33 @@ LINE
   8
 cut
  10
-373.0
+247.7857113616768
  20
-238.98039000000003
+187.88129600000013
  30
 0.0
  11
-349.00000000000006
+211.64708936249147
  21
-238.98039000000003
+187.88129600000013
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
-90
+cut
  10
-373.0
+201.64708936249147
  20
-238.98039000000003
+248.8812960000001
  30
 0.0
  11
-373.0
+211.64708936249147
  21
-299.98039000000006
+248.8812960000001
  31
 0.0
   0
@@ -4119,15 +4249,15 @@ LINE
   8
 cut
  10
-349.00000000000006
+201.64708936249147
  20
-299.98039000000006
+187.8812960000001
  30
 0.0
  11
-373.0
+201.64708936249147
  21
-299.98039000000006
+248.8812960000001
  31
 0.0
   0
@@ -4137,15 +4267,15 @@ LINE
   8
 cut
  10
-433.00000000000006
+211.64708936249147
  20
-238.98039000000003
+187.8812960000001
  30
 0.0
  11
-373.0
+201.64708936249147
  21
-238.98039000000003
+187.8812960000001
  31
 0.0
   0
@@ -4155,15 +4285,15 @@ LINE
   8
 cut
  10
-433.00000000000006
+247.7857113616768
  20
-299.98039000000006
+177.8812960000001
  30
 0.0
  11
-433.00000000000006
+247.7857113616768
  21
-238.98039000000003
+187.88129600000013
  31
 0.0
   0
@@ -4173,15 +4303,15 @@ LINE
   8
 cut
  10
-373.0
+271.7857113616768
  20
-299.98039000000006
+177.88129600000016
  30
 0.0
  11
-433.00000000000006
+247.7857113616768
  21
-299.98039000000006
+177.8812960000001
  31
 0.0
   0
@@ -4191,15 +4321,15 @@ LINE
   8
 cut
  10
-289.00000000000006
+271.7857113616768
  20
-238.98039000000003
+187.88129600000016
  30
 0.0
  11
-265.00000000000006
+271.7857113616768
  21
-238.98039000000003
+177.88129600000016
  31
 0.0
   0
@@ -4209,35 +4339,33 @@ LINE
   8
 cut
  10
-265.00000000000006
+271.78571136167676
  20
-299.98039000000006
+258.8812960000002
  30
 0.0
  11
-289.00000000000006
+271.78571136167676
  21
-299.98039000000006
+248.88129600000016
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
-90
+cut
  10
-265.00000000000006
+247.78571136167673
  20
-299.98039000000006
+258.8812960000002
  30
 0.0
  11
-265.00000000000006
+271.78571136167676
  21
-238.98039000000003
+258.8812960000002
  31
 0.0
   0
@@ -4247,15 +4375,15 @@ LINE
   8
 cut
  10
-255.00000000000003
+247.78571136167673
  20
-299.98039000000006
+248.88129600000013
  30
 0.0
  11
-265.00000000000006
+247.78571136167673
  21
-299.98039000000006
+258.8812960000002
  31
 0.0
   0
@@ -4265,15 +4393,15 @@ LINE
   8
 cut
  10
-255.00000000000003
+0.0
  20
-238.98039000000003
+439.65429608258603
  30
 0.0
  11
-255.00000000000003
+7.924333360861966
  21
-299.98039000000006
+439.65429608258603
  31
 0.0
   0
@@ -4283,15 +4411,15 @@ LINE
   8
 cut
  10
-265.00000000000006
+0.0
  20
-238.98039000000003
+415.88129600000013
  30
 0.0
  11
-255.00000000000003
+0.0
  21
-238.98039000000003
+439.65429608258603
  31
 0.0
   0
@@ -4301,15 +4429,15 @@ LINE
   8
 cut
  10
-281.00000000000006
+7.924333360861966
  20
-238.98039000000003
+415.88129600000013
  30
 0.0
  11
-288.00000000000006
+0.0
  21
-238.98039000000003
+415.88129600000013
  31
 0.0
   0
@@ -4319,15 +4447,15 @@ LINE
   8
 cut
  10
-281.00000000000006
+19.063748511955573
  20
-214.98039000000003
+96.95959135293252
  30
 0.0
  11
-281.00000000000006
+17.006070985150405
  21
-238.98039000000003
+99.93700985747354
  31
 0.0
   0
@@ -4337,15 +4465,15 @@ LINE
   8
 cut
  10
-288.00000000000006
+17.006070985150405
  20
-214.98039000000003
+99.93700985747354
  30
 0.0
  11
-281.00000000000006
+16.594741483868248
  21
-214.98039000000003
+99.6527423050252
  31
 0.0
   0
@@ -4355,15 +4483,15 @@ LINE
   8
 cut
  10
-337.0909090909092
+16.594741483868248
  20
-209.73039000000003
+99.6527423050252
  30
 0.0
  11
-340.59090909090907
+18.652419010673427
  21
-209.73039000000003
+96.67532380048418
  31
 0.0
   0
@@ -4373,15 +4501,15 @@ LINE
   8
 cut
  10
-340.59090909090907
+18.652419010673427
  20
-209.73039000000003
+96.67532380048418
  30
 0.0
  11
-337.0909090909092
+19.063748511955573
  21
-213.23039000000003
+96.95959135293252
  31
 0.0
   0
@@ -4391,15 +4519,15 @@ LINE
   8
 cut
  10
-337.0909090909092
+5.584886826581027
  20
-213.23039000000003
+111.64277190858407
  30
 0.0
  11
-326.18181818181824
+7.14451784943502
  21
-213.23039000000003
+111.64277190858407
  31
 0.0
   0
@@ -4409,15 +4537,15 @@ LINE
   8
 cut
  10
-326.18181818181824
+7.14451784943502
  20
-213.23039000000003
+111.64277190858407
  30
 0.0
  11
-322.68181818181824
+7.14451784943502
  21
-209.73039000000003
+114.76203395429205
  31
 0.0
   0
@@ -4427,15 +4555,15 @@ LINE
   8
 cut
  10
-322.68181818181824
+7.14451784943502
  20
-209.73039000000003
+114.76203395429205
  30
 0.0
  11
-326.18181818181824
+5.584886826581027
  21
-209.73039000000003
+114.76203395429205
  31
 0.0
   0
@@ -4445,15 +4573,15 @@ LINE
   8
 cut
  10
-309.81818181818187
+39.954805266984934
  20
-209.73039000000003
+440.8118780419729
  30
 0.0
  11
-313.31818181818187
+48.156187571434046
  21
-209.73039000000003
+442.73716266280195
  31
 0.0
   0
@@ -4463,15 +4591,15 @@ LINE
   8
 cut
  10
-313.31818181818187
+48.156187571434046
  20
-209.73039000000003
+442.73716266280195
  30
 0.0
  11
-309.81818181818187
+48.04191831484375
  21
-213.23039000000003
+443.223930099057
  31
 0.0
   0
@@ -4481,15 +4609,15 @@ LINE
   8
 cut
  10
-309.81818181818187
+48.04191831484375
  20
-213.23039000000003
+443.223930099057
  30
 0.0
  11
-298.909090909091
+39.84053601039464
  21
-213.23039000000003
+441.29864547822785
  31
 0.0
   0
@@ -4499,15 +4627,15 @@ LINE
   8
 cut
  10
-298.909090909091
+39.84053601039464
  20
-213.23039000000003
+441.29864547822785
  30
 0.0
  11
-295.409090909091
+39.954805266984934
  21
-209.73039000000003
+440.8118780419729
  31
 0.0
   0
@@ -4517,15 +4645,15 @@ LINE
   8
 cut
  10
-295.409090909091
+117.69247915028988
  20
-209.73039000000003
+442.73716266280195
  30
 0.0
  11
-298.909090909091
+125.893861454739
  21
-209.73039000000003
+440.8118780419729
  31
 0.0
   0
@@ -4535,15 +4663,15 @@ LINE
   8
 cut
  10
-354.25000000000006
+125.893861454739
  20
-230.98039000000003
+440.8118780419729
  30
 0.0
  11
-350.75
+126.00813071132929
  21
-230.98039000000003
+441.29864547822785
  31
 0.0
   0
@@ -4553,15 +4681,15 @@ LINE
   8
 cut
  10
-350.75
+126.00813071132929
  20
-230.98039000000003
+441.29864547822785
  30
 0.0
  11
-350.75
+117.80674840688017
  21
-222.98039000000003
+443.223930099057
  31
 0.0
   0
@@ -4571,15 +4699,15 @@ LINE
   8
 cut
  10
-350.75
+117.80674840688017
  20
-222.98039000000003
+443.223930099057
  30
 0.0
  11
-354.25000000000006
+117.69247915028988
  21
-222.98039000000003
+442.73716266280195
  31
 0.0
   0
@@ -4589,15 +4717,15 @@ LINE
   8
 cut
  10
-296.5
+163.86758338150847
  20
-290.48039000000006
+431.72996272172406
  30
 0.0
  11
-296.5
+159.90541670107746
  21
-272.48039000000006
+431.72996272172406
  31
 0.0
   0
@@ -4607,15 +4735,15 @@ LINE
   8
 cut
  10
-296.5
+159.90541670107746
  20
-272.48039000000006
+431.72996272172406
  30
 0.0
  11
-331.5
+159.90541670107746
  21
-272.48039000000006
+423.8056293608621
  31
 0.0
   0
@@ -4625,15 +4753,15 @@ LINE
   8
 cut
  10
-331.5
+159.90541670107746
  20
-272.48039000000006
+423.8056293608621
  30
 0.0
  11
-331.5
+163.86758338150847
  21
-290.48039000000006
+423.8056293608621
  31
 0.0
   0
@@ -4643,15 +4771,15 @@ LINE
   8
 cut
  10
-331.5
+148.84259573657366
  20
-290.48039000000006
+99.9370098574736
  30
 0.0
  11
-296.5
+146.78491820976848
  21
-290.48039000000006
+96.95959135293258
  31
 0.0
   0
@@ -4661,15 +4789,15 @@ LINE
   8
 cut
  10
-349.50000000000006
+146.78491820976848
  20
-252.23039000000003
+96.95959135293258
  30
 0.0
  11
-349.50000000000006
+147.19624771105066
  21
-249.23039000000003
+96.67532380048424
  31
 0.0
   0
@@ -4679,15 +4807,15 @@ LINE
   8
 cut
  10
-349.50000000000006
+147.19624771105066
  20
-249.23039000000003
+96.67532380048424
  30
 0.0
  11
-352.50000000000006
+149.25392523785584
  21
-249.23039000000003
+99.65274230502526
  31
 0.0
   0
@@ -4697,15 +4825,15 @@ LINE
   8
 cut
  10
-352.50000000000006
+149.25392523785584
  20
-249.23039000000003
+99.65274230502526
  30
 0.0
  11
-352.50000000000006
+148.84259573657366
  21
-252.23039000000003
+99.9370098574736
  31
 0.0
   0
@@ -4715,15 +4843,15 @@ LINE
   8
 cut
  10
-352.50000000000006
+160.26377989514305
  20
-252.23039000000003
+114.76203395429211
  30
 0.0
  11
-349.50000000000006
+158.70414887228904
  21
-252.23039000000003
+114.76203395429211
  31
 0.0
   0
@@ -4733,15 +4861,15 @@ LINE
   8
 cut
  10
-370.50000000000006
+158.70414887228904
  20
-251.23039000000003
+114.76203395429211
  30
 0.0
  11
-370.50000000000006
+158.70414887228904
  21
-250.23039000000003
+111.64277190858412
  31
 0.0
   0
@@ -4751,15 +4879,15 @@ LINE
   8
 cut
  10
-370.50000000000006
+158.70414887228904
  20
-250.23039000000003
+111.64277190858412
  30
 0.0
  11
-371.50000000000006
+160.26377989514305
  21
-250.23039000000003
+111.64277190858412
  31
 0.0
   0
@@ -4769,15 +4897,15 @@ LINE
   8
 cut
  10
-371.50000000000006
+150.17433336086205
  20
-250.23039000000003
+140.3131141818183
  30
 0.0
  11
-371.50000000000006
+150.17433336086205
  21
-251.23039000000003
+128.7222050909092
  31
 0.0
   0
@@ -4787,15 +4915,15 @@ LINE
   8
 cut
  10
-371.50000000000006
+150.17433336086205
  20
-251.23039000000003
+128.7222050909092
  30
 0.0
  11
-370.50000000000006
+150.67433336086205
  21
-251.23039000000003
+128.7222050909092
  31
 0.0
   0
@@ -4805,15 +4933,15 @@ LINE
   8
 cut
  10
-350.5
+150.67433336086205
  20
-253.73039000000003
+128.7222050909092
  30
 0.0
  11
-350.5
+150.67433336086205
  21
-252.73039000000003
+140.3131141818183
  31
 0.0
   0
@@ -4823,15 +4951,15 @@ LINE
   8
 cut
  10
-350.5
+150.67433336086205
  20
-252.73039000000003
+140.3131141818183
  30
 0.0
  11
-351.50000000000006
+150.17433336086205
  21
-252.73039000000003
+140.3131141818183
  31
 0.0
   0
@@ -4841,15 +4969,15 @@ LINE
   8
 cut
  10
-351.50000000000006
+150.17433336086205
  20
-252.73039000000003
+168.040386909091
  30
 0.0
  11
-351.50000000000006
+150.17433336086205
  21
-253.73039000000003
+156.44947781818192
  31
 0.0
   0
@@ -4859,15 +4987,15 @@ LINE
   8
 cut
  10
-351.50000000000006
+150.17433336086205
  20
-253.73039000000003
+156.44947781818192
  30
 0.0
  11
-350.5
+150.67433336086205
  21
-253.73039000000003
+156.44947781818192
  31
 0.0
   0
@@ -4877,15 +5005,15 @@ LINE
   8
 cut
  10
-370.50000000000006
+150.67433336086205
  20
-253.73039000000003
+156.44947781818192
  30
 0.0
  11
-370.50000000000006
+150.67433336086205
  21
-252.73039000000003
+168.040386909091
  31
 0.0
   0
@@ -4895,15 +5023,15 @@ LINE
   8
 cut
  10
-370.50000000000006
+150.67433336086205
  20
-252.73039000000003
+168.040386909091
  30
 0.0
  11
-371.50000000000006
+150.17433336086205
  21
-252.73039000000003
+168.040386909091
  31
 0.0
   0
@@ -4913,15 +5041,15 @@ LINE
   8
 cut
  10
-371.50000000000006
+180.84100002752874
  20
-252.73039000000003
+196.6312960000001
  30
 0.0
  11
-371.50000000000006
+169.0076666941954
  21
-253.73039000000003
+196.6312960000001
  31
 0.0
   0
@@ -4931,15 +5059,15 @@ LINE
   8
 cut
  10
-371.50000000000006
+169.0076666941954
  20
-253.73039000000003
+196.6312960000001
  30
 0.0
  11
-370.50000000000006
+169.0076666941954
  21
-253.73039000000003
+196.13129600000008
  31
 0.0
   0
@@ -4949,15 +5077,15 @@ LINE
   8
 cut
  10
-350.5
+169.0076666941954
  20
-256.23039000000006
+196.13129600000008
  30
 0.0
  11
-350.5
+180.84100002752874
  21
-255.23039000000003
+196.13129600000008
  31
 0.0
   0
@@ -4967,15 +5095,15 @@ LINE
   8
 cut
  10
-350.5
+180.84100002752874
  20
-255.23039000000003
+196.13129600000008
  30
 0.0
  11
-351.50000000000006
+180.84100002752874
  21
-255.23039000000003
+196.6312960000001
  31
 0.0
   0
@@ -4985,15 +5113,15 @@ LINE
   8
 cut
  10
-351.50000000000006
+268.924333360862
  20
-255.23039000000003
+205.13129600000016
  30
 0.0
  11
-351.50000000000006
+268.924333360862
  21
-256.23039000000006
+196.63129600000016
  31
 0.0
   0
@@ -5003,15 +5131,15 @@ LINE
   8
 cut
  10
-351.50000000000006
+268.924333360862
  20
-256.23039000000006
+196.63129600000016
  30
 0.0
  11
-350.5
+269.4243333608621
  21
-256.23039000000006
+196.63129600000016
  31
 0.0
   0
@@ -5021,15 +5149,15 @@ LINE
   8
 cut
  10
-370.50000000000006
+269.4243333608621
  20
-256.23039000000006
+196.63129600000016
  30
 0.0
  11
-370.50000000000006
+269.4243333608621
  21
-255.23039000000003
+205.13129600000016
  31
 0.0
   0
@@ -5039,15 +5167,15 @@ LINE
   8
 cut
  10
-370.50000000000006
+269.4243333608621
  20
-255.23039000000003
+205.13129600000016
  30
 0.0
  11
-371.50000000000006
+268.924333360862
  21
-255.23039000000003
+205.13129600000016
  31
 0.0
   0
@@ -5057,15 +5185,15 @@ LINE
   8
 cut
  10
-371.50000000000006
+168.92433336086205
  20
-255.23039000000003
+231.8812960000001
  30
 0.0
  11
-371.50000000000006
+168.92433336086205
  21
-256.23039000000006
+227.88129600000008
  31
 0.0
   0
@@ -5075,15 +5203,15 @@ LINE
   8
 cut
  10
-371.50000000000006
+168.92433336086205
  20
-256.23039000000006
+227.88129600000008
  30
 0.0
  11
-370.50000000000006
+180.92433336086205
  21
-256.23039000000006
+227.88129600000008
  31
 0.0
   0
@@ -5093,15 +5221,15 @@ LINE
   8
 cut
  10
-350.5
+180.92433336086205
  20
-258.73039000000006
+227.88129600000008
  30
 0.0
  11
-350.5
+180.92433336086205
  21
-257.73039
+231.8812960000001
  31
 0.0
   0
@@ -5111,15 +5239,15 @@ LINE
   8
 cut
  10
-350.5
+180.92433336086205
  20
-257.73039
+231.8812960000001
  30
 0.0
  11
-351.50000000000006
+168.92433336086205
  21
-257.73039
+231.8812960000001
  31
 0.0
   0
@@ -5129,15 +5257,15 @@ LINE
   8
 cut
  10
-351.50000000000006
+170.42433336086202
  20
-257.73039
+219.8812960000001
  30
 0.0
  11
-351.50000000000006
+170.42433336086202
  21
-258.73039000000006
+215.8812960000001
  31
 0.0
   0
@@ -5147,15 +5275,15 @@ LINE
   8
 cut
  10
-351.50000000000006
+170.42433336086202
  20
-258.73039000000006
+215.8812960000001
  30
 0.0
  11
-350.5
+179.42433336086202
  21
-258.73039000000006
+215.8812960000001
  31
 0.0
   0
@@ -5165,15 +5293,15 @@ LINE
   8
 cut
  10
-370.50000000000006
+179.42433336086202
  20
-258.73039000000006
+215.8812960000001
  30
 0.0
  11
-370.50000000000006
+179.42433336086202
  21
-257.73039
+219.8812960000001
  31
 0.0
   0
@@ -5183,15 +5311,15 @@ LINE
   8
 cut
  10
-370.50000000000006
+179.42433336086202
  20
-257.73039
+219.8812960000001
  30
 0.0
  11
-371.50000000000006
+170.42433336086202
  21
-257.73039
+219.8812960000001
  31
 0.0
   0
@@ -5201,15 +5329,15 @@ LINE
   8
 cut
  10
-371.50000000000006
+168.92433336086205
  20
-257.73039
+256.38129600000013
  30
 0.0
  11
-371.50000000000006
+168.92433336086205
  21
-258.73039000000006
+233.3812960000001
  31
 0.0
   0
@@ -5219,15 +5347,15 @@ LINE
   8
 cut
  10
-371.50000000000006
+168.92433336086205
  20
-258.73039000000006
+233.3812960000001
  30
 0.0
  11
-370.50000000000006
+180.92433336086205
  21
-258.73039000000006
+233.3812960000001
  31
 0.0
   0
@@ -5237,15 +5365,15 @@ LINE
   8
 cut
  10
-350.5
+180.92433336086205
  20
-261.23039000000006
+233.3812960000001
  30
 0.0
  11
-350.5
+180.92433336086205
  21
-260.23039000000006
+256.38129600000013
  31
 0.0
   0
@@ -5255,15 +5383,15 @@ LINE
   8
 cut
  10
-350.5
+180.92433336086205
  20
-260.23039000000006
+256.38129600000013
  30
 0.0
  11
-351.50000000000006
+168.92433336086205
  21
-260.23039000000006
+256.38129600000013
  31
 0.0
   0
@@ -5273,15 +5401,15 @@ LINE
   8
 cut
  10
-351.50000000000006
+168.92433336086205
  20
-260.23039000000006
+261.88129600000013
  30
 0.0
  11
-351.50000000000006
+168.92433336086205
  21
-261.23039000000006
+257.8812960000001
  31
 0.0
   0
@@ -5291,15 +5419,15 @@ LINE
   8
 cut
  10
-351.50000000000006
+168.92433336086205
  20
-261.23039000000006
+257.8812960000001
  30
 0.0
  11
-350.5
+180.92433336086205
  21
-261.23039000000006
+257.8812960000001
  31
 0.0
   0
@@ -5309,15 +5437,15 @@ LINE
   8
 cut
  10
-370.50000000000006
+180.92433336086205
  20
-261.23039000000006
+257.8812960000001
  30
 0.0
  11
-370.50000000000006
+180.92433336086205
  21
-260.23039000000006
+261.88129600000013
  31
 0.0
   0
@@ -5327,15 +5455,15 @@ LINE
   8
 cut
  10
-370.50000000000006
+180.92433336086205
  20
-260.23039000000006
+261.88129600000013
  30
 0.0
  11
-371.50000000000006
+168.92433336086205
  21
-260.23039000000006
+261.88129600000013
  31
 0.0
   0
@@ -5345,15 +5473,15 @@ LINE
   8
 cut
  10
-371.50000000000006
+169.25766669419536
  20
-260.23039000000006
+284.3812960000001
  30
 0.0
  11
-371.50000000000006
+169.25766669419536
  21
-261.23039000000006
+279.3812960000001
  31
 0.0
   0
@@ -5363,15 +5491,15 @@ LINE
   8
 cut
  10
-371.50000000000006
+169.25766669419536
  20
-261.23039000000006
+279.3812960000001
  30
 0.0
  11
-370.50000000000006
+180.59100002752868
  21
-261.23039000000006
+279.3812960000001
  31
 0.0
   0
@@ -5381,15 +5509,15 @@ LINE
   8
 cut
  10
-350.5
+180.59100002752868
  20
-263.73039000000006
+279.3812960000001
  30
 0.0
  11
-350.5
+180.59100002752868
  21
-262.73039000000006
+284.3812960000001
  31
 0.0
   0
@@ -5399,15 +5527,15 @@ LINE
   8
 cut
  10
-350.5
+224.07861139572347
  20
-262.73039000000006
+345.3812960000002
  30
 0.0
  11
-351.50000000000006
+224.07861139572347
  21
-262.73039000000006
+342.3812960000002
  31
 0.0
   0
@@ -5417,15 +5545,15 @@ LINE
   8
 cut
  10
-351.50000000000006
+224.07861139572347
  20
-262.73039000000006
+342.3812960000002
  30
 0.0
  11
-351.50000000000006
+242.07861139572344
  21
-263.73039000000006
+342.3812960000002
  31
 0.0
   0
@@ -5435,15 +5563,15 @@ LINE
   8
 cut
  10
-351.50000000000006
+242.07861139572344
  20
-263.73039000000006
+342.3812960000002
  30
 0.0
  11
-350.5
+242.07861139572344
  21
-263.73039000000006
+345.3812960000002
  31
 0.0
   0
@@ -5453,15 +5581,15 @@ LINE
   8
 cut
  10
-370.50000000000006
+242.07861139572344
  20
-263.73039000000006
+345.3812960000002
  30
 0.0
  11
-370.50000000000006
+224.07861139572347
  21
-262.73039000000006
+345.3812960000002
  31
 0.0
   0
@@ -5471,15 +5599,15 @@ LINE
   8
 cut
  10
-370.50000000000006
+237.82861139572347
  20
-262.73039000000006
+293.63129600000013
  30
 0.0
  11
-371.50000000000006
+228.32861139572347
  21
-262.73039000000006
+293.63129600000013
  31
 0.0
   0
@@ -5489,15 +5617,15 @@ LINE
   8
 cut
  10
-371.50000000000006
+228.32861139572347
  20
-262.73039000000006
+293.63129600000013
  30
 0.0
  11
-371.50000000000006
+228.32861139572347
  21
-263.73039000000006
+293.13129600000013
  31
 0.0
   0
@@ -5507,15 +5635,15 @@ LINE
   8
 cut
  10
-371.50000000000006
+228.32861139572347
  20
-263.73039000000006
+293.13129600000013
  30
 0.0
  11
-370.50000000000006
+237.82861139572347
  21
-263.73039000000006
+293.13129600000013
  31
 0.0
   0
@@ -5525,15 +5653,15 @@ LINE
   8
 cut
  10
-350.5
+237.82861139572347
  20
-266.23039
+293.13129600000013
  30
 0.0
  11
-350.5
+237.82861139572347
  21
-265.23039000000006
+293.63129600000013
  31
 0.0
   0
@@ -5543,15 +5671,15 @@ LINE
   8
 cut
  10
-350.5
+300.4828894305849
  20
-265.23039000000006
+326.13129600000013
  30
 0.0
  11
-351.50000000000006
+300.4828894305849
  21
-265.23039000000006
+305.6312960000002
  31
 0.0
   0
@@ -5561,15 +5689,15 @@ LINE
   8
 cut
  10
-351.50000000000006
+300.4828894305849
  20
-265.23039000000006
+305.6312960000002
  30
 0.0
  11
-351.50000000000006
+300.9828894305849
  21
-266.23039
+305.6312960000002
  31
 0.0
   0
@@ -5579,15 +5707,15 @@ LINE
   8
 cut
  10
-351.50000000000006
+300.9828894305849
  20
-266.23039
+305.6312960000002
  30
 0.0
  11
-350.5
+300.9828894305849
  21
-266.23039
+326.13129600000013
  31
 0.0
   0
@@ -5597,15 +5725,15 @@ LINE
   8
 cut
  10
-370.50000000000006
+300.9828894305849
  20
-266.23039
+326.13129600000013
  30
 0.0
  11
-370.50000000000006
+300.4828894305849
  21
-265.23039000000006
+326.13129600000013
  31
 0.0
   0
@@ -5615,15 +5743,15 @@ LINE
   8
 cut
  10
-370.50000000000006
+224.07861139572339
  20
-265.23039000000006
+348.8812960000002
  30
 0.0
  11
-371.50000000000006
+224.07861139572339
  21
-265.23039000000006
+345.8812960000002
  31
 0.0
   0
@@ -5633,15 +5761,15 @@ LINE
   8
 cut
  10
-371.50000000000006
+224.07861139572339
  20
-265.23039000000006
+345.8812960000002
  30
 0.0
  11
-371.50000000000006
+242.0786113957234
  21
-266.23039
+345.8812960000002
  31
 0.0
   0
@@ -5651,15 +5779,15 @@ LINE
   8
 cut
  10
-371.50000000000006
+242.0786113957234
  20
-266.23039
+345.8812960000002
  30
 0.0
  11
-370.50000000000006
+242.0786113957234
  21
-266.23039
+348.8812960000002
  31
 0.0
   0
@@ -5669,15 +5797,15 @@ LINE
   8
 cut
  10
-350.5
+242.0786113957234
  20
-268.73039
+348.8812960000002
  30
 0.0
  11
-350.5
+224.07861139572339
  21
-267.73039000000006
+348.8812960000002
  31
 0.0
   0
@@ -5687,15 +5815,15 @@ LINE
   8
 cut
  10
-350.5
+228.5786113957234
  20
-267.73039000000006
+447.3812960000002
  30
 0.0
  11
-351.50000000000006
+228.5786113957234
  21
-267.73039000000006
+442.3812960000002
  31
 0.0
   0
@@ -5705,15 +5833,15 @@ LINE
   8
 cut
  10
-351.50000000000006
+228.5786113957234
  20
-267.73039000000006
+442.3812960000002
  30
 0.0
  11
-351.50000000000006
+237.5786113957234
  21
-268.73039
+442.3812960000002
  31
 0.0
   0
@@ -5723,15 +5851,15 @@ LINE
   8
 cut
  10
-351.50000000000006
+237.5786113957234
  20
-268.73039
+442.3812960000002
  30
 0.0
  11
-350.5
+237.5786113957234
  21
-268.73039
+447.3812960000002
  31
 0.0
   0
@@ -5741,15 +5869,15 @@ LINE
   8
 cut
  10
-370.50000000000006
+178.17433336086202
  20
-268.73039
+239.6312960000001
  30
 0.0
  11
-370.50000000000006
+167.674333360862
  21
-267.73039000000006
+239.6312960000001
  31
 0.0
   0
@@ -5759,15 +5887,15 @@ LINE
   8
 cut
  10
-370.50000000000006
+167.674333360862
  20
-267.73039000000006
+239.6312960000001
  30
 0.0
  11
-371.50000000000006
+167.674333360862
  21
-267.73039000000006
+239.13129600000013
  31
 0.0
   0
@@ -5777,15 +5905,15 @@ LINE
   8
 cut
  10
-371.50000000000006
+167.674333360862
  20
-267.73039000000006
+239.13129600000013
  30
 0.0
  11
-371.50000000000006
+178.17433336086202
  21
-268.73039
+239.13129600000013
  31
 0.0
   0
@@ -5795,15 +5923,15 @@ LINE
   8
 cut
  10
-371.50000000000006
+178.17433336086202
  20
-268.73039
+239.13129600000013
  30
 0.0
  11
-370.50000000000006
+178.17433336086202
  21
-268.73039
+239.6312960000001
  31
 0.0
   0
@@ -5813,15 +5941,15 @@ LINE
   8
 cut
  10
-350.5
+167.92433336086197
  20
-271.23039
+309.38129600000013
  30
 0.0
  11
-350.5
+167.92433336086197
  21
-270.23039000000006
+304.38129600000013
  31
 0.0
   0
@@ -5831,15 +5959,15 @@ LINE
   8
 cut
  10
-350.5
+167.92433336086197
  20
-270.23039000000006
+304.38129600000013
  30
 0.0
  11
-351.50000000000006
+177.924333360862
  21
-270.23039000000006
+304.38129600000013
  31
 0.0
   0
@@ -5849,15 +5977,15 @@ LINE
   8
 cut
  10
-351.50000000000006
+177.924333360862
  20
-270.23039000000006
+304.38129600000013
  30
 0.0
  11
-351.50000000000006
+177.924333360862
  21
-271.23039
+309.38129600000013
  31
 0.0
   0
@@ -5867,15 +5995,15 @@ LINE
   8
 cut
  10
-351.50000000000006
+195.674333360862
  20
-271.23039
+311.6312960000001
  30
 0.0
  11
-350.5
+195.674333360862
  21
-271.23039
+322.13129600000013
  31
 0.0
   0
@@ -5885,15 +6013,15 @@ LINE
   8
 cut
  10
-370.50000000000006
+195.674333360862
  20
-271.23039
+322.13129600000013
  30
 0.0
  11
-370.50000000000006
+195.17433336086197
  21
-270.23039000000006
+322.13129600000013
  31
 0.0
   0
@@ -5903,15 +6031,15 @@ LINE
   8
 cut
  10
-370.50000000000006
+195.17433336086197
  20
-270.23039000000006
+322.13129600000013
  30
 0.0
  11
-371.50000000000006
+195.17433336086197
  21
-270.23039000000006
+311.6312960000001
  31
 0.0
   0
@@ -5921,15 +6049,15 @@ LINE
   8
 cut
  10
-371.50000000000006
+195.17433336086197
  20
-270.23039000000006
+311.6312960000001
  30
 0.0
  11
-371.50000000000006
+195.674333360862
  21
-271.23039
+311.6312960000001
  31
 0.0
   0
@@ -5939,15 +6067,15 @@ LINE
   8
 cut
  10
-371.50000000000006
+270.174333360862
  20
-271.23039
+322.1312960000002
  30
 0.0
  11
-370.50000000000006
+270.174333360862
  21
-271.23039
+311.63129600000013
  31
 0.0
   0
@@ -5957,15 +6085,15 @@ LINE
   8
 cut
  10
-350.5
+270.174333360862
  20
-273.73039000000006
+311.63129600000013
  30
 0.0
  11
-350.5
+270.67433336086197
  21
-272.73039000000006
+311.63129600000013
  31
 0.0
   0
@@ -5975,15 +6103,15 @@ LINE
   8
 cut
  10
-350.5
+270.67433336086197
  20
-272.73039000000006
+311.63129600000013
  30
 0.0
  11
-351.50000000000006
+270.67433336086197
  21
-272.73039000000006
+322.1312960000002
  31
 0.0
   0
@@ -5993,15 +6121,15 @@ LINE
   8
 cut
  10
-351.50000000000006
+270.67433336086197
  20
-272.73039000000006
+322.1312960000002
  30
 0.0
  11
-351.50000000000006
+270.174333360862
  21
-273.73039000000006
+322.1312960000002
  31
 0.0
   0
@@ -6011,15 +6139,15 @@ LINE
   8
 cut
  10
-351.50000000000006
+270.1743333608621
  20
-273.73039000000006
+222.13129600000016
  30
 0.0
  11
-350.5
+270.1743333608621
  21
-273.73039000000006
+211.63129600000013
  31
 0.0
   0
@@ -6029,15 +6157,15 @@ LINE
   8
 cut
  10
-370.50000000000006
+270.1743333608621
  20
-273.73039000000006
+211.63129600000013
  30
 0.0
  11
-370.50000000000006
+270.674333360862
  21
-272.73039000000006
+211.63129600000013
  31
 0.0
   0
@@ -6047,15 +6175,15 @@ LINE
   8
 cut
  10
-370.50000000000006
+270.674333360862
  20
-272.73039000000006
+211.63129600000013
  30
 0.0
  11
-371.50000000000006
+270.674333360862
  21
-272.73039000000006
+222.13129600000016
  31
 0.0
   0
@@ -6065,15 +6193,15 @@ LINE
   8
 cut
  10
-371.50000000000006
+270.674333360862
  20
-272.73039000000006
+222.13129600000016
  30
 0.0
  11
-371.50000000000006
+270.1743333608621
  21
-273.73039000000006
+222.13129600000016
  31
 0.0
   0
@@ -6083,15 +6211,15 @@ LINE
   8
 cut
  10
-371.50000000000006
+180.42433336086205
  20
-273.73039000000006
+211.88129600000008
  30
 0.0
  11
-370.50000000000006
+185.42433336086205
  21
-273.73039000000006
+211.88129600000008
  31
 0.0
   0
@@ -6101,15 +6229,15 @@ LINE
   8
 cut
  10
-350.5
+185.42433336086205
  20
-276.23039000000006
+211.88129600000008
  30
 0.0
  11
-350.5
+185.42433336086205
  21
-275.23039
+221.8812960000001
  31
 0.0
   0
@@ -6119,15 +6247,15 @@ LINE
   8
 cut
  10
-350.5
+185.42433336086205
  20
-275.23039
+221.8812960000001
  30
 0.0
  11
-351.50000000000006
+180.42433336086205
  21
-275.23039
+221.8812960000001
  31
 0.0
   0
@@ -6137,15 +6265,15 @@ LINE
   8
 cut
  10
-351.50000000000006
+287.924333360862
  20
-275.23039
+309.3812960000002
  30
 0.0
  11
-351.50000000000006
+287.924333360862
  21
-276.23039000000006
+304.3812960000002
  31
 0.0
   0
@@ -6155,15 +6283,15 @@ LINE
   8
 cut
  10
-351.50000000000006
+287.924333360862
  20
-276.23039000000006
+304.3812960000002
  30
 0.0
  11
-350.5
+297.924333360862
  21
-276.23039000000006
+304.3812960000002
  31
 0.0
   0
@@ -6173,15 +6301,15 @@ LINE
   8
 cut
  10
-370.50000000000006
+297.924333360862
  20
-276.23039000000006
+304.3812960000002
  30
 0.0
  11
-370.50000000000006
+297.924333360862
  21
-275.23039
+309.3812960000002
  31
 0.0
   0
@@ -6191,15 +6319,15 @@ LINE
   8
 cut
  10
-370.50000000000006
+297.9243333608621
  20
-275.23039
+224.38129600000016
  30
 0.0
  11
-371.50000000000006
+297.9243333608621
  21
-275.23039
+229.38129600000016
  31
 0.0
   0
@@ -6209,15 +6337,15 @@ LINE
   8
 cut
  10
-371.50000000000006
+297.9243333608621
  20
-275.23039
+229.38129600000016
  30
 0.0
  11
-371.50000000000006
+287.9243333608621
  21
-276.23039000000006
+229.38129600000016
  31
 0.0
   0
@@ -6227,15 +6355,15 @@ LINE
   8
 cut
  10
-371.50000000000006
+287.9243333608621
  20
-276.23039000000006
+229.38129600000016
  30
 0.0
  11
-370.50000000000006
+287.9243333608621
  21
-276.23039000000006
+224.38129600000016
  31
 0.0
   0
@@ -6245,15 +6373,15 @@ LINE
   8
 cut
  10
-350.5
+300.42433336086197
  20
-278.73039
+375.88129600000013
  30
 0.0
  11
-350.5
+300.42433336086197
  21
-277.73039000000006
+370.88129600000013
  31
 0.0
   0
@@ -6263,15 +6391,15 @@ LINE
   8
 cut
  10
-350.5
+300.42433336086197
  20
-277.73039000000006
+370.88129600000013
  30
 0.0
  11
-351.50000000000006
+305.42433336086197
  21
-277.73039000000006
+375.88129600000013
  31
 0.0
   0
@@ -6281,15 +6409,15 @@ LINE
   8
 cut
  10
-351.50000000000006
+305.42433336086197
  20
-277.73039000000006
+375.88129600000013
  30
 0.0
  11
-351.50000000000006
+305.42433336086197
  21
-278.73039
+395.8812960000002
  31
 0.0
   0
@@ -6299,15 +6427,15 @@ LINE
   8
 cut
  10
-351.50000000000006
+305.42433336086197
  20
-278.73039
+395.8812960000002
  30
 0.0
  11
-350.5
+300.42433336086197
  21
-278.73039
+400.8812960000002
  31
 0.0
   0
@@ -6317,15 +6445,15 @@ LINE
   8
 cut
  10
-370.50000000000006
+300.42433336086197
  20
-278.73039
+400.8812960000002
  30
 0.0
  11
-370.50000000000006
+300.42433336086197
  21
-277.73039000000006
+395.8812960000002
  31
 0.0
   0
@@ -6335,15 +6463,15 @@ LINE
   8
 cut
  10
-370.50000000000006
+296.8410000275287
  20
-277.73039000000006
+266.63129600000013
  30
 0.0
  11
-371.50000000000006
+285.0076666941954
  21
-277.73039000000006
+266.63129600000013
  31
 0.0
   0
@@ -6353,15 +6481,15 @@ LINE
   8
 cut
  10
-371.50000000000006
+285.0076666941954
  20
-277.73039000000006
+266.63129600000013
  30
 0.0
  11
-371.50000000000006
+285.0076666941954
  21
-278.73039
+266.1312960000002
  31
 0.0
   0
@@ -6371,15 +6499,15 @@ LINE
   8
 cut
  10
-371.50000000000006
+285.0076666941954
  20
-278.73039
+266.1312960000002
  30
 0.0
  11
-370.50000000000006
+296.8410000275287
  21
-278.73039
+266.1312960000002
  31
 0.0
   0
@@ -6389,15 +6517,15 @@ LINE
   8
 cut
  10
-350.5
+296.8410000275287
  20
-281.23039000000006
+266.1312960000002
  30
 0.0
  11
-350.5
+296.8410000275287
  21
-280.23039
+266.63129600000013
  31
 0.0
   0
@@ -6407,15 +6535,15 @@ LINE
   8
 cut
  10
-350.5
+189.17433336086205
  20
-280.23039
+266.8812960000001
  30
 0.0
  11
-351.50000000000006
+189.17433336086205
  21
-280.23039
+264.3812960000001
  31
 0.0
   0
@@ -6425,15 +6553,15 @@ LINE
   8
 cut
  10
-351.50000000000006
+189.17433336086205
  20
-280.23039
+264.3812960000001
  30
 0.0
  11
-351.50000000000006
+191.67433336086205
  21
-281.23039000000006
+266.8812960000001
  31
 0.0
   0
@@ -6443,15 +6571,15 @@ LINE
   8
 cut
  10
-351.50000000000006
+191.67433336086205
  20
-281.23039000000006
+266.8812960000001
  30
 0.0
  11
-350.5
+191.67433336086205
  21
-281.23039000000006
+274.8812960000001
  31
 0.0
   0
@@ -6461,15 +6589,15 @@ LINE
   8
 cut
  10
-370.50000000000006
+191.67433336086205
  20
-281.23039000000006
+274.8812960000001
  30
 0.0
  11
-370.50000000000006
+189.17433336086205
  21
-280.23039
+277.38129600000013
  31
 0.0
   0
@@ -6479,15 +6607,15 @@ LINE
   8
 cut
  10
-370.50000000000006
+189.17433336086205
  20
-280.23039
+277.38129600000013
  30
 0.0
  11
-371.50000000000006
+189.17433336086205
  21
-280.23039
+274.8812960000001
  31
 0.0
   0
@@ -6497,15 +6625,15 @@ LINE
   8
 cut
  10
-371.50000000000006
+284.9243333608621
  20
-280.23039
+301.88129600000013
  30
 0.0
  11
-371.50000000000006
+284.9243333608621
  21
-281.23039000000006
+297.88129600000013
  31
 0.0
   0
@@ -6515,15 +6643,15 @@ LINE
   8
 cut
  10
-371.50000000000006
+284.9243333608621
  20
-281.23039000000006
+297.88129600000013
  30
 0.0
  11
-370.50000000000006
+296.9243333608621
  21
-281.23039000000006
+297.88129600000013
  31
 0.0
   0
@@ -6533,15 +6661,15 @@ LINE
   8
 cut
  10
-350.5
+296.9243333608621
  20
-283.73039
+297.88129600000013
  30
 0.0
  11
-350.5
+296.9243333608621
  21
-282.73039000000006
+301.88129600000013
  31
 0.0
   0
@@ -6551,15 +6679,15 @@ LINE
   8
 cut
  10
-350.5
+296.9243333608621
  20
-282.73039000000006
+301.88129600000013
  30
 0.0
  11
-351.50000000000006
+284.9243333608621
  21
-282.73039000000006
+301.88129600000013
  31
 0.0
   0
@@ -6569,15 +6697,15 @@ LINE
   8
 cut
  10
-351.50000000000006
+286.424333360862
  20
-282.73039000000006
+289.88129600000013
  30
 0.0
  11
-351.50000000000006
+286.424333360862
  21
-283.73039
+285.8812960000002
  31
 0.0
   0
@@ -6587,15 +6715,15 @@ LINE
   8
 cut
  10
-351.50000000000006
+286.424333360862
  20
-283.73039
+285.8812960000002
  30
 0.0
  11
-350.5
+295.424333360862
  21
-283.73039
+285.8812960000002
  31
 0.0
   0
@@ -6605,15 +6733,15 @@ LINE
   8
 cut
  10
-370.50000000000006
+295.424333360862
  20
-283.73039
+285.8812960000002
  30
 0.0
  11
-370.50000000000006
+295.424333360862
  21
-282.73039000000006
+289.88129600000013
  31
 0.0
   0
@@ -6623,15 +6751,15 @@ LINE
   8
 cut
  10
-370.50000000000006
+295.424333360862
  20
-282.73039000000006
+289.88129600000013
  30
 0.0
  11
-371.50000000000006
+286.424333360862
  21
-282.73039000000006
+289.88129600000013
  31
 0.0
   0
@@ -6641,15 +6769,15 @@ LINE
   8
 cut
  10
-371.50000000000006
+284.9243333608621
  20
-282.73039000000006
+326.3812960000002
  30
 0.0
  11
-371.50000000000006
+284.9243333608621
  21
-283.73039
+303.38129600000013
  31
 0.0
   0
@@ -6659,15 +6787,15 @@ LINE
   8
 cut
  10
-371.50000000000006
+284.9243333608621
  20
-283.73039
+303.38129600000013
  30
 0.0
  11
-370.50000000000006
+296.9243333608621
  21
-283.73039
+303.38129600000013
  31
 0.0
   0
@@ -6677,15 +6805,15 @@ LINE
   8
 cut
  10
-350.5
+296.9243333608621
  20
-286.23039000000006
+303.38129600000013
  30
 0.0
  11
-350.5
+296.9243333608621
  21
-285.23039000000006
+326.3812960000002
  31
 0.0
   0
@@ -6695,15 +6823,15 @@ LINE
   8
 cut
  10
-350.5
+296.9243333608621
  20
-285.23039000000006
+326.3812960000002
  30
 0.0
  11
-351.50000000000006
+284.9243333608621
  21
-285.23039000000006
+326.3812960000002
  31
 0.0
   0
@@ -6713,15 +6841,15 @@ LINE
   8
 cut
  10
-351.50000000000006
+284.9243333608621
  20
-285.23039000000006
+331.8812960000002
  30
 0.0
  11
-351.50000000000006
+284.9243333608621
  21
-286.23039000000006
+327.8812960000002
  31
 0.0
   0
@@ -6731,15 +6859,15 @@ LINE
   8
 cut
  10
-351.50000000000006
+284.9243333608621
  20
-286.23039000000006
+327.8812960000002
  30
 0.0
  11
-350.5
+296.9243333608621
  21
-286.23039000000006
+327.8812960000002
  31
 0.0
   0
@@ -6749,15 +6877,15 @@ LINE
   8
 cut
  10
-370.50000000000006
+296.9243333608621
  20
-286.23039000000006
+327.8812960000002
  30
 0.0
  11
-370.50000000000006
+296.9243333608621
  21
-285.23039000000006
+331.8812960000002
  31
 0.0
   0
@@ -6767,15 +6895,15 @@ LINE
   8
 cut
  10
-370.50000000000006
+296.9243333608621
  20
-285.23039000000006
+331.8812960000002
  30
 0.0
  11
-371.50000000000006
+284.9243333608621
  21
-285.23039000000006
+331.8812960000002
  31
 0.0
   0
@@ -6785,15 +6913,15 @@ LINE
   8
 cut
  10
-371.50000000000006
+285.2576666941954
  20
-285.23039000000006
+354.3812960000002
  30
 0.0
  11
-371.50000000000006
+285.2576666941954
  21
-286.23039000000006
+349.3812960000002
  31
 0.0
   0
@@ -6803,15 +6931,15 @@ LINE
   8
 cut
  10
-371.50000000000006
+285.2576666941954
  20
-286.23039000000006
+349.3812960000002
  30
 0.0
  11
-370.50000000000006
+296.5910000275287
  21
-286.23039000000006
+349.3812960000002
  31
 0.0
   0
@@ -6821,15 +6949,15 @@ LINE
   8
 cut
  10
-350.5
+296.5910000275287
  20
-288.73039
+349.3812960000002
  30
 0.0
  11
-350.5
+296.5910000275287
  21
-287.73039000000006
+354.3812960000002
  31
 0.0
   0
@@ -6839,15 +6967,15 @@ LINE
   8
 cut
  10
-350.5
+253.28571136167673
  20
-287.73039000000006
+230.88129600000016
  30
 0.0
  11
-351.50000000000006
+253.28571136167673
  21
-287.73039000000006
+219.88129600000016
  31
 0.0
   0
@@ -6857,15 +6985,15 @@ LINE
   8
 cut
  10
-351.50000000000006
+253.28571136167673
  20
-287.73039000000006
+219.88129600000016
  30
 0.0
  11
-351.50000000000006
+266.2857113616767
  21
-288.73039
+219.88129600000016
  31
 0.0
   0
@@ -6875,15 +7003,15 @@ LINE
   8
 cut
  10
-351.50000000000006
+266.2857113616767
  20
-288.73039
+219.88129600000016
  30
 0.0
  11
-350.5
+266.2857113616767
  21
-288.73039
+230.88129600000016
  31
 0.0
   0
@@ -6893,15 +7021,15 @@ LINE
   8
 cut
  10
-369.50000000000006
+266.2857113616767
  20
-289.73039000000006
+230.88129600000016
  30
 0.0
  11
-369.50000000000006
+253.28571136167673
  21
-286.73039000000006
+230.88129600000016
  31
 0.0
   0
@@ -6911,15 +7039,15 @@ LINE
   8
 cut
  10
-369.50000000000006
+254.78571136167673
  20
-286.73039000000006
+199.38129600000016
  30
 0.0
  11
-372.50000000000006
+254.78571136167673
  21
-286.73039000000006
+193.38129600000013
  31
 0.0
   0
@@ -6929,15 +7057,15 @@ LINE
   8
 cut
  10
-372.50000000000006
+254.78571136167673
  20
-286.73039000000006
+193.38129600000013
  30
 0.0
  11
-372.50000000000006
+264.78571136167676
  21
-289.73039000000006
+193.38129600000013
  31
 0.0
   0
@@ -6947,15 +7075,15 @@ LINE
   8
 cut
  10
-372.50000000000006
+264.78571136167676
  20
-289.73039000000006
+193.38129600000013
  30
 0.0
  11
-369.50000000000006
+264.78571136167676
  21
-289.73039000000006
+199.38129600000016
  31
 0.0
   0
@@ -6965,15 +7093,15 @@ LINE
   8
 cut
  10
-365.25000000000006
+264.78571136167676
  20
-246.73039000000003
+199.38129600000016
  30
 0.0
  11
-356.75000000000006
+254.78571136167673
  21
-246.73039000000003
+199.38129600000016
  31
 0.0
   0
@@ -6983,15 +7111,15 @@ LINE
   8
 cut
  10
-356.75000000000006
+204.14708936249147
  20
-246.73039000000003
+198.9722050909092
  30
 0.0
  11
-356.75000000000006
+209.14708936249147
  21
-246.23039000000003
+198.9722050909092
  31
 0.0
   0
@@ -7001,15 +7129,15 @@ LINE
   8
 cut
  10
-356.75000000000006
+209.14708936249147
  20
-246.23039000000003
+198.9722050909092
  30
 0.0
  11
-365.25000000000006
+209.14708936249147
  21
-246.23039000000003
+210.0631141818183
  31
 0.0
   0
@@ -7019,15 +7147,15 @@ LINE
   8
 cut
  10
-365.25000000000006
+209.14708936249147
  20
-246.23039000000003
+210.0631141818183
  30
 0.0
  11
-365.25000000000006
+204.14708936249147
  21
-246.73039000000003
+210.0631141818183
  31
 0.0
   0
@@ -7037,15 +7165,15 @@ LINE
   8
 cut
  10
-356.75000000000006
+204.14708936249147
  20
-294.48039000000006
+226.69947781818195
  30
 0.0
  11
-365.25000000000006
+209.14708936249147
  21
-294.48039000000006
+226.69947781818195
  31
 0.0
   0
@@ -7055,15 +7183,15 @@ LINE
   8
 cut
  10
-365.25000000000006
+209.14708936249147
  20
-294.48039000000006
+226.69947781818195
  30
 0.0
  11
-365.25000000000006
+209.14708936249147
  21
-294.98039000000006
+237.79038690909104
  31
 0.0
   0
@@ -7073,15 +7201,15 @@ LINE
   8
 cut
  10
-365.25000000000006
+209.14708936249147
  20
-294.98039000000006
+237.79038690909104
  30
 0.0
  11
-356.75000000000006
+204.14708936249147
  21
-294.98039000000006
+237.79038690909104
  31
 0.0
   0
@@ -7091,15 +7219,15 @@ LINE
   8
 cut
  10
-356.75000000000006
+263.78571136167676
  20
-294.98039000000006
+180.38129600000016
  30
 0.0
  11
-356.75000000000006
+263.78571136167676
  21
-294.48039000000006
+185.38129600000016
  31
 0.0
   0
@@ -7109,15 +7237,15 @@ LINE
   8
 cut
  10
-388.00000000000006
+263.78571136167676
  20
-289.98039000000006
+185.38129600000016
  30
 0.0
  11
-388.00000000000006
+255.7857113616768
  21
-276.98039000000006
+185.38129600000016
  31
 0.0
   0
@@ -7127,15 +7255,15 @@ LINE
   8
 cut
  10
-388.00000000000006
+255.7857113616768
  20
-276.98039000000006
+185.38129600000016
  30
 0.0
  11
-418.00000000000006
+255.7857113616768
  21
-276.98039000000006
+180.38129600000016
  31
 0.0
   0
@@ -7145,15 +7273,15 @@ LINE
   8
 cut
  10
-418.00000000000006
+255.78571136167673
  20
-276.98039000000006
+256.3812960000002
  30
 0.0
  11
-418.00000000000006
+255.78571136167673
  21
-289.98039000000006
+251.38129600000013
  31
 0.0
   0
@@ -7163,15 +7291,15 @@ LINE
   8
 cut
  10
-418.00000000000006
+255.78571136167673
  20
-289.98039000000006
+251.38129600000013
  30
 0.0
  11
-388.00000000000006
+263.7857113616767
  21
-289.98039000000006
+251.38129600000013
  31
 0.0
   0
@@ -7181,15 +7309,15 @@ LINE
   8
 cut
  10
-395.06818181818187
+263.7857113616767
  20
-244.48039000000003
+251.38129600000013
  30
 0.0
  11
-383.6590909090909
+263.7857113616767
  21
-244.48039000000003
+256.3812960000002
  31
 0.0
   0
@@ -7199,15 +7327,15 @@ LINE
   8
 cut
  10
-383.6590909090909
+1.9810833402154915
  20
-244.48039000000003
+423.8056293608621
  30
 0.0
  11
-383.6590909090909
+5.943250020646475
  21
-243.98039000000003
+423.8056293608621
  31
 0.0
   0
@@ -7217,15 +7345,15 @@ LINE
   8
 cut
  10
-383.6590909090909
+5.943250020646475
  20
-243.98039000000003
+423.8056293608621
  30
 0.0
  11
-395.06818181818187
+5.943250020646475
  21
-243.98039000000003
+431.72996272172406
  31
 0.0
   0
@@ -7235,87 +7363,95 @@ LINE
   8
 cut
  10
-395.06818181818187
+5.943250020646475
  20
-243.98039000000003
+431.72996272172406
  30
 0.0
  11
-395.06818181818187
+1.9810833402154915
  21
-244.48039000000003
+431.72996272172406
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
-cut
+90
  10
-422.3409090909092
+351.2328894305849
  20
-244.48039000000003
+254.88129600000005
  30
 0.0
  11
-410.93181818181824
+412.2328894305849
  21
-244.48039000000003
+254.88129600000005
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
-cut
+90
  10
-410.93181818181824
+412.2328894305849
  20
-244.48039000000003
+254.88129600000005
  30
 0.0
  11
-410.93181818181824
+412.2328894305849
  21
-243.98039000000003
+278.8812960000001
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
-cut
+90
  10
-410.93181818181824
+412.2328894305849
  20
-243.98039000000003
+278.8812960000001
  30
 0.0
  11
-422.3409090909092
+351.2328894305849
  21
-243.98039000000003
+278.8812960000001
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
-cut
+90
  10
-422.3409090909092
+351.2328894305849
  20
-243.98039000000003
+278.8812960000001
  30
 0.0
  11
-422.3409090909092
+351.2328894305849
  21
-244.48039000000003
+254.88129600000005
  31
 0.0
   0
@@ -7325,15 +7461,15 @@ LINE
   8
 cut
  10
-425.25000000000006
+351.2328894305849
  20
-261.4122081818182
+247.88129600000005
  30
 0.0
  11
-425.25000000000006
+351.2328894305849
  21
-249.82129909090912
+254.88129600000005
  31
 0.0
   0
@@ -7343,15 +7479,15 @@ LINE
   8
 cut
  10
-425.25000000000006
+411.2328894305849
  20
-249.82129909090912
+247.88129600000005
  30
 0.0
  11
-425.75000000000006
+351.2328894305849
  21
-249.82129909090912
+247.88129600000005
  31
 0.0
   0
@@ -7361,15 +7497,15 @@ LINE
   8
 cut
  10
-425.75000000000006
+411.2328894305849
  20
-249.82129909090912
+254.88129600000005
  30
 0.0
  11
-425.75000000000006
+411.2328894305849
  21
-261.4122081818182
+247.88129600000005
  31
 0.0
   0
@@ -7379,15 +7515,15 @@ LINE
   8
 cut
  10
-425.75000000000006
+419.2328894305849
  20
-261.4122081818182
+254.88129600000005
  30
 0.0
  11
-425.25000000000006
+412.2328894305849
  21
-261.4122081818182
+254.88129600000005
  31
 0.0
   0
@@ -7397,15 +7533,15 @@ LINE
   8
 cut
  10
-425.25000000000006
+419.2328894305849
  20
-289.13948090909093
+278.8812960000001
  30
 0.0
  11
-425.25000000000006
+419.2328894305849
  21
-277.5485718181818
+254.88129600000005
  31
 0.0
   0
@@ -7415,33 +7551,35 @@ LINE
   8
 cut
  10
-425.25000000000006
+412.2328894305849
  20
-277.5485718181818
+278.8812960000001
  30
 0.0
  11
-425.75000000000006
+419.2328894305849
  21
-277.5485718181818
+278.8812960000001
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
-cut
+90
  10
-425.75000000000006
+412.2328894305849
  20
-277.5485718181818
+278.8812960000001
  30
 0.0
  11
-425.75000000000006
+412.2328894305849
  21
-289.13948090909093
+339.881296
  31
 0.0
   0
@@ -7451,33 +7589,35 @@ LINE
   8
 cut
  10
-425.75000000000006
+352.23288943058486
  20
-289.13948090909093
+339.881296
  30
 0.0
  11
-425.25000000000006
+412.2328894305849
  21
-289.13948090909093
+339.881296
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
-cut
+90
  10
-265.50000000000006
+352.23288943058486
  20
-252.23039000000003
+278.8812960000001
  30
 0.0
  11
-265.50000000000006
+352.23288943058486
  21
-249.23039000000003
+339.881296
  31
 0.0
   0
@@ -7487,33 +7627,35 @@ LINE
   8
 cut
  10
-265.50000000000006
+436.2328894305849
  20
-249.23039000000003
+278.8812960000001
  30
 0.0
  11
-268.50000000000006
+412.2328894305849
  21
-249.23039000000003
+278.8812960000001
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
-cut
+90
  10
-268.50000000000006
+436.2328894305849
  20
-249.23039000000003
+278.8812960000001
  30
 0.0
  11
-268.50000000000006
+436.2328894305849
  21
-252.23039000000003
+339.881296
  31
 0.0
   0
@@ -7523,15 +7665,15 @@ LINE
   8
 cut
  10
-268.50000000000006
+412.2328894305849
  20
-252.23039000000003
+339.881296
  30
 0.0
  11
-265.50000000000006
+436.2328894305849
  21
-252.23039000000003
+339.881296
  31
 0.0
   0
@@ -7541,15 +7683,15 @@ LINE
   8
 cut
  10
-286.5
+496.2328894305849
  20
-251.23039000000003
+278.8812960000001
  30
 0.0
  11
-286.5
+436.2328894305849
  21
-250.23039000000003
+278.8812960000001
  31
 0.0
   0
@@ -7559,15 +7701,15 @@ LINE
   8
 cut
  10
-286.5
+496.2328894305849
  20
-250.23039000000003
+339.881296
  30
 0.0
  11
-287.5
+496.2328894305849
  21
-250.23039000000003
+278.8812960000001
  31
 0.0
   0
@@ -7577,15 +7719,15 @@ LINE
   8
 cut
  10
-287.5
+436.2328894305849
  20
-250.23039000000003
+339.881296
  30
 0.0
  11
-287.5
+496.2328894305849
  21
-251.23039000000003
+339.881296
  31
 0.0
   0
@@ -7595,15 +7737,15 @@ LINE
   8
 cut
  10
-287.5
+352.23288943058486
  20
-251.23039000000003
+278.8812960000001
  30
 0.0
  11
-286.5
+328.2328894305849
  21
-251.23039000000003
+278.8812960000001
  31
 0.0
   0
@@ -7613,33 +7755,35 @@ LINE
   8
 cut
  10
-266.5
+328.2328894305849
  20
-253.73039000000003
+339.881296
  30
 0.0
  11
-266.5
+352.23288943058486
  21
-252.73039000000003
+339.881296
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
-cut
+90
  10
-266.5
+328.2328894305849
  20
-252.73039000000003
+339.881296
  30
 0.0
  11
-267.50000000000006
+328.2328894305849
  21
-252.73039000000003
+278.8812960000001
  31
 0.0
   0
@@ -7649,15 +7793,15 @@ LINE
   8
 cut
  10
-267.50000000000006
+318.2328894305849
  20
-252.73039000000003
+339.881296
  30
 0.0
  11
-267.50000000000006
+328.2328894305849
  21
-253.73039000000003
+339.881296
  31
 0.0
   0
@@ -7667,15 +7811,15 @@ LINE
   8
 cut
  10
-267.50000000000006
+318.2328894305849
  20
-253.73039000000003
+278.8812960000001
  30
 0.0
  11
-266.5
+318.2328894305849
  21
-253.73039000000003
+339.881296
  31
 0.0
   0
@@ -7685,15 +7829,15 @@ LINE
   8
 cut
  10
-286.5
+328.2328894305849
  20
-253.73039000000003
+278.8812960000001
  30
 0.0
  11
-286.5
+318.2328894305849
  21
-252.73039000000003
+278.8812960000001
  31
 0.0
   0
@@ -7703,15 +7847,15 @@ LINE
   8
 cut
  10
-286.5
+344.23288943058486
  20
-252.73039000000003
+278.8812960000001
  30
 0.0
  11
-287.5
+351.2328894305849
  21
-252.73039000000003
+278.8812960000001
  31
 0.0
   0
@@ -7721,15 +7865,15 @@ LINE
   8
 cut
  10
-287.5
+344.23288943058486
  20
-252.73039000000003
+254.88129600000005
  30
 0.0
  11
-287.5
+344.23288943058486
  21
-253.73039000000003
+278.8812960000001
  31
 0.0
   0
@@ -7739,15 +7883,15 @@ LINE
   8
 cut
  10
-287.5
+351.2328894305849
  20
-253.73039000000003
+254.88129600000005
  30
 0.0
  11
-286.5
+344.23288943058486
  21
-253.73039000000003
+254.88129600000005
  31
 0.0
   0
@@ -7757,15 +7901,15 @@ LINE
   8
 cut
  10
-266.5
+400.323798521494
  20
-256.23039000000006
+249.63129600000005
  30
 0.0
  11
-266.5
+403.823798521494
  21
-255.23039000000003
+249.63129600000005
  31
 0.0
   0
@@ -7775,15 +7919,15 @@ LINE
   8
 cut
  10
-266.5
+403.823798521494
  20
-255.23039000000003
+249.63129600000005
  30
 0.0
  11
-267.50000000000006
+400.323798521494
  21
-255.23039000000003
+253.13129600000005
  31
 0.0
   0
@@ -7793,15 +7937,15 @@ LINE
   8
 cut
  10
-267.50000000000006
+400.323798521494
  20
-255.23039000000003
+253.13129600000005
  30
 0.0
  11
-267.50000000000006
+389.4147076124031
  21
-256.23039000000006
+253.13129600000005
  31
 0.0
   0
@@ -7811,15 +7955,15 @@ LINE
   8
 cut
  10
-267.50000000000006
+389.4147076124031
  20
-256.23039000000006
+253.13129600000005
  30
 0.0
  11
-266.5
+385.9147076124031
  21
-256.23039000000006
+249.63129600000005
  31
 0.0
   0
@@ -7829,15 +7973,15 @@ LINE
   8
 cut
  10
-286.5
+385.9147076124031
  20
-256.23039000000006
+249.63129600000005
  30
 0.0
  11
-286.5
+389.4147076124031
  21
-255.23039000000003
+249.63129600000005
  31
 0.0
   0
@@ -7847,15 +7991,15 @@ LINE
   8
 cut
  10
-286.5
+373.0510712487667
  20
-255.23039000000003
+249.63129600000005
  30
 0.0
  11
-287.5
+376.55107124876673
  21
-255.23039000000003
+249.63129600000005
  31
 0.0
   0
@@ -7865,15 +8009,15 @@ LINE
   8
 cut
  10
-287.5
+376.55107124876673
  20
-255.23039000000003
+249.63129600000005
  30
 0.0
  11
-287.5
+373.0510712487667
  21
-256.23039000000006
+253.13129600000005
  31
 0.0
   0
@@ -7883,15 +8027,15 @@ LINE
   8
 cut
  10
-287.5
+373.0510712487667
  20
-256.23039000000006
+253.13129600000005
  30
 0.0
  11
-286.5
+362.14198033967585
  21
-256.23039000000006
+253.13129600000005
  31
 0.0
   0
@@ -7901,15 +8045,15 @@ LINE
   8
 cut
  10
-266.5
+362.14198033967585
  20
-258.73039000000006
+253.13129600000005
  30
 0.0
  11
-266.5
+358.6419803396758
  21
-257.73039
+249.63129600000005
  31
 0.0
   0
@@ -7919,15 +8063,15 @@ LINE
   8
 cut
  10
-266.5
+358.6419803396758
  20
-257.73039
+249.63129600000005
  30
 0.0
  11
-267.50000000000006
+362.14198033967585
  21
-257.73039
+249.63129600000005
  31
 0.0
   0
@@ -7937,15 +8081,15 @@ LINE
   8
 cut
  10
-267.50000000000006
+417.4828894305849
  20
-257.73039
+270.8812960000001
  30
 0.0
  11
-267.50000000000006
+413.9828894305849
  21
-258.73039000000006
+270.8812960000001
  31
 0.0
   0
@@ -7955,15 +8099,15 @@ LINE
   8
 cut
  10
-267.50000000000006
+413.9828894305849
  20
-258.73039000000006
+270.8812960000001
  30
 0.0
  11
-266.5
+413.9828894305849
  21
-258.73039000000006
+262.881296
  31
 0.0
   0
@@ -7973,15 +8117,15 @@ LINE
   8
 cut
  10
-286.5
+413.9828894305849
  20
-258.73039000000006
+262.881296
  30
 0.0
  11
-286.5
+417.4828894305849
  21
-257.73039
+262.881296
  31
 0.0
   0
@@ -7991,15 +8135,15 @@ LINE
   8
 cut
  10
-286.5
+359.7328894305849
  20
-257.73039
+330.381296
  30
 0.0
  11
-287.5
+359.7328894305849
  21
-257.73039
+312.381296
  31
 0.0
   0
@@ -8009,15 +8153,15 @@ LINE
   8
 cut
  10
-287.5
+359.7328894305849
  20
-257.73039
+312.381296
  30
 0.0
  11
-287.5
+394.7328894305849
  21
-258.73039000000006
+312.381296
  31
 0.0
   0
@@ -8027,15 +8171,15 @@ LINE
   8
 cut
  10
-287.5
+394.7328894305849
  20
-258.73039000000006
+312.381296
  30
 0.0
  11
-286.5
+394.7328894305849
  21
-258.73039000000006
+330.381296
  31
 0.0
   0
@@ -8045,15 +8189,15 @@ LINE
   8
 cut
  10
-266.5
+394.7328894305849
  20
-261.23039000000006
+330.381296
  30
 0.0
  11
-266.5
+359.7328894305849
  21
-260.23039000000006
+330.381296
  31
 0.0
   0
@@ -8063,15 +8207,15 @@ LINE
   8
 cut
  10
-266.5
+412.7328894305849
  20
-260.23039000000006
+292.1312960000001
  30
 0.0
  11
-267.50000000000006
+412.7328894305849
  21
-260.23039000000006
+289.131296
  31
 0.0
   0
@@ -8081,15 +8225,15 @@ LINE
   8
 cut
  10
-267.50000000000006
+412.7328894305849
  20
-260.23039000000006
+289.131296
  30
 0.0
  11
-267.50000000000006
+415.7328894305849
  21
-261.23039000000006
+289.131296
  31
 0.0
   0
@@ -8099,15 +8243,15 @@ LINE
   8
 cut
  10
-267.50000000000006
+415.7328894305849
  20
-261.23039000000006
+289.131296
  30
 0.0
  11
-266.5
+415.7328894305849
  21
-261.23039000000006
+292.1312960000001
  31
 0.0
   0
@@ -8117,15 +8261,15 @@ LINE
   8
 cut
  10
-286.5
+415.7328894305849
  20
-261.23039000000006
+292.1312960000001
  30
 0.0
  11
-286.5
+412.7328894305849
  21
-260.23039000000006
+292.1312960000001
  31
 0.0
   0
@@ -8135,15 +8279,15 @@ LINE
   8
 cut
  10
-286.5
+433.7328894305849
  20
-260.23039000000006
+291.1312960000001
  30
 0.0
  11
-287.5
+433.7328894305849
  21
-260.23039000000006
+290.131296
  31
 0.0
   0
@@ -8153,15 +8297,15 @@ LINE
   8
 cut
  10
-287.5
+433.7328894305849
  20
-260.23039000000006
+290.131296
  30
 0.0
  11
-287.5
+434.73288943058486
  21
-261.23039000000006
+290.131296
  31
 0.0
   0
@@ -8171,15 +8315,15 @@ LINE
   8
 cut
  10
-287.5
+434.73288943058486
  20
-261.23039000000006
+290.131296
  30
 0.0
  11
-286.5
+434.73288943058486
  21
-261.23039000000006
+291.1312960000001
  31
 0.0
   0
@@ -8189,15 +8333,15 @@ LINE
   8
 cut
  10
-266.5
+434.73288943058486
  20
-263.73039000000006
+291.1312960000001
  30
 0.0
  11
-266.5
+433.7328894305849
  21
-262.73039000000006
+291.1312960000001
  31
 0.0
   0
@@ -8207,15 +8351,15 @@ LINE
   8
 cut
  10
-266.5
+413.7328894305849
  20
-262.73039000000006
+293.631296
  30
 0.0
  11
-267.50000000000006
+413.7328894305849
  21
-262.73039000000006
+292.6312960000001
  31
 0.0
   0
@@ -8225,15 +8369,15 @@ LINE
   8
 cut
  10
-267.50000000000006
+413.7328894305849
  20
-262.73039000000006
+292.6312960000001
  30
 0.0
  11
-267.50000000000006
+414.7328894305849
  21
-263.73039000000006
+292.6312960000001
  31
 0.0
   0
@@ -8243,15 +8387,15 @@ LINE
   8
 cut
  10
-267.50000000000006
+414.7328894305849
  20
-263.73039000000006
+292.6312960000001
  30
 0.0
  11
-266.5
+414.7328894305849
  21
-263.73039000000006
+293.631296
  31
 0.0
   0
@@ -8261,15 +8405,15 @@ LINE
   8
 cut
  10
-286.5
+414.7328894305849
  20
-263.73039000000006
+293.631296
  30
 0.0
  11
-286.5
+413.7328894305849
  21
-262.73039000000006
+293.631296
  31
 0.0
   0
@@ -8279,15 +8423,15 @@ LINE
   8
 cut
  10
-286.5
+433.7328894305849
  20
-262.73039000000006
+293.631296
  30
 0.0
  11
-287.5
+433.7328894305849
  21
-262.73039000000006
+292.6312960000001
  31
 0.0
   0
@@ -8297,15 +8441,15 @@ LINE
   8
 cut
  10
-287.5
+433.7328894305849
  20
-262.73039000000006
+292.6312960000001
  30
 0.0
  11
-287.5
+434.73288943058486
  21
-263.73039000000006
+292.6312960000001
  31
 0.0
   0
@@ -8315,15 +8459,15 @@ LINE
   8
 cut
  10
-287.5
+434.73288943058486
  20
-263.73039000000006
+292.6312960000001
  30
 0.0
  11
-286.5
+434.73288943058486
  21
-263.73039000000006
+293.631296
  31
 0.0
   0
@@ -8333,15 +8477,15 @@ LINE
   8
 cut
  10
-266.5
+434.73288943058486
  20
-266.23039
+293.631296
  30
 0.0
  11
-266.5
+433.7328894305849
  21
-265.23039000000006
+293.631296
  31
 0.0
   0
@@ -8351,15 +8495,15 @@ LINE
   8
 cut
  10
-266.5
+413.7328894305849
  20
-265.23039000000006
+296.1312960000001
  30
 0.0
  11
-267.50000000000006
+413.7328894305849
  21
-265.23039000000006
+295.1312960000001
  31
 0.0
   0
@@ -8369,15 +8513,15 @@ LINE
   8
 cut
  10
-267.50000000000006
+413.7328894305849
  20
-265.23039000000006
+295.1312960000001
  30
 0.0
  11
-267.50000000000006
+414.7328894305849
  21
-266.23039
+295.1312960000001
  31
 0.0
   0
@@ -8387,15 +8531,15 @@ LINE
   8
 cut
  10
-267.50000000000006
+414.7328894305849
  20
-266.23039
+295.1312960000001
  30
 0.0
  11
-266.5
+414.7328894305849
  21
-266.23039
+296.1312960000001
  31
 0.0
   0
@@ -8405,15 +8549,15 @@ LINE
   8
 cut
  10
-286.5
+414.7328894305849
  20
-266.23039
+296.1312960000001
  30
 0.0
  11
-286.5
+413.7328894305849
  21
-265.23039000000006
+296.1312960000001
  31
 0.0
   0
@@ -8423,15 +8567,15 @@ LINE
   8
 cut
  10
-286.5
+433.7328894305849
  20
-265.23039000000006
+296.1312960000001
  30
 0.0
  11
-287.5
+433.7328894305849
  21
-265.23039000000006
+295.1312960000001
  31
 0.0
   0
@@ -8441,15 +8585,15 @@ LINE
   8
 cut
  10
-287.5
+433.7328894305849
  20
-265.23039000000006
+295.1312960000001
  30
 0.0
  11
-287.5
+434.73288943058486
  21
-266.23039
+295.1312960000001
  31
 0.0
   0
@@ -8459,15 +8603,15 @@ LINE
   8
 cut
  10
-287.5
+434.73288943058486
  20
-266.23039
+295.1312960000001
  30
 0.0
  11
-286.5
+434.73288943058486
  21
-266.23039
+296.1312960000001
  31
 0.0
   0
@@ -8477,15 +8621,15 @@ LINE
   8
 cut
  10
-266.5
+434.73288943058486
  20
-268.73039
+296.1312960000001
  30
 0.0
  11
-266.5
+433.7328894305849
  21
-267.73039000000006
+296.1312960000001
  31
 0.0
   0
@@ -8495,15 +8639,15 @@ LINE
   8
 cut
  10
-266.5
+413.7328894305849
  20
-267.73039000000006
+298.631296
  30
 0.0
  11
-267.50000000000006
+413.7328894305849
  21
-267.73039000000006
+297.6312960000001
  31
 0.0
   0
@@ -8513,15 +8657,15 @@ LINE
   8
 cut
  10
-267.50000000000006
+413.7328894305849
  20
-267.73039000000006
+297.6312960000001
  30
 0.0
  11
-267.50000000000006
+414.7328894305849
  21
-268.73039
+297.6312960000001
  31
 0.0
   0
@@ -8531,15 +8675,15 @@ LINE
   8
 cut
  10
-267.50000000000006
+414.7328894305849
  20
-268.73039
+297.6312960000001
  30
 0.0
  11
-266.5
+414.7328894305849
  21
-268.73039
+298.631296
  31
 0.0
   0
@@ -8549,15 +8693,15 @@ LINE
   8
 cut
  10
-286.5
+414.7328894305849
  20
-268.73039
+298.631296
  30
 0.0
  11
-286.5
+413.7328894305849
  21
-267.73039000000006
+298.631296
  31
 0.0
   0
@@ -8567,15 +8711,15 @@ LINE
   8
 cut
  10
-286.5
+433.7328894305849
  20
-267.73039000000006
+298.631296
  30
 0.0
  11
-287.5
+433.7328894305849
  21
-267.73039000000006
+297.6312960000001
  31
 0.0
   0
@@ -8585,15 +8729,15 @@ LINE
   8
 cut
  10
-287.5
+433.7328894305849
  20
-267.73039000000006
+297.6312960000001
  30
 0.0
  11
-287.5
+434.73288943058486
  21
-268.73039
+297.6312960000001
  31
 0.0
   0
@@ -8603,15 +8747,15 @@ LINE
   8
 cut
  10
-287.5
+434.73288943058486
  20
-268.73039
+297.6312960000001
  30
 0.0
  11
-286.5
+434.73288943058486
  21
-268.73039
+298.631296
  31
 0.0
   0
@@ -8621,15 +8765,15 @@ LINE
   8
 cut
  10
-266.5
+434.73288943058486
  20
-271.23039
+298.631296
  30
 0.0
  11
-266.5
+433.7328894305849
  21
-270.23039000000006
+298.631296
  31
 0.0
   0
@@ -8639,15 +8783,15 @@ LINE
   8
 cut
  10
-266.5
+413.7328894305849
  20
-270.23039000000006
+301.1312960000001
  30
 0.0
  11
-267.50000000000006
+413.7328894305849
  21
-270.23039000000006
+300.1312960000001
  31
 0.0
   0
@@ -8657,15 +8801,15 @@ LINE
   8
 cut
  10
-267.50000000000006
+413.7328894305849
  20
-270.23039000000006
+300.1312960000001
  30
 0.0
  11
-267.50000000000006
+414.7328894305849
  21
-271.23039
+300.1312960000001
  31
 0.0
   0
@@ -8675,15 +8819,15 @@ LINE
   8
 cut
  10
-267.50000000000006
+414.7328894305849
  20
-271.23039
+300.1312960000001
  30
 0.0
  11
-266.5
+414.7328894305849
  21
-271.23039
+301.1312960000001
  31
 0.0
   0
@@ -8693,15 +8837,15 @@ LINE
   8
 cut
  10
-286.5
+414.7328894305849
  20
-271.23039
+301.1312960000001
  30
 0.0
  11
-286.5
+413.7328894305849
  21
-270.23039000000006
+301.1312960000001
  31
 0.0
   0
@@ -8711,15 +8855,15 @@ LINE
   8
 cut
  10
-286.5
+433.7328894305849
  20
-270.23039000000006
+301.1312960000001
  30
 0.0
  11
-287.5
+433.7328894305849
  21
-270.23039000000006
+300.1312960000001
  31
 0.0
   0
@@ -8729,15 +8873,15 @@ LINE
   8
 cut
  10
-287.5
+433.7328894305849
  20
-270.23039000000006
+300.1312960000001
  30
 0.0
  11
-287.5
+434.73288943058486
  21
-271.23039
+300.1312960000001
  31
 0.0
   0
@@ -8747,15 +8891,15 @@ LINE
   8
 cut
  10
-287.5
+434.73288943058486
  20
-271.23039
+300.1312960000001
  30
 0.0
  11
-286.5
+434.73288943058486
  21
-271.23039
+301.1312960000001
  31
 0.0
   0
@@ -8765,15 +8909,15 @@ LINE
   8
 cut
  10
-266.5
+434.73288943058486
  20
-273.73039000000006
+301.1312960000001
  30
 0.0
  11
-266.5
+433.7328894305849
  21
-272.73039000000006
+301.1312960000001
  31
 0.0
   0
@@ -8783,15 +8927,15 @@ LINE
   8
 cut
  10
-266.5
+413.7328894305849
  20
-272.73039000000006
+303.631296
  30
 0.0
  11
-267.50000000000006
+413.7328894305849
  21
-272.73039000000006
+302.631296
  31
 0.0
   0
@@ -8801,15 +8945,15 @@ LINE
   8
 cut
  10
-267.50000000000006
+413.7328894305849
  20
-272.73039000000006
+302.631296
  30
 0.0
  11
-267.50000000000006
+414.7328894305849
  21
-273.73039000000006
+302.631296
  31
 0.0
   0
@@ -8819,15 +8963,15 @@ LINE
   8
 cut
  10
-267.50000000000006
+414.7328894305849
  20
-273.73039000000006
+302.631296
  30
 0.0
  11
-266.5
+414.7328894305849
  21
-273.73039000000006
+303.631296
  31
 0.0
   0
@@ -8837,15 +8981,15 @@ LINE
   8
 cut
  10
-286.5
+414.7328894305849
  20
-273.73039000000006
+303.631296
  30
 0.0
  11
-286.5
+413.7328894305849
  21
-272.73039000000006
+303.631296
  31
 0.0
   0
@@ -8855,15 +8999,15 @@ LINE
   8
 cut
  10
-286.5
+433.7328894305849
  20
-272.73039000000006
+303.631296
  30
 0.0
  11
-287.5
+433.7328894305849
  21
-272.73039000000006
+302.631296
  31
 0.0
   0
@@ -8873,15 +9017,15 @@ LINE
   8
 cut
  10
-287.5
+433.7328894305849
  20
-272.73039000000006
+302.631296
  30
 0.0
  11
-287.5
+434.73288943058486
  21
-273.73039000000006
+302.631296
  31
 0.0
   0
@@ -8891,15 +9035,15 @@ LINE
   8
 cut
  10
-287.5
+434.73288943058486
  20
-273.73039000000006
+302.631296
  30
 0.0
  11
-286.5
+434.73288943058486
  21
-273.73039000000006
+303.631296
  31
 0.0
   0
@@ -8909,15 +9053,15 @@ LINE
   8
 cut
  10
-266.5
+434.73288943058486
  20
-276.23039000000006
+303.631296
  30
 0.0
  11
-266.5
+433.7328894305849
  21
-275.23039
+303.631296
  31
 0.0
   0
@@ -8927,15 +9071,15 @@ LINE
   8
 cut
  10
-266.5
+413.7328894305849
  20
-275.23039
+306.1312960000001
  30
 0.0
  11
-267.50000000000006
+413.7328894305849
  21
-275.23039
+305.1312960000001
  31
 0.0
   0
@@ -8945,15 +9089,15 @@ LINE
   8
 cut
  10
-267.50000000000006
+413.7328894305849
  20
-275.23039
+305.1312960000001
  30
 0.0
  11
-267.50000000000006
+414.7328894305849
  21
-276.23039000000006
+305.1312960000001
  31
 0.0
   0
@@ -8963,15 +9107,15 @@ LINE
   8
 cut
  10
-267.50000000000006
+414.7328894305849
  20
-276.23039000000006
+305.1312960000001
  30
 0.0
  11
-266.5
+414.7328894305849
  21
-276.23039000000006
+306.1312960000001
  31
 0.0
   0
@@ -8981,15 +9125,15 @@ LINE
   8
 cut
  10
-286.5
+414.7328894305849
  20
-276.23039000000006
+306.1312960000001
  30
 0.0
  11
-286.5
+413.7328894305849
  21
-275.23039
+306.1312960000001
  31
 0.0
   0
@@ -8999,15 +9143,15 @@ LINE
   8
 cut
  10
-286.5
+433.7328894305849
  20
-275.23039
+306.1312960000001
  30
 0.0
  11
-287.5
+433.7328894305849
  21
-275.23039
+305.1312960000001
  31
 0.0
   0
@@ -9017,15 +9161,15 @@ LINE
   8
 cut
  10
-287.5
+433.7328894305849
  20
-275.23039
+305.1312960000001
  30
 0.0
  11
-287.5
+434.73288943058486
  21
-276.23039000000006
+305.1312960000001
  31
 0.0
   0
@@ -9035,15 +9179,15 @@ LINE
   8
 cut
  10
-287.5
+434.73288943058486
  20
-276.23039000000006
+305.1312960000001
  30
 0.0
  11
-286.5
+434.73288943058486
  21
-276.23039000000006
+306.1312960000001
  31
 0.0
   0
@@ -9053,15 +9197,15 @@ LINE
   8
 cut
  10
-266.5
+434.73288943058486
  20
-278.73039
+306.1312960000001
  30
 0.0
  11
-266.5
+433.7328894305849
  21
-277.73039000000006
+306.1312960000001
  31
 0.0
   0
@@ -9071,15 +9215,15 @@ LINE
   8
 cut
  10
-266.5
+413.7328894305849
  20
-277.73039000000006
+308.6312960000001
  30
 0.0
  11
-267.50000000000006
+413.7328894305849
  21
-277.73039000000006
+307.631296
  31
 0.0
   0
@@ -9089,15 +9233,15 @@ LINE
   8
 cut
  10
-267.50000000000006
+413.7328894305849
  20
-277.73039000000006
+307.631296
  30
 0.0
  11
-267.50000000000006
+414.7328894305849
  21
-278.73039
+307.631296
  31
 0.0
   0
@@ -9107,15 +9251,15 @@ LINE
   8
 cut
  10
-267.50000000000006
+414.7328894305849
  20
-278.73039
+307.631296
  30
 0.0
  11
-266.5
+414.7328894305849
  21
-278.73039
+308.6312960000001
  31
 0.0
   0
@@ -9125,15 +9269,15 @@ LINE
   8
 cut
  10
-286.5
+414.7328894305849
  20
-278.73039
+308.6312960000001
  30
 0.0
  11
-286.5
+413.7328894305849
  21
-277.73039000000006
+308.6312960000001
  31
 0.0
   0
@@ -9143,15 +9287,15 @@ LINE
   8
 cut
  10
-286.5
+433.7328894305849
  20
-277.73039000000006
+308.6312960000001
  30
 0.0
  11
-287.5
+433.7328894305849
  21
-277.73039000000006
+307.631296
  31
 0.0
   0
@@ -9161,15 +9305,15 @@ LINE
   8
 cut
  10
-287.5
+433.7328894305849
  20
-277.73039000000006
+307.631296
  30
 0.0
  11
-287.5
+434.73288943058486
  21
-278.73039
+307.631296
  31
 0.0
   0
@@ -9179,15 +9323,15 @@ LINE
   8
 cut
  10
-287.5
+434.73288943058486
  20
-278.73039
+307.631296
  30
 0.0
  11
-286.5
+434.73288943058486
  21
-278.73039
+308.6312960000001
  31
 0.0
   0
@@ -9197,15 +9341,15 @@ LINE
   8
 cut
  10
-266.5
+434.73288943058486
  20
-281.23039000000006
+308.6312960000001
  30
 0.0
  11
-266.5
+433.7328894305849
  21
-280.23039
+308.6312960000001
  31
 0.0
   0
@@ -9215,15 +9359,15 @@ LINE
   8
 cut
  10
-266.5
+413.7328894305849
  20
-280.23039
+311.1312960000001
  30
 0.0
  11
-267.50000000000006
+413.7328894305849
  21
-280.23039
+310.1312960000001
  31
 0.0
   0
@@ -9233,15 +9377,15 @@ LINE
   8
 cut
  10
-267.50000000000006
+413.7328894305849
  20
-280.23039
+310.1312960000001
  30
 0.0
  11
-267.50000000000006
+414.7328894305849
  21
-281.23039000000006
+310.1312960000001
  31
 0.0
   0
@@ -9251,15 +9395,15 @@ LINE
   8
 cut
  10
-267.50000000000006
+414.7328894305849
  20
-281.23039000000006
+310.1312960000001
  30
 0.0
  11
-266.5
+414.7328894305849
  21
-281.23039000000006
+311.1312960000001
  31
 0.0
   0
@@ -9269,15 +9413,15 @@ LINE
   8
 cut
  10
-286.5
+414.7328894305849
  20
-281.23039000000006
+311.1312960000001
  30
 0.0
  11
-286.5
+413.7328894305849
  21
-280.23039
+311.1312960000001
  31
 0.0
   0
@@ -9287,15 +9431,15 @@ LINE
   8
 cut
  10
-286.5
+433.7328894305849
  20
-280.23039
+311.1312960000001
  30
 0.0
  11
-287.5
+433.7328894305849
  21
-280.23039
+310.1312960000001
  31
 0.0
   0
@@ -9305,15 +9449,15 @@ LINE
   8
 cut
  10
-287.5
+433.7328894305849
  20
-280.23039
+310.1312960000001
  30
 0.0
  11
-287.5
+434.73288943058486
  21
-281.23039000000006
+310.1312960000001
  31
 0.0
   0
@@ -9323,15 +9467,15 @@ LINE
   8
 cut
  10
-287.5
+434.73288943058486
  20
-281.23039000000006
+310.1312960000001
  30
 0.0
  11
-286.5
+434.73288943058486
  21
-281.23039000000006
+311.1312960000001
  31
 0.0
   0
@@ -9341,15 +9485,15 @@ LINE
   8
 cut
  10
-266.5
+434.73288943058486
  20
-283.73039
+311.1312960000001
  30
 0.0
  11
-266.5
+433.7328894305849
  21
-282.73039000000006
+311.1312960000001
  31
 0.0
   0
@@ -9359,15 +9503,15 @@ LINE
   8
 cut
  10
-266.5
+413.7328894305849
  20
-282.73039000000006
+313.6312960000001
  30
 0.0
  11
-267.50000000000006
+413.7328894305849
  21
-282.73039000000006
+312.631296
  31
 0.0
   0
@@ -9377,15 +9521,15 @@ LINE
   8
 cut
  10
-267.50000000000006
+413.7328894305849
  20
-282.73039000000006
+312.631296
  30
 0.0
  11
-267.50000000000006
+414.7328894305849
  21
-283.73039
+312.631296
  31
 0.0
   0
@@ -9395,15 +9539,15 @@ LINE
   8
 cut
  10
-267.50000000000006
+414.7328894305849
  20
-283.73039
+312.631296
  30
 0.0
  11
-266.5
+414.7328894305849
  21
-283.73039
+313.6312960000001
  31
 0.0
   0
@@ -9413,15 +9557,15 @@ LINE
   8
 cut
  10
-286.5
+414.7328894305849
  20
-283.73039
+313.6312960000001
  30
 0.0
  11
-286.5
+413.7328894305849
  21
-282.73039000000006
+313.6312960000001
  31
 0.0
   0
@@ -9431,15 +9575,15 @@ LINE
   8
 cut
  10
-286.5
+433.7328894305849
  20
-282.73039000000006
+313.6312960000001
  30
 0.0
  11
-287.5
+433.7328894305849
  21
-282.73039000000006
+312.631296
  31
 0.0
   0
@@ -9449,15 +9593,15 @@ LINE
   8
 cut
  10
-287.5
+433.7328894305849
  20
-282.73039000000006
+312.631296
  30
 0.0
  11
-287.5
+434.73288943058486
  21
-283.73039
+312.631296
  31
 0.0
   0
@@ -9467,15 +9611,15 @@ LINE
   8
 cut
  10
-287.5
+434.73288943058486
  20
-283.73039
+312.631296
  30
 0.0
  11
-286.5
+434.73288943058486
  21
-283.73039
+313.6312960000001
  31
 0.0
   0
@@ -9485,15 +9629,15 @@ LINE
   8
 cut
  10
-266.5
+434.73288943058486
  20
-286.23039000000006
+313.6312960000001
  30
 0.0
  11
-266.5
+433.7328894305849
  21
-285.23039000000006
+313.6312960000001
  31
 0.0
   0
@@ -9503,15 +9647,15 @@ LINE
   8
 cut
  10
-266.5
+413.7328894305849
  20
-285.23039000000006
+316.131296
  30
 0.0
  11
-267.50000000000006
+413.7328894305849
  21
-285.23039000000006
+315.1312960000001
  31
 0.0
   0
@@ -9521,15 +9665,15 @@ LINE
   8
 cut
  10
-267.50000000000006
+413.7328894305849
  20
-285.23039000000006
+315.1312960000001
  30
 0.0
  11
-267.50000000000006
+414.7328894305849
  21
-286.23039000000006
+315.1312960000001
  31
 0.0
   0
@@ -9539,15 +9683,15 @@ LINE
   8
 cut
  10
-267.50000000000006
+414.7328894305849
  20
-286.23039000000006
+315.1312960000001
  30
 0.0
  11
-266.5
+414.7328894305849
  21
-286.23039000000006
+316.131296
  31
 0.0
   0
@@ -9557,15 +9701,15 @@ LINE
   8
 cut
  10
-286.5
+414.7328894305849
  20
-286.23039000000006
+316.131296
  30
 0.0
  11
-286.5
+413.7328894305849
  21
-285.23039000000006
+316.131296
  31
 0.0
   0
@@ -9575,15 +9719,15 @@ LINE
   8
 cut
  10
-286.5
+433.7328894305849
  20
-285.23039000000006
+316.131296
  30
 0.0
  11
-287.5
+433.7328894305849
  21
-285.23039000000006
+315.1312960000001
  31
 0.0
   0
@@ -9593,15 +9737,15 @@ LINE
   8
 cut
  10
-287.5
+433.7328894305849
  20
-285.23039000000006
+315.1312960000001
  30
 0.0
  11
-287.5
+434.73288943058486
  21
-286.23039000000006
+315.1312960000001
  31
 0.0
   0
@@ -9611,15 +9755,15 @@ LINE
   8
 cut
  10
-287.5
+434.73288943058486
  20
-286.23039000000006
+315.1312960000001
  30
 0.0
  11
-286.5
+434.73288943058486
  21
-286.23039000000006
+316.131296
  31
 0.0
   0
@@ -9629,15 +9773,15 @@ LINE
   8
 cut
  10
-266.5
+434.73288943058486
  20
-288.73039
+316.131296
  30
 0.0
  11
-266.5
+433.7328894305849
  21
-287.73039000000006
+316.131296
  31
 0.0
   0
@@ -9647,15 +9791,15 @@ LINE
   8
 cut
  10
-266.5
+413.7328894305849
  20
-287.73039000000006
+318.6312960000001
  30
 0.0
  11
-267.50000000000006
+413.7328894305849
  21
-287.73039000000006
+317.6312960000001
  31
 0.0
   0
@@ -9665,15 +9809,15 @@ LINE
   8
 cut
  10
-267.50000000000006
+413.7328894305849
  20
-287.73039000000006
+317.6312960000001
  30
 0.0
  11
-267.50000000000006
+414.7328894305849
  21
-288.73039
+317.6312960000001
  31
 0.0
   0
@@ -9683,15 +9827,15 @@ LINE
   8
 cut
  10
-267.50000000000006
+414.7328894305849
  20
-288.73039
+317.6312960000001
  30
 0.0
  11
-266.5
+414.7328894305849
  21
-288.73039
+318.6312960000001
  31
 0.0
   0
@@ -9701,15 +9845,15 @@ LINE
   8
 cut
  10
-285.50000000000006
+414.7328894305849
  20
-289.73039000000006
+318.6312960000001
  30
 0.0
  11
-285.50000000000006
+413.7328894305849
  21
-286.73039000000006
+318.6312960000001
  31
 0.0
   0
@@ -9719,15 +9863,15 @@ LINE
   8
 cut
  10
-285.50000000000006
+433.7328894305849
  20
-286.73039000000006
+318.6312960000001
  30
 0.0
  11
-288.50000000000006
+433.7328894305849
  21
-286.73039000000006
+317.6312960000001
  31
 0.0
   0
@@ -9737,15 +9881,15 @@ LINE
   8
 cut
  10
-288.50000000000006
+433.7328894305849
  20
-286.73039000000006
+317.6312960000001
  30
 0.0
  11
-288.50000000000006
+434.73288943058486
  21
-289.73039000000006
+317.6312960000001
  31
 0.0
   0
@@ -9755,15 +9899,15 @@ LINE
   8
 cut
  10
-288.50000000000006
+434.73288943058486
  20
-289.73039000000006
+317.6312960000001
  30
 0.0
  11
-285.50000000000006
+434.73288943058486
  21
-289.73039000000006
+318.6312960000001
  31
 0.0
   0
@@ -9773,15 +9917,15 @@ LINE
   8
 cut
  10
-281.25
+434.73288943058486
  20
-246.73039000000003
+318.6312960000001
  30
 0.0
  11
-272.75
+433.7328894305849
  21
-246.73039000000003
+318.6312960000001
  31
 0.0
   0
@@ -9791,15 +9935,15 @@ LINE
   8
 cut
  10
-272.75
+413.7328894305849
  20
-246.73039000000003
+321.131296
  30
 0.0
  11
-272.75
+413.7328894305849
  21
-246.23039000000003
+320.1312960000001
  31
 0.0
   0
@@ -9809,15 +9953,15 @@ LINE
   8
 cut
  10
-272.75
+413.7328894305849
  20
-246.23039000000003
+320.1312960000001
  30
 0.0
  11
-281.25
+414.7328894305849
  21
-246.23039000000003
+320.1312960000001
  31
 0.0
   0
@@ -9827,15 +9971,15 @@ LINE
   8
 cut
  10
-281.25
+414.7328894305849
  20
-246.23039000000003
+320.1312960000001
  30
 0.0
  11
-281.25
+414.7328894305849
  21
-246.73039000000003
+321.131296
  31
 0.0
   0
@@ -9845,15 +9989,15 @@ LINE
   8
 cut
  10
-272.75
+414.7328894305849
  20
-294.48039000000006
+321.131296
  30
 0.0
  11
-281.25
+413.7328894305849
  21
-294.48039000000006
+321.131296
  31
 0.0
   0
@@ -9863,15 +10007,15 @@ LINE
   8
 cut
  10
-281.25
+433.7328894305849
  20
-294.48039000000006
+321.131296
  30
 0.0
  11
-281.25
+433.7328894305849
  21
-294.98039000000006
+320.1312960000001
  31
 0.0
   0
@@ -9881,15 +10025,15 @@ LINE
   8
 cut
  10
-281.25
+433.7328894305849
  20
-294.98039000000006
+320.1312960000001
  30
 0.0
  11
-272.75
+434.73288943058486
  21
-294.98039000000006
+320.1312960000001
  31
 0.0
   0
@@ -9899,15 +10043,15 @@ LINE
   8
 cut
  10
-272.75
+434.73288943058486
  20
-294.98039000000006
+320.1312960000001
  30
 0.0
  11
-272.75
+434.73288943058486
  21
-294.48039000000006
+321.131296
  31
 0.0
   0
@@ -9917,15 +10061,15 @@ LINE
   8
 cut
  10
-257.5
+434.73288943058486
  20
-250.07129909090912
+321.131296
  30
 0.0
  11
-262.5
+433.7328894305849
  21
-250.07129909090912
+321.131296
  31
 0.0
   0
@@ -9935,15 +10079,15 @@ LINE
   8
 cut
  10
-262.5
+413.7328894305849
  20
-250.07129909090912
+323.6312960000001
  30
 0.0
  11
-262.5
+413.7328894305849
  21
-261.16220818181824
+322.6312960000001
  31
 0.0
   0
@@ -9953,15 +10097,15 @@ LINE
   8
 cut
  10
-262.5
+413.7328894305849
  20
-261.16220818181824
+322.6312960000001
  30
 0.0
  11
-257.5
+414.7328894305849
  21
-261.16220818181824
+322.6312960000001
  31
 0.0
   0
@@ -9971,15 +10115,15 @@ LINE
   8
 cut
  10
-257.5
+414.7328894305849
  20
-277.7985718181818
+322.6312960000001
  30
 0.0
  11
-262.5
+414.7328894305849
  21
-277.7985718181818
+323.6312960000001
  31
 0.0
   0
@@ -9989,15 +10133,15 @@ LINE
   8
 cut
  10
-262.5
+414.7328894305849
  20
-277.7985718181818
+323.6312960000001
  30
 0.0
  11
-262.5
+413.7328894305849
  21
-288.889480909091
+323.6312960000001
  31
 0.0
   0
@@ -10007,15 +10151,15 @@ LINE
   8
 cut
  10
-262.5
+433.7328894305849
  20
-288.889480909091
+323.6312960000001
  30
 0.0
  11
-257.5
+433.7328894305849
  21
-288.889480909091
+322.6312960000001
  31
 0.0
   0
@@ -10025,15 +10169,15 @@ LINE
   8
 cut
  10
-282.75
+433.7328894305849
  20
-222.98039000000003
+322.6312960000001
  30
 0.0
  11
-286.25
+434.73288943058486
  21
-222.98039000000003
+322.6312960000001
  31
 0.0
   0
@@ -10043,15 +10187,15 @@ LINE
   8
 cut
  10
-286.25
+434.73288943058486
  20
-222.98039000000003
+322.6312960000001
  30
 0.0
  11
-286.25
+434.73288943058486
  21
-230.98039000000003
+323.6312960000001
  31
 0.0
   0
@@ -10061,115 +10205,105 @@ LINE
   8
 cut
  10
-286.25
+434.73288943058486
  20
-230.98039000000003
+323.6312960000001
  30
 0.0
  11
-282.75
+433.7328894305849
  21
-230.98039000000003
+323.6312960000001
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
-90
+cut
  10
-653.0000000000001
+413.7328894305849
  20
-101.98039000000001
+326.131296
  30
 0.0
  11
-653.0000000000001
+413.7328894305849
  21
-351.98039
+325.131296
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
-90
+cut
  10
-593.0
+413.7328894305849
  20
-101.98039000000001
+325.131296
  30
 0.0
  11
-593.0
+414.7328894305849
  21
-351.98039
+325.131296
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
-11.30993247402023
+cut
  10
-623.0000000000001
+414.7328894305849
  20
-101.98039000000001
+325.131296
  30
 0.0
  11
-593.0
+414.7328894305849
  21
-101.98039000000001
+326.131296
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
-11.30993247402023
+cut
  10
-653.0000000000001
+414.7328894305849
  20
-101.98039000000001
+326.131296
  30
 0.0
  11
-623.0000000000001
+413.7328894305849
  21
-101.98039000000001
+326.131296
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
-86.76946761667858
+cut
  10
-623.0000000000001
+433.7328894305849
  20
--2.718556970648933e-07
+326.131296
  30
 0.0
  11
-593.0
+433.7328894305849
  21
-101.98039000000003
+325.131296
  31
 0.0
   0
@@ -10179,15 +10313,15 @@ LINE
   8
 cut
  10
-577.4351669969384
+433.7328894305849
  20
-88.51883783587918
+325.131296
  30
 0.0
  11
-575.2175834984691
+434.73288943058486
  21
-92.82693910068978
+325.131296
  31
 0.0
   0
@@ -10197,55 +10331,51 @@ LINE
   8
 cut
  10
-623.0000000000001
+434.73288943058486
  20
--2.718556970648933e-07
+325.131296
  30
 0.0
  11
-577.4351669969384
+434.73288943058486
  21
-88.51883783587918
+326.131296
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
-180
+cut
  10
-593.0
+434.73288943058486
  20
-101.98039000000001
+326.131296
  30
 0.0
  11
-575.2175834984691
+433.7328894305849
  21
-92.82693910068978
+326.131296
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
--180
+cut
  10
-593.0
+413.7328894305849
  20
-101.98039000000001
+328.6312960000001
  30
 0.0
  11
-573.0
+413.7328894305849
  21
-97.13504036550037
+327.6312960000001
  31
 0.0
   0
@@ -10255,55 +10385,51 @@ LINE
   8
 cut
  10
-575.2175834984691
+413.7328894305849
  20
-92.82693910068978
+327.6312960000001
  30
 0.0
  11
-573.0
+414.7328894305849
  21
-97.13504036550037
+327.6312960000001
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
--174
+cut
  10
-573.0
+414.7328894305849
  20
-101.98039000000001
+327.6312960000001
  30
 0.0
  11
-573.0
+414.7328894305849
  21
-97.1350403655004
+328.6312960000001
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
-16.699244233993625
+cut
  10
-593.0
+414.7328894305849
  20
-101.98039000000001
+328.6312960000001
  30
 0.0
  11
-573.0
+413.7328894305849
  21
-101.98039000000001
+328.6312960000001
  31
 0.0
   0
@@ -10313,15 +10439,15 @@ LINE
   8
 cut
  10
-571.3848834551669
+432.7328894305849
  20
-101.98039000000001
+329.6312960000001
  30
 0.0
  11
-573.0
+432.7328894305849
  21
-101.98039000000001
+326.631296
  31
 0.0
   0
@@ -10331,15 +10457,15 @@ LINE
   8
 cut
  10
-571.3848834551669
+432.7328894305849
  20
-97.1350403655004
+326.631296
  30
 0.0
  11
-571.3848834551669
+435.7328894305849
  21
-101.98039000000001
+326.631296
  31
 0.0
   0
@@ -10349,75 +10475,69 @@ LINE
   8
 cut
  10
-573.0
+435.7328894305849
  20
-97.1350403655004
+326.631296
  30
 0.0
  11
-571.3848834551669
+435.7328894305849
  21
-97.1350403655004
+329.6312960000001
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
-50.19442890773482
+cut
  10
-573.0
+435.7328894305849
  20
-351.98039
+329.6312960000001
  30
 0.0
  11
-593.0
+432.7328894305849
  21
-351.98039
+329.6312960000001
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
--180
+cut
  10
-573.0
+428.4828894305849
  20
-366.05164438473815
+286.6312960000001
  30
 0.0
  11
-593.0
+419.9828894305849
  21
-351.98039
+286.6312960000001
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
--174
+cut
  10
-573.0
+419.9828894305849
  20
-366.05164438473815
+286.6312960000001
  30
 0.0
  11
-573.0
+419.9828894305849
  21
-351.98039
+286.1312960000001
  31
 0.0
   0
@@ -10427,55 +10547,51 @@ LINE
   8
 cut
  10
-573.0
+419.9828894305849
  20
-366.0516443847381
+286.1312960000001
  30
 0.0
  11
-586.2441561038441
+428.4828894305849
  21
-370.80480428705755
+286.1312960000001
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
-180
+cut
  10
-586.2441561038441
+428.4828894305849
  20
-370.80480428705755
+286.1312960000001
  30
 0.0
  11
-593.0
+428.4828894305849
  21
-351.98039
+286.6312960000001
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
-61.320865828384
+cut
  10
-623.0000000000001
+419.9828894305849
  20
-383.99601118716436
+334.381296
  30
 0.0
  11
-593.0
+428.4828894305849
  21
-351.98039
+334.381296
  31
 0.0
   0
@@ -10485,15 +10601,15 @@ LINE
   8
 cut
  10
-599.4883122076884
+428.4828894305849
  20
-375.55796418937695
+334.381296
  30
 0.0
  11
-623.0000000000001
+428.4828894305849
  21
-383.99601118716436
+334.881296
  31
 0.0
   0
@@ -10503,75 +10619,69 @@ LINE
   8
 cut
  10
-586.2441561038441
+428.4828894305849
  20
-370.80480428705755
+334.881296
  30
 0.0
  11
-599.4883122076884
+419.9828894305849
  21
-375.55796418937695
+334.881296
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
-38.65980825409008
+cut
  10
-593.0
+419.9828894305849
  20
-351.98039
+334.881296
  30
 0.0
  11
-623.0000000000001
+419.9828894305849
  21
-351.98039
+334.381296
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
-38.65980825409008
+cut
  10
-623.0000000000001
+451.2328894305849
  20
-351.98039
+329.881296
  30
 0.0
  11
-653.0000000000001
+451.2328894305849
  21
-351.98039
+316.881296
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
-61.320865828384
+cut
  10
-623.0000000000001
+451.2328894305849
  20
-383.99601118716436
+316.881296
  30
 0.0
  11
-653.0000000000001
+481.2328894305849
  21
-351.98039
+316.881296
  31
 0.0
   0
@@ -10581,15 +10691,15 @@ LINE
   8
 cut
  10
-646.5116877923116
+481.2328894305849
  20
-375.55796418937695
+316.881296
  30
 0.0
  11
-659.7558438961557
+481.2328894305849
  21
-370.80480428705755
+329.881296
  31
 0.0
   0
@@ -10599,55 +10709,51 @@ LINE
   8
 cut
  10
-623.0000000000001
+481.2328894305849
  20
-383.9960111871643
+329.881296
  30
 0.0
  11
-646.5116877923116
+451.2328894305849
  21
-375.55796418937695
+329.881296
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
-180
+cut
  10
-653.0000000000001
+458.30107124876673
  20
-351.98039
+284.381296
  30
 0.0
  11
-659.7558438961557
+446.89198033967585
  21
-370.80480428705755
+284.381296
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
--180
+cut
  10
-653.0000000000001
+446.89198033967585
  20
-351.98039000000006
+284.381296
  30
 0.0
  11
-673.0
+446.89198033967585
  21
-366.05164438473815
+283.8812960000001
  31
 0.0
   0
@@ -10657,55 +10763,51 @@ LINE
   8
 cut
  10
-659.7558438961557
+446.89198033967585
  20
-370.8048042870576
+283.8812960000001
  30
 0.0
  11
-673.0
+458.30107124876673
  21
-366.05164438473815
+283.8812960000001
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
--174
+cut
  10
-673.0
+458.30107124876673
  20
-351.98039000000006
+283.8812960000001
  30
 0.0
  11
-673.0
+458.30107124876673
  21
-366.05164438473815
+284.381296
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
-50.19442890773482
+cut
  10
-653.0000000000001
+485.573798521494
  20
-351.98039000000006
+284.381296
  30
 0.0
  11
-673.0
+474.1647076124031
  21
-351.98039000000006
+284.381296
  31
 0.0
   0
@@ -10715,15 +10817,15 @@ LINE
   8
 cut
  10
-677.690418128246
+474.1647076124031
  20
-351.98039000000006
+284.381296
  30
 0.0
  11
-673.0
+474.1647076124031
  21
-351.98039000000006
+283.8812960000001
  31
 0.0
   0
@@ -10733,15 +10835,15 @@ LINE
   8
 cut
  10
-677.690418128246
+474.1647076124031
  20
-366.05164438473815
+283.8812960000001
  30
 0.0
  11
-677.690418128246
+485.573798521494
  21
-351.98039000000006
+283.8812960000001
  31
 0.0
   0
@@ -10751,15 +10853,15 @@ LINE
   8
 cut
  10
-673.0
+485.573798521494
  20
-366.05164438473815
+283.8812960000001
  30
 0.0
  11
-677.690418128246
+485.573798521494
  21
-366.05164438473815
+284.381296
  31
 0.0
   0
@@ -10769,75 +10871,69 @@ LINE
   8
 cut
  10
-673.0
+488.4828894305849
  20
-351.98039
+301.3131141818182
  30
 0.0
  11
-673.0000000000001
+488.4828894305849
  21
-101.98038999999997
+289.7222050909092
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
-16.699244233993625
+cut
  10
-673.0000000000001
+488.4828894305849
  20
-101.98038999999999
+289.7222050909092
  30
 0.0
  11
-653.0000000000001
+488.9828894305849
  21
-101.98038999999997
+289.7222050909092
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
--180
+cut
  10
-673.0000000000001
+488.9828894305849
  20
-97.13504036550036
+289.7222050909092
  30
 0.0
  11
-653.0000000000001
+488.9828894305849
  21
-101.98038999999997
+301.3131141818182
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
--174
+cut
  10
-673.0000000000001
+488.9828894305849
  20
-97.13504036550036
+301.3131141818182
  30
 0.0
  11
-673.0000000000001
+488.4828894305849
  21
-101.98038999999997
+301.3131141818182
  31
 0.0
   0
@@ -10847,55 +10943,51 @@ LINE
   8
 cut
  10
-673.0000000000001
+488.4828894305849
  20
-97.13504036550036
+329.040386909091
  30
 0.0
  11
-670.782416501531
+488.4828894305849
  21
-92.82693910068974
+317.4494778181819
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
-180
+cut
  10
-670.782416501531
+488.4828894305849
  20
-92.82693910068974
+317.4494778181819
  30
 0.0
  11
-653.0000000000001
+488.9828894305849
  21
-101.98038999999997
+317.4494778181819
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
-86.76946761667858
+cut
  10
-623.0000000000002
+488.9828894305849
  20
--2.7185575390831223e-07
+317.4494778181819
  30
 0.0
  11
-653.0000000000001
+488.9828894305849
  21
-101.98038999999997
+329.040386909091
  31
 0.0
   0
@@ -10905,15 +10997,15 @@ LINE
   8
 cut
  10
-668.5648330030618
+488.9828894305849
  20
-88.51883783587913
+329.040386909091
  30
 0.0
  11
-623.0000000000002
+488.4828894305849
  21
--2.7185575390831223e-07
+329.040386909091
  31
 0.0
   0
@@ -10923,15 +11015,15 @@ LINE
   8
 cut
  10
-670.782416501531
+328.7328894305849
  20
-92.82693910068974
+292.1312960000001
  30
 0.0
  11
-668.5648330030618
+328.7328894305849
  21
-88.51883783587913
+289.131296
  31
 0.0
   0
@@ -10941,15 +11033,15 @@ LINE
   8
 cut
  10
-674.6151165448334
+328.7328894305849
  20
-97.13504036550036
+289.131296
  30
 0.0
  11
-673.0000000000001
+331.7328894305849
  21
-97.13504036550036
+289.131296
  31
 0.0
   0
@@ -10959,15 +11051,15 @@ LINE
   8
 cut
  10
-674.6151165448334
+331.7328894305849
  20
-101.98038999999997
+289.131296
  30
 0.0
  11
-674.6151165448334
+331.7328894305849
  21
-97.13504036550036
+292.1312960000001
  31
 0.0
   0
@@ -10977,15 +11069,15 @@ LINE
   8
 cut
  10
-673.0000000000001
+331.7328894305849
  20
-101.98038999999997
+292.1312960000001
  30
 0.0
  11
-674.6151165448334
+328.7328894305849
  21
-101.98038999999997
+292.1312960000001
  31
 0.0
   0
@@ -10995,15 +11087,15 @@ LINE
   8
 cut
  10
-568.3095818717541
+349.7328894305849
  20
-366.0516443847381
+291.1312960000001
  30
 0.0
  11
-573.0
+349.7328894305849
  21
-366.0516443847381
+290.131296
  31
 0.0
   0
@@ -11013,15 +11105,15 @@ LINE
   8
 cut
  10
-568.3095818717541
+349.7328894305849
  20
-351.98039
+290.131296
  30
 0.0
  11
-568.3095818717541
+350.7328894305849
  21
-366.0516443847381
+290.131296
  31
 0.0
   0
@@ -11031,15 +11123,15 @@ LINE
   8
 cut
  10
-573.0
+350.7328894305849
  20
-351.98039
+290.131296
  30
 0.0
  11
-568.3095818717541
+350.7328894305849
  21
-351.98039
+291.1312960000001
  31
 0.0
   0
@@ -11049,15 +11141,15 @@ LINE
   8
 cut
  10
-573.0
+350.7328894305849
  20
-351.98039
+291.1312960000001
  30
 0.0
  11
-573.0
+349.7328894305849
  21
-351.98039
+291.1312960000001
  31
 0.0
   0
@@ -11067,15 +11159,15 @@ LINE
   8
 cut
  10
-573.0
+329.73288943058486
  20
-251.98039000000003
+293.631296
  30
 0.0
  11
-573.0
+329.73288943058486
  21
-351.98039
+292.6312960000001
  31
 0.0
   0
@@ -11085,15 +11177,15 @@ LINE
   8
 cut
  10
-573.0
+329.73288943058486
  20
-101.98039000000001
+292.6312960000001
  30
 0.0
  11
-573.0
+330.7328894305849
  21
-201.98039000000003
+292.6312960000001
  31
 0.0
   0
@@ -11103,75 +11195,69 @@ LINE
   8
 cut
  10
-573.0
+330.7328894305849
  20
-101.98039000000001
+292.6312960000001
  30
 0.0
  11
-573.0
+330.7328894305849
  21
-101.98039000000001
+293.631296
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
-90
+cut
  10
-573.0
+330.7328894305849
  20
-251.98039000000003
+293.631296
  30
 0.0
  11
-543.0000000000001
+329.73288943058486
  21
-251.98039000000003
+293.631296
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
-90
+cut
  10
-543.0000000000001
+349.7328894305849
  20
-201.98039000000003
+293.631296
  30
 0.0
  11
-543.0000000000001
+349.7328894305849
  21
-251.98039000000003
+292.6312960000001
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
-90
+cut
  10
-543.0000000000001
+349.7328894305849
  20
-201.98039000000003
+292.6312960000001
  30
 0.0
  11
-573.0
+350.7328894305849
  21
-201.98039000000003
+292.6312960000001
  31
 0.0
   0
@@ -11181,15 +11267,15 @@ LINE
   8
 cut
  10
-573.0
+350.7328894305849
  20
-261.98039
+292.6312960000001
  30
 0.0
  11
-573.0
+350.7328894305849
  21
-251.98039000000003
+293.631296
  31
 0.0
   0
@@ -11199,15 +11285,15 @@ LINE
   8
 cut
  10
-543.0000000000001
+350.7328894305849
  20
-261.98039
+293.631296
  30
 0.0
  11
-573.0
+349.7328894305849
  21
-261.98039
+293.631296
  31
 0.0
   0
@@ -11217,75 +11303,69 @@ LINE
   8
 cut
  10
-543.0000000000001
+329.73288943058486
  20
-251.98039000000003
+296.1312960000001
  30
 0.0
  11
-543.0000000000001
+329.73288943058486
  21
-261.98039
+295.1312960000001
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
-90
+cut
  10
-543.0000000000001
+329.73288943058486
  20
-251.98039000000003
+295.1312960000001
  30
 0.0
  11
-483.00000000000006
+330.7328894305849
  21
-251.98039
+295.1312960000001
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
-90
+cut
  10
-483.00000000000006
+330.7328894305849
  20
-251.98039
+295.1312960000001
  30
 0.0
  11
-483.00000000000006
+330.7328894305849
  21
-201.98039
+296.1312960000001
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
-90
+cut
  10
-483.00000000000006
+330.7328894305849
  20
-201.98039
+296.1312960000001
  30
 0.0
  11
-543.0000000000001
+329.73288943058486
  21
-201.98039000000003
+296.1312960000001
  31
 0.0
   0
@@ -11295,15 +11375,15 @@ LINE
   8
 cut
  10
-483.00000000000006
+349.7328894305849
  20
-281.98039000000006
+296.1312960000001
  30
 0.0
  11
-543.0000000000001
+349.7328894305849
  21
-281.98039000000006
+295.1312960000001
  31
 0.0
   0
@@ -11313,15 +11393,15 @@ LINE
   8
 cut
  10
-483.00000000000006
+349.7328894305849
  20
-251.98039
+295.1312960000001
  30
 0.0
  11
-483.00000000000006
+350.7328894305849
  21
-281.98039000000006
+295.1312960000001
  31
 0.0
   0
@@ -11331,35 +11411,33 @@ LINE
   8
 cut
  10
-543.0000000000001
+350.7328894305849
  20
-281.98039000000006
+295.1312960000001
  30
 0.0
  11
-543.0000000000001
+350.7328894305849
  21
-251.98039000000003
+296.1312960000001
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
-90
+cut
  10
-483.00000000000006
+350.7328894305849
  20
-251.98039
+296.1312960000001
  30
 0.0
  11
-453.00000000000006
+349.7328894305849
  21
-251.98039
+296.1312960000001
  31
 0.0
   0
@@ -11369,15 +11447,15 @@ LINE
   8
 cut
  10
-483.00000000000006
+329.73288943058486
  20
-201.98039
+298.631296
  30
 0.0
  11
-453.00000000000006
+329.73288943058486
  21
-201.98039
+297.6312960000001
  31
 0.0
   0
@@ -11387,15 +11465,15 @@ LINE
   8
 cut
  10
-483.00000000000006
+329.73288943058486
  20
-261.98039
+297.6312960000001
  30
 0.0
  11
-483.00000000000006
+330.7328894305849
  21
-251.98039
+297.6312960000001
  31
 0.0
   0
@@ -11405,15 +11483,15 @@ LINE
   8
 cut
  10
-453.00000000000006
+330.7328894305849
  20
-261.98038999999994
+297.6312960000001
  30
 0.0
  11
-483.00000000000006
+330.7328894305849
  21
-261.98039
+298.631296
  31
 0.0
   0
@@ -11423,15 +11501,15 @@ LINE
   8
 cut
  10
-453.00000000000006
+330.7328894305849
  20
-251.98039
+298.631296
  30
 0.0
  11
-453.00000000000006
+329.73288943058486
  21
-261.98038999999994
+298.631296
  31
 0.0
   0
@@ -11441,15 +11519,15 @@ LINE
   8
 cut
  10
-453.00000000000006
+349.7328894305849
  20
-101.98038999999999
+298.631296
  30
 0.0
  11
-453.00000000000006
+349.7328894305849
  21
-101.98038999999999
+297.6312960000001
  31
 0.0
   0
@@ -11459,15 +11537,15 @@ LINE
   8
 cut
  10
-453.00000000000006
+349.7328894305849
  20
-201.98039
+297.6312960000001
  30
 0.0
  11
-453.00000000000006
+350.7328894305849
  21
-101.98038999999999
+297.6312960000001
  31
 0.0
   0
@@ -11477,15 +11555,15 @@ LINE
   8
 cut
  10
-453.0
+350.7328894305849
  20
-351.98039
+297.6312960000001
  30
 0.0
  11
-453.00000000000006
+350.7328894305849
  21
-251.98039
+298.631296
  31
 0.0
   0
@@ -11495,15 +11573,15 @@ LINE
   8
 cut
  10
-453.0
+350.7328894305849
  20
-351.98039
+298.631296
  30
 0.0
  11
-453.0
+349.7328894305849
  21
-351.98039
+298.631296
  31
 0.0
   0
@@ -11513,15 +11591,15 @@ LINE
   8
 cut
  10
-443.0
+329.73288943058486
  20
-351.98039
+301.1312960000001
  30
 0.0
  11
-453.0
+329.73288943058486
  21
-351.98039
+300.1312960000001
  31
 0.0
   0
@@ -11531,15 +11609,15 @@ LINE
   8
 cut
  10
-443.00000000000006
+329.73288943058486
  20
-101.98038999999999
+300.1312960000001
  30
 0.0
  11
-443.0
+330.7328894305849
  21
-351.98039
+300.1312960000001
  31
 0.0
   0
@@ -11549,35 +11627,33 @@ LINE
   8
 cut
  10
-453.00000000000006
+330.7328894305849
  20
-101.98038999999999
+300.1312960000001
  30
 0.0
  11
-443.00000000000006
+330.7328894305849
  21
-101.98038999999999
+301.1312960000001
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
-90
+cut
  10
-483.00000000000006
+330.7328894305849
  20
-201.98039
+301.1312960000001
  30
 0.0
  11
-483.00000000000006
+329.73288943058486
  21
-171.98039
+301.1312960000001
  31
 0.0
   0
@@ -11587,15 +11663,15 @@ LINE
   8
 cut
  10
-543.0000000000001
+349.7328894305849
  20
-171.98039000000003
+301.1312960000001
  30
 0.0
  11
-483.00000000000006
+349.7328894305849
  21
-171.98039
+300.1312960000001
  31
 0.0
   0
@@ -11605,15 +11681,15 @@ LINE
   8
 cut
  10
-543.0000000000001
+349.7328894305849
  20
-201.98039000000003
+300.1312960000001
  30
 0.0
  11
-543.0000000000001
+350.7328894305849
  21
-171.98039000000003
+300.1312960000001
  31
 0.0
   0
@@ -11623,15 +11699,15 @@ LINE
   8
 cut
  10
-473.00000000000006
+350.7328894305849
  20
-201.98039
+300.1312960000001
  30
 0.0
  11
-483.00000000000006
+350.7328894305849
  21
-201.98039
+301.1312960000001
  31
 0.0
   0
@@ -11641,15 +11717,15 @@ LINE
   8
 cut
  10
-473.00000000000006
+350.7328894305849
  20
-171.98039
+301.1312960000001
  30
 0.0
  11
-473.00000000000006
+349.7328894305849
  21
-201.98039
+301.1312960000001
  31
 0.0
   0
@@ -11659,15 +11735,15 @@ LINE
   8
 cut
  10
-483.00000000000006
+329.73288943058486
  20
-171.98039
+303.631296
  30
 0.0
  11
-473.00000000000006
+329.73288943058486
  21
-171.98039
+302.631296
  31
 0.0
   0
@@ -11677,15 +11753,15 @@ LINE
   8
 cut
  10
-543.0000000000001
+329.73288943058486
  20
-191.98039000000003
+302.631296
  30
 0.0
  11
-543.0000000000001
+330.7328894305849
  21
-201.98039000000003
+302.631296
  31
 0.0
   0
@@ -11695,15 +11771,15 @@ LINE
   8
 cut
  10
-573.0
+330.7328894305849
  20
-191.98039000000003
+302.631296
  30
 0.0
  11
-543.0000000000001
+330.7328894305849
  21
-191.98039000000003
+303.631296
  31
 0.0
   0
@@ -11713,15 +11789,15 @@ LINE
   8
 cut
  10
-573.0
+330.7328894305849
  20
-201.98039000000003
+303.631296
  30
 0.0
  11
-573.0
+329.73288943058486
  21
-191.98039000000003
+303.631296
  31
 0.0
   0
@@ -11731,15 +11807,15 @@ LINE
   8
 cut
  10
-578.1096961561617
+349.7328894305849
  20
-90.40140539540558
+303.631296
  30
 0.0
  11
-577.1416653841894
+349.7328894305849
  21
-92.28199956288073
+302.631296
  31
 0.0
   0
@@ -11749,15 +11825,15 @@ LINE
   8
 cut
  10
-577.1416653841894
+349.7328894305849
  20
-92.28199956288073
+302.631296
  30
 0.0
  11
-576.6971049716511
+350.7328894305849
  21
-92.05316329039796
+302.631296
  31
 0.0
   0
@@ -11767,15 +11843,15 @@ LINE
   8
 cut
  10
-576.6971049716511
+350.7328894305849
  20
-92.05316329039796
+302.631296
  30
 0.0
  11
-577.6651357436235
+350.7328894305849
  21
-90.17256912292281
+303.631296
  31
 0.0
   0
@@ -11785,15 +11861,15 @@ LINE
   8
 cut
  10
-577.6651357436235
+350.7328894305849
  20
-90.17256912292281
+303.631296
  30
 0.0
  11
-578.1096961561617
+349.7328894305849
  21
-90.40140539540558
+303.631296
  31
 0.0
   0
@@ -11803,15 +11879,15 @@ LINE
   8
 cut
  10
-571.7886625913752
+329.73288943058486
  20
-98.75015691033362
+306.1312960000001
  30
 0.0
  11
-572.5962208637918
+329.73288943058486
  21
-98.75015691033362
+305.1312960000001
  31
 0.0
   0
@@ -11821,15 +11897,15 @@ LINE
   8
 cut
  10
-572.5962208637918
+329.73288943058486
  20
-98.75015691033362
+305.1312960000001
  30
 0.0
  11
-572.5962208637918
+330.7328894305849
  21
-100.36527345516681
+305.1312960000001
  31
 0.0
   0
@@ -11839,15 +11915,15 @@ LINE
   8
 cut
  10
-572.5962208637918
+330.7328894305849
  20
-100.36527345516681
+305.1312960000001
  30
 0.0
  11
-571.7886625913752
+330.7328894305849
  21
-100.36527345516681
+306.1312960000001
  31
 0.0
   0
@@ -11857,15 +11933,15 @@ LINE
   8
 cut
  10
-591.6963076508192
+330.7328894305849
  20
-368.7583986679128
+306.1312960000001
  30
 0.0
  11
-596.5816367092771
+329.73288943058486
  21
-370.5116813994232
+306.1312960000001
  31
 0.0
   0
@@ -11875,15 +11951,15 @@ LINE
   8
 cut
  10
-596.5816367092771
+349.7328894305849
  20
-370.5116813994232
+306.1312960000001
  30
 0.0
  11
-596.4127406118731
+349.7328894305849
  21
-370.98229175659964
+305.1312960000001
  31
 0.0
   0
@@ -11893,15 +11969,15 @@ LINE
   8
 cut
  10
-596.4127406118731
+349.7328894305849
  20
-370.98229175659964
+305.1312960000001
  30
 0.0
  11
-591.5274115534152
+350.7328894305849
  21
-369.2290090250893
+305.1312960000001
  31
 0.0
   0
@@ -11911,15 +11987,15 @@ LINE
   8
 cut
  10
-591.5274115534152
+350.7328894305849
  20
-369.2290090250893
+305.1312960000001
  30
 0.0
  11
-591.6963076508192
+350.7328894305849
  21
-368.7583986679128
+306.1312960000001
  31
 0.0
   0
@@ -11929,15 +12005,15 @@ LINE
   8
 cut
  10
-649.418363290723
+350.7328894305849
  20
-370.5116813994232
+306.1312960000001
  30
 0.0
  11
-654.3036923491809
+349.7328894305849
  21
-368.7583986679128
+306.1312960000001
  31
 0.0
   0
@@ -11947,15 +12023,15 @@ LINE
   8
 cut
  10
-654.3036923491809
+329.73288943058486
  20
-368.7583986679128
+308.6312960000001
  30
 0.0
  11
-654.4725884465847
+329.73288943058486
  21
-369.2290090250893
+307.631296
  31
 0.0
   0
@@ -11965,15 +12041,15 @@ LINE
   8
 cut
  10
-654.4725884465847
+329.73288943058486
  20
-369.2290090250893
+307.631296
  30
 0.0
  11
-649.587259388127
+330.7328894305849
  21
-370.98229175659964
+307.631296
  31
 0.0
   0
@@ -11983,15 +12059,15 @@ LINE
   8
 cut
  10
-649.587259388127
+330.7328894305849
  20
-370.98229175659964
+307.631296
  30
 0.0
  11
-649.418363290723
+330.7328894305849
  21
-370.5116813994232
+308.6312960000001
  31
 0.0
   0
@@ -12001,15 +12077,15 @@ LINE
   8
 cut
  10
-676.5178135961846
+330.7328894305849
  20
-361.3612262564921
+308.6312960000001
  30
 0.0
  11
-674.1726045320615
+329.73288943058486
  21
-361.3612262564921
+308.6312960000001
  31
 0.0
   0
@@ -12019,15 +12095,15 @@ LINE
   8
 cut
  10
-674.1726045320615
+349.7328894305849
  20
-361.3612262564921
+308.6312960000001
  30
 0.0
  11
-674.1726045320615
+349.7328894305849
  21
-356.6708081282461
+307.631296
  31
 0.0
   0
@@ -12037,15 +12113,15 @@ LINE
   8
 cut
  10
-674.1726045320615
+349.7328894305849
  20
-356.6708081282461
+307.631296
  30
 0.0
  11
-676.5178135961846
+350.7328894305849
  21
-356.6708081282461
+307.631296
  31
 0.0
   0
@@ -12055,15 +12131,15 @@ LINE
   8
 cut
  10
-665.2500000000001
+350.7328894305849
  20
-140.69192846153842
+307.631296
  30
 0.0
  11
-665.2500000000001
+350.7328894305849
  21
-120.9611592307692
+308.6312960000001
  31
 0.0
   0
@@ -12073,15 +12149,15 @@ LINE
   8
 cut
  10
-665.2500000000001
+350.7328894305849
  20
-120.9611592307692
+308.6312960000001
  30
 0.0
  11
-665.7500000000001
+349.7328894305849
  21
-120.9611592307692
+308.6312960000001
  31
 0.0
   0
@@ -12091,15 +12167,15 @@ LINE
   8
 cut
  10
-665.7500000000001
+329.73288943058486
  20
-120.9611592307692
+311.1312960000001
  30
 0.0
  11
-665.7500000000001
+329.73288943058486
  21
-140.69192846153842
+310.1312960000001
  31
 0.0
   0
@@ -12109,15 +12185,15 @@ LINE
   8
 cut
  10
-665.7500000000001
+329.73288943058486
  20
-140.69192846153842
+310.1312960000001
  30
 0.0
  11
-665.2500000000001
+330.7328894305849
  21
-140.69192846153842
+310.1312960000001
  31
 0.0
   0
@@ -12127,15 +12203,15 @@ LINE
   8
 cut
  10
-665.2500000000001
+330.7328894305849
  20
-188.76885153846155
+310.1312960000001
  30
 0.0
  11
-665.2500000000001
+330.7328894305849
  21
-169.0380823076923
+311.1312960000001
  31
 0.0
   0
@@ -12145,15 +12221,15 @@ LINE
   8
 cut
  10
-665.2500000000001
+330.7328894305849
  20
-169.0380823076923
+311.1312960000001
  30
 0.0
  11
-665.7500000000001
+329.73288943058486
  21
-169.0380823076923
+311.1312960000001
  31
 0.0
   0
@@ -12163,15 +12239,15 @@ LINE
   8
 cut
  10
-665.7500000000001
+349.7328894305849
  20
-169.0380823076923
+311.1312960000001
  30
 0.0
  11
-665.7500000000001
+349.7328894305849
  21
-188.76885153846155
+310.1312960000001
  31
 0.0
   0
@@ -12181,15 +12257,15 @@ LINE
   8
 cut
  10
-665.7500000000001
+349.7328894305849
  20
-188.76885153846155
+310.1312960000001
  30
 0.0
  11
-665.2500000000001
+350.7328894305849
  21
-188.76885153846155
+310.1312960000001
  31
 0.0
   0
@@ -12199,15 +12275,15 @@ LINE
   8
 cut
  10
-665.2500000000001
+350.7328894305849
  20
-236.84577461538464
+310.1312960000001
  30
 0.0
  11
-665.2500000000001
+350.7328894305849
  21
-217.11500538461536
+311.1312960000001
  31
 0.0
   0
@@ -12217,15 +12293,15 @@ LINE
   8
 cut
  10
-665.2500000000001
+350.7328894305849
  20
-217.11500538461536
+311.1312960000001
  30
 0.0
  11
-665.7500000000001
+349.7328894305849
  21
-217.1150053846154
+311.1312960000001
  31
 0.0
   0
@@ -12235,15 +12311,15 @@ LINE
   8
 cut
  10
-665.7500000000001
+329.73288943058486
  20
-217.1150053846154
+313.6312960000001
  30
 0.0
  11
-665.7500000000001
+329.73288943058486
  21
-236.84577461538464
+312.631296
  31
 0.0
   0
@@ -12253,15 +12329,15 @@ LINE
   8
 cut
  10
-665.7500000000001
+329.73288943058486
  20
-236.84577461538464
+312.631296
  30
 0.0
  11
-665.2500000000001
+330.7328894305849
  21
-236.84577461538464
+312.631296
  31
 0.0
   0
@@ -12271,15 +12347,15 @@ LINE
   8
 cut
  10
-665.2500000000001
+330.7328894305849
  20
-284.9226976923077
+312.631296
  30
 0.0
  11
-665.2500000000001
+330.7328894305849
  21
-265.19192846153845
+313.6312960000001
  31
 0.0
   0
@@ -12289,15 +12365,15 @@ LINE
   8
 cut
  10
-665.2500000000001
+330.7328894305849
  20
-265.19192846153845
+313.6312960000001
  30
 0.0
  11
-665.7500000000001
+329.73288943058486
  21
-265.19192846153845
+313.6312960000001
  31
 0.0
   0
@@ -12307,15 +12383,15 @@ LINE
   8
 cut
  10
-665.7500000000001
+349.7328894305849
  20
-265.19192846153845
+313.6312960000001
  30
 0.0
  11
-665.7500000000001
+349.7328894305849
  21
-284.9226976923077
+312.631296
  31
 0.0
   0
@@ -12325,15 +12401,15 @@ LINE
   8
 cut
  10
-665.7500000000001
+349.7328894305849
  20
-284.9226976923077
+312.631296
  30
 0.0
  11
-665.2500000000001
+350.7328894305849
  21
-284.9226976923077
+312.631296
  31
 0.0
   0
@@ -12343,15 +12419,15 @@ LINE
   8
 cut
  10
-665.2500000000001
+350.7328894305849
  20
-332.99962076923083
+312.631296
  30
 0.0
  11
-665.2500000000001
+350.7328894305849
  21
-313.26885153846155
+313.6312960000001
  31
 0.0
   0
@@ -12361,15 +12437,15 @@ LINE
   8
 cut
  10
-665.2500000000001
+350.7328894305849
  20
-313.26885153846155
+313.6312960000001
  30
 0.0
  11
-665.7500000000001
+349.7328894305849
  21
-313.26885153846155
+313.6312960000001
  31
 0.0
   0
@@ -12379,15 +12455,15 @@ LINE
   8
 cut
  10
-665.7500000000001
+329.73288943058486
  20
-313.26885153846155
+316.131296
  30
 0.0
  11
-665.7500000000001
+329.73288943058486
  21
-332.99962076923083
+315.1312960000001
  31
 0.0
   0
@@ -12397,15 +12473,15 @@ LINE
   8
 cut
  10
-665.7500000000001
+329.73288943058486
  20
-332.99962076923083
+315.1312960000001
  30
 0.0
  11
-665.2500000000001
+330.7328894305849
  21
-332.99962076923083
+315.1312960000001
  31
 0.0
   0
@@ -12415,15 +12491,15 @@ LINE
   8
 cut
  10
-668.8583346158109
+330.7328894305849
  20
-92.2819995628807
+315.1312960000001
  30
 0.0
  11
-667.8903038438383
+330.7328894305849
  21
-90.40140539540555
+316.131296
  31
 0.0
   0
@@ -12433,15 +12509,15 @@ LINE
   8
 cut
  10
-667.8903038438383
+330.7328894305849
  20
-90.40140539540555
+316.131296
  30
 0.0
  11
-668.3348642563766
+329.73288943058486
  21
-90.17256912292278
+316.131296
  31
 0.0
   0
@@ -12451,15 +12527,15 @@ LINE
   8
 cut
  10
-668.3348642563766
+349.7328894305849
  20
-90.17256912292278
+316.131296
  30
 0.0
  11
-669.3028950283492
+349.7328894305849
  21
-92.05316329039792
+315.1312960000001
  31
 0.0
   0
@@ -12469,15 +12545,15 @@ LINE
   8
 cut
  10
-669.3028950283492
+349.7328894305849
  20
-92.05316329039792
+315.1312960000001
  30
 0.0
  11
-668.8583346158109
+350.7328894305849
  21
-92.2819995628807
+315.1312960000001
  31
 0.0
   0
@@ -12487,15 +12563,15 @@ LINE
   8
 cut
  10
-674.2113374086251
+350.7328894305849
  20
-100.36527345516676
+315.1312960000001
  30
 0.0
  11
-673.4037791362085
+350.7328894305849
  21
-100.36527345516676
+316.131296
  31
 0.0
   0
@@ -12505,15 +12581,15 @@ LINE
   8
 cut
  10
-673.4037791362085
+350.7328894305849
  20
-100.36527345516676
+316.131296
  30
 0.0
  11
-673.4037791362085
+349.7328894305849
  21
-98.75015691033356
+316.131296
  31
 0.0
   0
@@ -12523,15 +12599,15 @@ LINE
   8
 cut
  10
-673.4037791362085
+329.73288943058486
  20
-98.75015691033356
+318.6312960000001
  30
 0.0
  11
-674.2113374086251
+329.73288943058486
  21
-98.75015691033356
+317.6312960000001
  31
 0.0
   0
@@ -12541,15 +12617,15 @@ LINE
   8
 cut
  10
-569.4821864038155
+329.73288943058486
  20
-356.67080812824605
+317.6312960000001
  30
 0.0
  11
-571.8273954679385
+330.7328894305849
  21
-356.67080812824605
+317.6312960000001
  31
 0.0
   0
@@ -12559,15 +12635,15 @@ LINE
   8
 cut
  10
-571.8273954679385
+330.7328894305849
  20
-356.67080812824605
+317.6312960000001
  30
 0.0
  11
-571.8273954679385
+330.7328894305849
  21
-361.3612262564921
+318.6312960000001
  31
 0.0
   0
@@ -12577,15 +12653,15 @@ LINE
   8
 cut
  10
-571.8273954679385
+330.7328894305849
  20
-361.3612262564921
+318.6312960000001
  30
 0.0
  11
-569.4821864038155
+329.73288943058486
  21
-361.3612262564921
+318.6312960000001
  31
 0.0
   0
@@ -12595,15 +12671,15 @@ LINE
   8
 cut
  10
-553.0000000000001
+349.7328894305849
  20
-259.48039
+318.6312960000001
  30
 0.0
  11
-553.0000000000001
+349.7328894305849
  21
-254.48039000000003
+317.6312960000001
  31
 0.0
   0
@@ -12613,15 +12689,15 @@ LINE
   8
 cut
  10
-553.0000000000001
+349.7328894305849
  20
-254.48039000000003
+317.6312960000001
  30
 0.0
  11
-563.0
+350.7328894305849
  21
-254.48039000000003
+317.6312960000001
  31
 0.0
   0
@@ -12631,15 +12707,15 @@ LINE
   8
 cut
  10
-563.0
+350.7328894305849
  20
-254.48039000000003
+317.6312960000001
  30
 0.0
  11
-563.0
+350.7328894305849
  21
-259.48039
+318.6312960000001
  31
 0.0
   0
@@ -12649,15 +12725,15 @@ LINE
   8
 cut
  10
-490.75000000000006
+350.7328894305849
  20
-261.73039
+318.6312960000001
  30
 0.0
  11
-490.75000000000006
+349.7328894305849
  21
-272.23039000000006
+318.6312960000001
  31
 0.0
   0
@@ -12667,15 +12743,15 @@ LINE
   8
 cut
  10
-490.75000000000006
+329.73288943058486
  20
-272.23039000000006
+321.131296
  30
 0.0
  11
-490.25000000000006
+329.73288943058486
  21
-272.23039000000006
+320.1312960000001
  31
 0.0
   0
@@ -12685,15 +12761,15 @@ LINE
   8
 cut
  10
-490.25000000000006
+329.73288943058486
  20
-272.23039000000006
+320.1312960000001
  30
 0.0
  11
-490.25000000000006
+330.7328894305849
  21
-261.73039
+320.1312960000001
  31
 0.0
   0
@@ -12703,15 +12779,15 @@ LINE
   8
 cut
  10
-490.25000000000006
+330.7328894305849
  20
-261.73039
+320.1312960000001
  30
 0.0
  11
-490.75000000000006
+330.7328894305849
  21
-261.73039
+321.131296
  31
 0.0
   0
@@ -12721,15 +12797,15 @@ LINE
   8
 cut
  10
-535.2500000000001
+330.7328894305849
  20
-272.23039000000006
+321.131296
  30
 0.0
  11
-535.2500000000001
+329.73288943058486
  21
-261.73039
+321.131296
  31
 0.0
   0
@@ -12739,15 +12815,15 @@ LINE
   8
 cut
  10
-535.2500000000001
+349.7328894305849
  20
-261.73039
+321.131296
  30
 0.0
  11
-535.7500000000001
+349.7328894305849
  21
-261.73039
+320.1312960000001
  31
 0.0
   0
@@ -12757,15 +12833,15 @@ LINE
   8
 cut
  10
-535.7500000000001
+349.7328894305849
  20
-261.73039
+320.1312960000001
  30
 0.0
  11
-535.7500000000001
+350.7328894305849
  21
-272.23039000000006
+320.1312960000001
  31
 0.0
   0
@@ -12775,15 +12851,15 @@ LINE
   8
 cut
  10
-535.7500000000001
+350.7328894305849
  20
-272.23039000000006
+320.1312960000001
  30
 0.0
  11
-535.2500000000001
+350.7328894305849
  21
-272.23039000000006
+321.131296
  31
 0.0
   0
@@ -12793,15 +12869,15 @@ LINE
   8
 cut
  10
-473.25
+350.7328894305849
  20
-209.73039
+321.131296
  30
 0.0
  11
-462.75000000000006
+349.7328894305849
  21
-209.73039
+321.131296
  31
 0.0
   0
@@ -12811,15 +12887,15 @@ LINE
   8
 cut
  10
-462.75000000000006
+329.73288943058486
  20
-209.73039
+323.6312960000001
  30
 0.0
  11
-462.75000000000006
+329.73288943058486
  21
-209.23038999999997
+322.6312960000001
  31
 0.0
   0
@@ -12829,15 +12905,15 @@ LINE
   8
 cut
  10
-462.75000000000006
+329.73288943058486
  20
-209.23038999999997
+322.6312960000001
  30
 0.0
  11
-473.25
+330.7328894305849
  21
-209.23038999999997
+322.6312960000001
  31
 0.0
   0
@@ -12847,15 +12923,15 @@ LINE
   8
 cut
  10
-473.25
+330.7328894305849
  20
-209.23038999999997
+322.6312960000001
  30
 0.0
  11
-473.25
+330.7328894305849
  21
-209.73039
+323.6312960000001
  31
 0.0
   0
@@ -12865,15 +12941,15 @@ LINE
   8
 cut
  10
-463.00000000000006
+330.7328894305849
  20
-259.48039
+323.6312960000001
  30
 0.0
  11
-463.00000000000006
+329.73288943058486
  21
-254.48039
+323.6312960000001
  31
 0.0
   0
@@ -12883,15 +12959,15 @@ LINE
   8
 cut
  10
-463.00000000000006
+349.7328894305849
  20
-254.48039
+323.6312960000001
  30
 0.0
  11
-473.00000000000006
+349.7328894305849
  21
-254.48039
+322.6312960000001
  31
 0.0
   0
@@ -12901,15 +12977,15 @@ LINE
   8
 cut
  10
-473.00000000000006
+349.7328894305849
  20
-254.48039
+322.6312960000001
  30
 0.0
  11
-473.00000000000006
+350.7328894305849
  21
-259.48039
+322.6312960000001
  31
 0.0
   0
@@ -12919,15 +12995,15 @@ LINE
   8
 cut
  10
-445.50000000000006
+350.7328894305849
  20
-121.21115923076921
+322.6312960000001
  30
 0.0
  11
-445.50000000000006
+350.7328894305849
  21
-116.21115923076921
+323.6312960000001
  31
 0.0
   0
@@ -12937,15 +13013,15 @@ LINE
   8
 cut
  10
-445.50000000000006
+350.7328894305849
  20
-116.21115923076921
+323.6312960000001
  30
 0.0
  11
-450.5
+349.7328894305849
  21
-121.21115923076921
+323.6312960000001
  31
 0.0
   0
@@ -12955,15 +13031,15 @@ LINE
   8
 cut
  10
-450.5
+329.73288943058486
  20
-121.21115923076921
+326.131296
  30
 0.0
  11
-450.5
+329.73288943058486
  21
-140.44192846153842
+325.131296
  31
 0.0
   0
@@ -12973,15 +13049,15 @@ LINE
   8
 cut
  10
-450.5
+329.73288943058486
  20
-140.44192846153842
+325.131296
  30
 0.0
  11
-445.50000000000006
+330.7328894305849
  21
-145.44192846153842
+325.131296
  31
 0.0
   0
@@ -12991,15 +13067,15 @@ LINE
   8
 cut
  10
-445.50000000000006
+330.7328894305849
  20
-145.44192846153842
+325.131296
  30
 0.0
  11
-445.50000000000006
+330.7328894305849
  21
-140.44192846153842
+326.131296
  31
 0.0
   0
@@ -13009,15 +13085,15 @@ LINE
   8
 cut
  10
-445.50000000000006
+330.7328894305849
  20
-169.2880823076923
+326.131296
  30
 0.0
  11
-445.50000000000006
+329.73288943058486
  21
-164.2880823076923
+326.131296
  31
 0.0
   0
@@ -13027,15 +13103,15 @@ LINE
   8
 cut
  10
-445.50000000000006
+349.7328894305849
  20
-164.2880823076923
+326.131296
  30
 0.0
  11
-450.5
+349.7328894305849
  21
-169.2880823076923
+325.131296
  31
 0.0
   0
@@ -13045,15 +13121,15 @@ LINE
   8
 cut
  10
-450.5
+349.7328894305849
  20
-169.2880823076923
+325.131296
  30
 0.0
  11
-450.5
+350.7328894305849
  21
-188.51885153846152
+325.131296
  31
 0.0
   0
@@ -13063,15 +13139,15 @@ LINE
   8
 cut
  10
-450.5
+350.7328894305849
  20
-188.51885153846152
+325.131296
  30
 0.0
  11
-445.50000000000006
+350.7328894305849
  21
-193.51885153846152
+326.131296
  31
 0.0
   0
@@ -13081,15 +13157,15 @@ LINE
   8
 cut
  10
-445.50000000000006
+350.7328894305849
  20
-193.51885153846152
+326.131296
  30
 0.0
  11
-445.50000000000006
+349.7328894305849
  21
-188.51885153846152
+326.131296
  31
 0.0
   0
@@ -13099,15 +13175,15 @@ LINE
   8
 cut
  10
-445.50000000000006
+329.73288943058486
  20
-217.36500538461536
+328.6312960000001
  30
 0.0
  11
-445.50000000000006
+329.73288943058486
  21
-212.36500538461536
+327.6312960000001
  31
 0.0
   0
@@ -13117,15 +13193,15 @@ LINE
   8
 cut
  10
-445.50000000000006
+329.73288943058486
  20
-212.36500538461536
+327.6312960000001
  30
 0.0
  11
-450.5
+330.7328894305849
  21
-217.36500538461536
+327.6312960000001
  31
 0.0
   0
@@ -13135,15 +13211,15 @@ LINE
   8
 cut
  10
-450.5
+330.7328894305849
  20
-217.36500538461536
+327.6312960000001
  30
 0.0
  11
-450.5
+330.7328894305849
  21
-236.5957746153846
+328.6312960000001
  31
 0.0
   0
@@ -13153,15 +13229,15 @@ LINE
   8
 cut
  10
-450.5
+330.7328894305849
  20
-236.5957746153846
+328.6312960000001
  30
 0.0
  11
-445.50000000000006
+329.73288943058486
  21
-241.5957746153846
+328.6312960000001
  31
 0.0
   0
@@ -13171,15 +13247,15 @@ LINE
   8
 cut
  10
-445.50000000000006
+348.73288943058486
  20
-241.5957746153846
+329.6312960000001
  30
 0.0
  11
-445.50000000000006
+348.73288943058486
  21
-236.5957746153846
+326.631296
  31
 0.0
   0
@@ -13189,15 +13265,15 @@ LINE
   8
 cut
  10
-445.50000000000006
+348.73288943058486
  20
-265.44192846153845
+326.631296
  30
 0.0
  11
-445.50000000000006
+351.7328894305849
  21
-260.44192846153845
+326.631296
  31
 0.0
   0
@@ -13207,15 +13283,15 @@ LINE
   8
 cut
  10
-445.50000000000006
+351.7328894305849
  20
-260.44192846153845
+326.631296
  30
 0.0
  11
-450.5
+351.7328894305849
  21
-265.44192846153845
+329.6312960000001
  31
 0.0
   0
@@ -13225,15 +13301,15 @@ LINE
   8
 cut
  10
-450.5
+351.7328894305849
  20
-265.44192846153845
+329.6312960000001
  30
 0.0
  11
-450.5
+348.73288943058486
  21
-284.6726976923077
+329.6312960000001
  31
 0.0
   0
@@ -13243,15 +13319,15 @@ LINE
   8
 cut
  10
-450.5
+344.4828894305849
  20
-284.6726976923077
+286.6312960000001
  30
 0.0
  11
-445.50000000000006
+335.9828894305849
  21
-289.6726976923077
+286.6312960000001
  31
 0.0
   0
@@ -13261,15 +13337,15 @@ LINE
   8
 cut
  10
-445.50000000000006
+335.9828894305849
  20
-289.6726976923077
+286.6312960000001
  30
 0.0
  11
-445.50000000000006
+335.9828894305849
  21
-284.6726976923077
+286.1312960000001
  31
 0.0
   0
@@ -13279,15 +13355,15 @@ LINE
   8
 cut
  10
-445.50000000000006
+335.9828894305849
  20
-313.51885153846155
+286.1312960000001
  30
 0.0
  11
-445.50000000000006
+344.4828894305849
  21
-308.51885153846155
+286.1312960000001
  31
 0.0
   0
@@ -13297,15 +13373,15 @@ LINE
   8
 cut
  10
-445.50000000000006
+344.4828894305849
  20
-308.51885153846155
+286.1312960000001
  30
 0.0
  11
-450.5
+344.4828894305849
  21
-313.51885153846155
+286.6312960000001
  31
 0.0
   0
@@ -13315,15 +13391,15 @@ LINE
   8
 cut
  10
-450.5
+335.9828894305849
  20
-313.51885153846155
+334.381296
  30
 0.0
  11
-450.5
+344.4828894305849
  21
-332.7496207692308
+334.381296
  31
 0.0
   0
@@ -13333,15 +13409,15 @@ LINE
   8
 cut
  10
-450.5
+344.4828894305849
  20
-332.7496207692308
+334.381296
  30
 0.0
  11
-445.50000000000006
+344.4828894305849
  21
-337.7496207692308
+334.881296
  31
 0.0
   0
@@ -13351,15 +13427,15 @@ LINE
   8
 cut
  10
-445.50000000000006
+344.4828894305849
  20
-337.7496207692308
+334.881296
  30
 0.0
  11
-445.50000000000006
+335.9828894305849
  21
-332.7496207692308
+334.881296
  31
 0.0
   0
@@ -13369,15 +13445,15 @@ LINE
   8
 cut
  10
-535.2500000000001
+335.9828894305849
  20
-192.23039000000003
+334.881296
  30
 0.0
  11
-535.2500000000001
+335.9828894305849
  21
-181.73039
+334.381296
  31
 0.0
   0
@@ -13387,15 +13463,15 @@ LINE
   8
 cut
  10
-535.2500000000001
+320.73288943058486
  20
-181.73039
+289.9722050909092
  30
 0.0
  11
-535.7500000000001
+325.73288943058486
  21
-181.73039
+289.9722050909092
  31
 0.0
   0
@@ -13405,15 +13481,15 @@ LINE
   8
 cut
  10
-535.7500000000001
+325.73288943058486
  20
-181.73039
+289.9722050909092
  30
 0.0
  11
-535.7500000000001
+325.73288943058486
  21
-192.23039000000003
+301.0631141818182
  31
 0.0
   0
@@ -13423,15 +13499,15 @@ LINE
   8
 cut
  10
-535.7500000000001
+325.73288943058486
  20
-192.23039000000003
+301.0631141818182
  30
 0.0
  11
-535.2500000000001
+320.73288943058486
  21
-192.23039000000003
+301.0631141818182
  31
 0.0
   0
@@ -13441,15 +13517,15 @@ LINE
   8
 cut
  10
-475.50000000000006
+320.73288943058486
  20
-181.98038999999997
+317.6994778181819
  30
 0.0
  11
-480.50000000000006
+325.73288943058486
  21
-181.98038999999997
+317.6994778181819
  31
 0.0
   0
@@ -13459,15 +13535,15 @@ LINE
   8
 cut
  10
-480.50000000000006
+325.73288943058486
  20
-181.98038999999997
+317.6994778181819
  30
 0.0
  11
-480.50000000000006
+325.73288943058486
  21
-191.98039
+328.790386909091
  31
 0.0
   0
@@ -13477,15 +13553,15 @@ LINE
   8
 cut
  10
-480.50000000000006
+325.73288943058486
  20
-191.98039
+328.790386909091
  30
 0.0
  11
-475.50000000000006
+320.73288943058486
  21
-191.98039
+328.790386909091
  31
 0.0
   0
@@ -13495,15 +13571,15 @@ LINE
   8
 cut
  10
-563.0
+345.9828894305849
  20
-194.48039000000003
+262.881296
  30
 0.0
  11
-563.0
+349.4828894305849
  21
-199.48039000000003
+262.881296
  31
 0.0
   0
@@ -13513,15 +13589,15 @@ LINE
   8
 cut
  10
-563.0
+349.4828894305849
  20
-199.48039000000003
+262.881296
  30
 0.0
  11
-553.0000000000001
+349.4828894305849
  21
-199.48039000000003
+270.8812960000001
  31
 0.0
   0
@@ -13531,15 +13607,15 @@ LINE
   8
 cut
  10
-553.0000000000001
+349.4828894305849
  20
-199.48039000000003
+270.8812960000001
  30
 0.0
  11
-553.0000000000001
+345.9828894305849
  21
-194.48039000000003
+270.8812960000001
  31
 0.0
   0
diff --git a/rocolib/output/HouseboatWithServoMountAndStack/graph-autofold-graph.dxf b/rocolib/output/HouseboatWithServoMountAndStack/graph-autofold-graph.dxf
index be4150938cd5b3d47dc40e6e9a33ff44fe9da446..3bebe44449b31c8d007e039347d476f5a0852923 100644
--- a/rocolib/output/HouseboatWithServoMountAndStack/graph-autofold-graph.dxf
+++ b/rocolib/output/HouseboatWithServoMountAndStack/graph-autofold-graph.dxf
@@ -938,20 +938,22 @@ MVIEW
 }
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
 0
  10
-70.00000000000001
+127.92433336086202
  20
-214.98039000000003
+117.88129600000003
  30
 0.0
  11
-34.0
+127.92433336086202
  21
-214.98039000000003
+415.8812960000001
  31
 0.0
   0
@@ -963,69 +965,75 @@ DOTTED
   8
 0
  10
-70.00000000000001
+37.924333360862015
  20
-214.98039000000003
+117.88129600000003
  30
 0.0
  11
-70.00000000000001
+37.924333360862015
  21
-238.98039000000003
+415.8812960000001
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
 0
  10
-34.0
+82.92433336086202
  20
-238.98039000000003
+117.88129600000003
  30
 0.0
  11
-70.00000000000001
+37.924333360862015
  21
-238.98039000000003
+117.88129600000003
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
 0
  10
-70.00000000000001
+127.92433336086202
  20
-238.98039000000003
+117.88129600000003
  30
 0.0
  11
-115.00000000000001
+82.92433336086202
  21
-238.98039000000003
+117.88129600000003
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
 0
  10
-115.00000000000001
+82.92433336086202
  20
-214.98039000000003
+-2.2633099661106828e-07
  30
 0.0
  11
-70.00000000000001
+37.924333360862015
  21
-214.98039000000003
+117.88129600000003
  31
 0.0
   0
@@ -1035,15 +1043,15 @@ LINE
   8
 0
  10
-120.00000000000001
+18.56479320700301
  20
-214.98039000000003
+93.12697584332294
  30
 0.0
  11
-115.00000000000001
+13.244563283932509
  21
-214.98039000000003
+100.82524285309951
  31
 0.0
   0
@@ -1053,51 +1061,73 @@ LINE
   8
 0
  10
-120.00000000000001
+82.92433336086201
  20
-238.98039000000003
+-2.2633093976764942e-07
  30
 0.0
  11
-120.00000000000001
+18.56479320700301
  21
-214.98039000000003
+93.12697584332294
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
 0
  10
-115.00000000000001
+37.92433336086201
  20
-238.98039000000003
+117.88129600000006
  30
 0.0
  11
-120.00000000000001
+13.244563283932509
  21
-238.98039000000003
+100.82524285309951
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
 0
  10
+37.924333360862015
+ 20
+117.88129600000003
+ 30
+0.0
+ 11
+7.924333360862009
+ 21
+108.52350986287608
+ 31
 0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+13.244563283932523
  20
-238.98039000000003
+100.82524285309951
  30
 0.0
  11
-34.0
+7.924333360862009
  21
-238.98039000000003
+108.52350986287608
  31
 0.0
   0
@@ -1109,33 +1139,35 @@ DOTTED
   8
 0
  10
-34.0
+7.924333360862009
  20
-214.98039000000003
+117.88129600000003
  30
 0.0
  11
-0.0
+7.924333360862009
  21
-214.98039000000003
+108.52350986287608
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
 0
  10
-0.0
+37.924333360862015
  20
-214.98039000000003
+117.88129600000003
  30
 0.0
  11
-0.0
+7.924333360862009
  21
-141.98039000000003
+117.88129600000003
  31
 0.0
   0
@@ -1145,15 +1177,15 @@ LINE
   8
 0
  10
-0.0
+4.8050713151540245
  20
-248.98039000000003
+117.88129600000003
  30
 0.0
  11
-0.0
+7.924333360862009
  21
-238.98039000000003
+117.88129600000003
  31
 0.0
   0
@@ -1163,15 +1195,15 @@ LINE
   8
 0
  10
-0.0
+4.8050713151540245
  20
-309.98039000000006
+108.52350986287608
  30
 0.0
  11
-0.0
+4.8050713151540245
  21
-309.98039000000006
+117.88129600000003
  31
 0.0
   0
@@ -1181,15 +1213,15 @@ LINE
   8
 0
  10
-0.0
+7.924333360862009
  20
-141.98039000000003
+108.52350986287608
  30
 0.0
  11
-0.0
+4.8050713151540245
  21
-309.98039000000006
+108.52350986287608
  31
 0.0
   0
@@ -1199,15 +1231,15 @@ LINE
   8
 0
  10
-0.0
+7.924333360861966
  20
-141.98039000000003
+415.88129600000013
  30
 0.0
  11
-0.0
+7.924333360862009
  21
-141.98039000000003
+117.88129600000003
  31
 0.0
   0
@@ -1219,33 +1251,55 @@ DOTTED
   8
 0
  10
-36.138621999185304
+7.924333360861966
  20
-248.98039000000003
+415.88129600000013
  30
 0.0
  11
-36.138621999185304
+37.924333360861965
  21
-309.98039000000006
+415.88129600000013
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
 0
  10
+7.924333360861966
+ 20
+439.65429608258603
+ 30
+0.0
+ 11
+37.924333360861965
+ 21
+415.88129600000013
+ 31
 0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+7.924333360861966
  20
-309.98039000000006
+439.65429608258603
  30
 0.0
  11
-36.138621999185304
+7.924333360861966
  21
-309.98039000000006
+415.88129600000013
  31
 0.0
   0
@@ -1255,15 +1309,15 @@ LINE
   8
 0
  10
-36.138621999185304
+7.924333360861952
  20
-248.98039000000003
+439.65429608258603
  30
 0.0
  11
-0.0
+31.068177965444168
  21
-248.98039000000003
+445.08734217530235
  31
 0.0
   0
@@ -1275,15 +1329,15 @@ DOTTED
   8
 0
  10
-60.13862199918531
+31.068177965444168
  20
-309.98039000000006
+445.08734217530235
  30
 0.0
  11
-60.13862199918531
+37.924333360861965
  21
-248.98039000000003
+415.88129600000013
  31
 0.0
   0
@@ -1295,15 +1349,15 @@ DOTTED
   8
 0
  10
-60.13862199918531
+82.92433336086197
  20
-309.98039000000006
+457.26063867240134
  30
 0.0
  11
-36.138621999185304
+37.924333360861965
  21
-309.98039000000006
+415.88129600000013
  31
 0.0
   0
@@ -1313,15 +1367,15 @@ LINE
   8
 0
  10
-96.27724399837062
+54.21202257002637
  20
-248.98039000000003
+450.5203882680186
  30
 0.0
  11
-60.13862199918531
+82.92433336086197
  21
-248.98039000000003
+457.26063867240134
  31
 0.0
   0
@@ -1331,69 +1385,75 @@ LINE
   8
 0
  10
-60.13862199918531
+31.068177965444168
  20
-309.98039000000006
+445.08734217530235
  30
 0.0
  11
-96.27724399837062
+54.21202257002637
  21
-309.98039000000006
+450.5203882680186
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
 0
  10
-106.27724399837062
+37.924333360861965
  20
-248.98039000000003
+415.88129600000013
  30
 0.0
  11
-96.27724399837062
+82.92433336086197
  21
-248.98039000000003
+415.88129600000013
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
 0
  10
-106.27724399837062
+82.92433336086197
  20
-309.98039000000006
+415.88129600000013
  30
 0.0
  11
-106.27724399837062
+127.92433336086198
  21
-248.98039000000003
+415.88129600000013
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
 0
  10
-96.27724399837062
+82.92433336086195
  20
-309.98039000000006
+457.2606386724013
  30
 0.0
  11
-106.27724399837062
+127.92433336086198
  21
-309.98039000000006
+415.88129600000013
  31
 0.0
   0
@@ -1403,15 +1463,15 @@ LINE
   8
 0
  10
-60.13862199918531
+111.63664415169755
  20
-319.98039
+450.5203882680186
  30
 0.0
  11
-60.13862199918531
+134.78048875627974
  21
-309.98039000000006
+445.08734217530235
  31
 0.0
   0
@@ -1421,51 +1481,55 @@ LINE
   8
 0
  10
-36.138621999185304
+82.92433336086197
  20
-319.98039
+457.2606386724013
  30
 0.0
  11
-60.13862199918531
+111.63664415169755
  21
-319.98039
+450.5203882680186
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
 0
  10
-36.138621999185304
+127.92433336086198
  20
-309.98039000000006
+415.88129600000013
  30
 0.0
  11
-36.138621999185304
+134.78048875627974
  21
-319.98039
+445.08734217530235
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
 0
  10
-36.138621999185304
+127.92433336086198
  20
-238.98039000000003
+415.88129600000013
  30
 0.0
  11
-36.138621999185304
+157.924333360862
  21
-248.98039000000003
+439.65429608258603
  31
 0.0
   0
@@ -1475,51 +1539,55 @@ LINE
   8
 0
  10
-60.13862199918531
+134.78048875627974
  20
-238.98039000000003
+445.08734217530235
  30
 0.0
  11
-36.138621999185304
+157.924333360862
  21
-238.98039000000003
+439.65429608258603
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
 0
  10
-60.13862199918531
+157.924333360862
  20
-248.98039000000003
+415.88129600000013
  30
 0.0
  11
-60.13862199918531
+157.924333360862
  21
-238.98039000000003
+439.65429608258603
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
 0
  10
-34.0
+127.92433336086197
  20
-214.98039000000003
+415.88129600000013
  30
 0.0
  11
-34.0
+157.924333360862
  21
-194.98039000000003
+415.88129600000013
  31
 0.0
   0
@@ -1529,35 +1597,33 @@ LINE
   8
 0
  10
-0.0
+165.84866672172393
  20
-194.98039000000003
+415.88129600000013
  30
 0.0
  11
-0.0
+157.924333360862
  21
-214.98039000000003
+415.88129600000013
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
 0
  10
-34.0
+165.84866672172393
  20
-194.98039000000003
+439.65429608258603
  30
 0.0
  11
-0.0
+165.84866672172393
  21
-194.98039000000003
+415.88129600000013
  31
 0.0
   0
@@ -1567,15 +1633,15 @@ LINE
   8
 0
  10
-34.0
+157.924333360862
  20
-194.98039000000003
+439.65429608258603
  30
 0.0
  11
-34.0
+165.84866672172393
  21
-170.98039000000003
+439.65429608258603
  31
 0.0
   0
@@ -1585,15 +1651,15 @@ LINE
   8
 0
  10
-0.0
+157.92433336086205
  20
-170.98039000000003
+117.88129600000009
  30
 0.0
  11
-0.0
+157.924333360862
  21
-194.98039000000003
+415.88129600000013
  31
 0.0
   0
@@ -1605,33 +1671,55 @@ DOTTED
   8
 0
  10
-34.0
+157.92433336086205
  20
-170.98039000000003
+117.88129600000009
  30
 0.0
  11
+127.92433336086204
+ 21
+117.88129600000009
+ 31
 0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+157.92433336086205
+ 20
+108.52350986287614
+ 30
+0.0
+ 11
+127.92433336086204
  21
-170.98039000000003
+117.88129600000009
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
 0
  10
-34.0
+157.92433336086205
  20
-170.98039000000003
+108.52350986287614
  30
 0.0
  11
-34.0
+157.92433336086205
  21
-150.98039000000003
+117.88129600000009
  31
 0.0
   0
@@ -1641,15 +1729,15 @@ LINE
   8
 0
  10
-0.0
+157.92433336086205
  20
-150.98039000000003
+108.52350986287614
  30
 0.0
  11
-0.0
+152.60410343779157
  21
-170.98039000000003
+100.82524285309957
  31
 0.0
   0
@@ -1661,33 +1749,35 @@ DOTTED
   8
 0
  10
-0.0
+152.60410343779157
  20
-150.98039000000003
+100.82524285309957
  30
 0.0
  11
-34.0
+127.92433336086204
  21
-150.98039000000003
+117.88129600000009
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
 0
  10
-0.0
+82.9243333608621
  20
-140.98039
+-2.2633093976764942e-07
  30
 0.0
  11
-0.0
+127.92433336086204
  21
-150.98039000000003
+117.88129600000009
  31
 0.0
   0
@@ -1697,15 +1787,15 @@ LINE
   8
 0
  10
-34.0
+147.28387351472105
  20
-140.98039
+93.126975843323
  30
 0.0
  11
-0.0
+82.9243333608621
  21
-140.98039
+-2.2633093976764942e-07
  31
 0.0
   0
@@ -1715,15 +1805,15 @@ LINE
   8
 0
  10
-34.0
+152.60410343779157
  20
-150.98039000000003
+100.82524285309957
  30
 0.0
  11
-34.0
+147.28387351472105
  21
-140.98039
+93.126975843323
  31
 0.0
   0
@@ -1733,15 +1823,15 @@ LINE
   8
 0
  10
-118.75000000000001
+161.04359540657003
  20
-230.98039000000003
+108.52350986287614
  30
 0.0
  11
-118.75000000000001
+157.92433336086205
  21
-233.48039000000003
+108.52350986287614
  31
 0.0
   0
@@ -1751,15 +1841,15 @@ LINE
   8
 0
  10
-118.75000000000001
+161.04359540657003
  20
-233.48039000000003
+117.88129600000009
  30
 0.0
  11
-116.25000000000001
+161.04359540657003
  21
-230.98039000000003
+108.52350986287614
  31
 0.0
   0
@@ -1769,15 +1859,15 @@ LINE
   8
 0
  10
-116.25000000000001
+157.92433336086205
  20
-230.98039000000003
+117.88129600000009
  30
 0.0
  11
-116.25000000000001
+161.04359540657003
  21
-222.98039000000003
+117.88129600000009
  31
 0.0
   0
@@ -1787,15 +1877,15 @@ LINE
   8
 0
  10
-116.25000000000001
+157.924333360862
  20
-222.98039000000003
+345.88129600000013
  30
 0.0
  11
-118.75000000000001
+157.924333360862
  21
-220.48039
+345.88129600000013
  31
 0.0
   0
@@ -1805,15 +1895,15 @@ LINE
   8
 0
  10
-118.75000000000001
+157.92433336086205
  20
-220.48039
+117.88129600000009
  30
 0.0
  11
-118.75000000000001
+157.92433336086205
  21
-222.98039000000003
+117.88129600000009
  31
 0.0
   0
@@ -1823,15 +1913,15 @@ LINE
   8
 0
  10
-11.08333333333333
+157.92433336086205
  20
-231.23039000000003
+178.8812960000001
  30
 0.0
  11
-22.916666666666668
+157.92433336086205
  21
-231.23039000000003
+117.88129600000009
  31
 0.0
   0
@@ -1841,15 +1931,15 @@ LINE
   8
 0
  10
-22.916666666666668
+157.92433336086205
  20
-231.23039000000003
+188.88129600000008
  30
 0.0
  11
-22.916666666666668
+157.92433336086205
  21
-231.73039000000003
+178.8812960000001
  31
 0.0
   0
@@ -1859,15 +1949,15 @@ LINE
   8
 0
  10
-22.916666666666668
+157.92433336086202
  20
-231.73039000000003
+285.88129600000013
  30
 0.0
  11
-11.08333333333333
+157.92433336086205
  21
-231.73039000000003
+212.8812960000001
  31
 0.0
   0
@@ -1877,15 +1967,15 @@ LINE
   8
 0
  10
-11.08333333333333
+157.92433336086202
  20
-231.73039000000003
+285.88129600000013
  30
 0.0
  11
-11.08333333333333
+157.92433336086202
  21
-231.23039000000003
+285.88129600000013
  31
 0.0
   0
@@ -1895,15 +1985,15 @@ LINE
   8
 0
  10
-54.63862199918531
+157.92433336086205
  20
-266.98039
+117.88129600000009
  30
 0.0
  11
-54.63862199918531
+157.92433336086205
  21
-277.98039000000006
+117.88129600000009
  31
 0.0
   0
@@ -1913,33 +2003,35 @@ LINE
   8
 0
  10
-54.63862199918531
+191.92433336086205
  20
-277.98039000000006
+188.88129600000008
  30
 0.0
  11
-41.63862199918531
+157.92433336086205
  21
-277.98039000000006
+188.88129600000008
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
 0
  10
-41.63862199918531
+157.92433336086205
  20
-277.98039000000006
+212.8812960000001
  30
 0.0
  11
-41.63862199918531
+191.92433336086205
  21
-266.98039
+212.8812960000001
  31
 0.0
   0
@@ -1949,33 +2041,35 @@ LINE
   8
 0
  10
-41.63862199918531
+227.92433336086205
  20
-266.98039
+188.8812960000001
  30
 0.0
  11
-54.63862199918531
+191.92433336086205
  21
-266.98039
+188.8812960000001
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
 0
  10
-53.13862199918531
+227.92433336086205
  20
-298.48039
+188.8812960000001
  30
 0.0
  11
-53.13862199918531
+227.92433336086205
  21
-304.48039000000006
+212.88129600000013
  31
 0.0
   0
@@ -1985,15 +2079,15 @@ LINE
   8
 0
  10
-53.13862199918531
+191.92433336086205
  20
-304.48039000000006
+212.88129600000013
  30
 0.0
  11
-43.13862199918531
+227.92433336086205
  21
-304.48039000000006
+212.88129600000013
  31
 0.0
   0
@@ -2003,15 +2097,15 @@ LINE
   8
 0
  10
-43.13862199918531
+227.92433336086205
  20
-304.48039000000006
+212.88129600000013
  30
 0.0
  11
-43.13862199918531
+272.924333360862
  21
-298.48039
+212.88129600000016
  31
 0.0
   0
@@ -2021,15 +2115,15 @@ LINE
   8
 0
  10
-43.13862199918531
+272.924333360862
  20
-298.48039
+188.88129600000013
  30
 0.0
  11
-53.13862199918531
+227.92433336086205
  21
-298.48039
+188.8812960000001
  31
 0.0
   0
@@ -2039,15 +2133,15 @@ LINE
   8
 0
  10
-103.77724399837062
+272.924333360862
  20
-298.88948090909093
+212.88129600000016
  30
 0.0
  11
-98.77724399837062
+272.924333360862
  21
-298.88948090909093
+188.88129600000013
  31
 0.0
   0
@@ -2057,15 +2151,15 @@ LINE
   8
 0
  10
-98.77724399837062
+157.92433336086205
  20
-298.88948090909093
+212.8812960000001
  30
 0.0
  11
-98.77724399837062
+157.92433336086205
  21
-287.79857181818187
+232.8812960000001
  31
 0.0
   0
@@ -2075,33 +2169,35 @@ LINE
   8
 0
  10
-98.77724399837062
+191.92433336086205
  20
-287.79857181818187
+232.8812960000001
  30
 0.0
  11
-103.77724399837062
+191.92433336086205
  21
-287.79857181818187
+212.8812960000001
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
 0
  10
-103.77724399837062
+157.92433336086205
  20
-271.16220818181824
+232.8812960000001
  30
 0.0
  11
-98.77724399837062
+191.92433336086205
  21
-271.16220818181824
+232.8812960000001
  31
 0.0
   0
@@ -2111,15 +2207,15 @@ LINE
   8
 0
  10
-98.77724399837062
+157.92433336086205
  20
-271.16220818181824
+232.8812960000001
  30
 0.0
  11
-98.77724399837062
+157.92433336086205
  21
-260.0712990909091
+256.88129600000013
  31
 0.0
   0
@@ -2129,33 +2225,35 @@ LINE
   8
 0
  10
-98.77724399837062
+191.92433336086205
  20
-260.0712990909091
+256.88129600000013
  30
 0.0
  11
-103.77724399837062
+191.92433336086205
  21
-260.0712990909091
+232.8812960000001
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
 0
  10
-44.138621999185304
+157.92433336086205
  20
-317.48039000000006
+256.88129600000013
  30
 0.0
  11
-44.138621999185304
+191.92433336086205
  21
-312.48039000000006
+256.88129600000013
  31
 0.0
   0
@@ -2165,15 +2263,15 @@ LINE
   8
 0
  10
-44.138621999185304
+157.92433336086205
  20
-312.48039000000006
+256.88129600000013
  30
 0.0
  11
-52.13862199918531
+157.92433336086205
  21
-312.48039000000006
+276.88129600000013
  31
 0.0
   0
@@ -2183,33 +2281,35 @@ LINE
   8
 0
  10
-52.13862199918531
+191.92433336086205
  20
-312.48039000000006
+276.88129600000013
  30
 0.0
  11
-52.13862199918531
+191.92433336086205
  21
-317.48039000000006
+256.88129600000013
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
 0
  10
-52.13862199918531
+191.92433336086205
  20
-241.48039000000003
+276.88129600000013
  30
 0.0
  11
-52.13862199918531
+157.92433336086205
  21
-246.48039000000003
+276.88129600000013
  31
 0.0
   0
@@ -2219,15 +2319,15 @@ LINE
   8
 0
  10
-52.13862199918531
+191.92433336086205
  20
-246.48039000000003
+286.88129600000013
  30
 0.0
  11
-44.138621999185304
+191.92433336086205
  21
-246.48039000000003
+276.88129600000013
  31
 0.0
   0
@@ -2237,15 +2337,15 @@ LINE
   8
 0
  10
-44.138621999185304
+157.92433336086205
  20
-246.48039000000003
+286.88129600000013
  30
 0.0
  11
-44.138621999185304
+191.92433336086205
  21
-241.48039000000003
+286.88129600000013
  31
 0.0
   0
@@ -2255,15 +2355,15 @@ LINE
   8
 0
  10
-23.000000000000004
+157.92433336086205
  20
-195.98039000000003
+276.88129600000013
  30
 0.0
  11
-23.000000000000004
+157.92433336086205
  21
-199.98039
+286.88129600000013
  31
 0.0
   0
@@ -2273,15 +2373,15 @@ LINE
   8
 0
  10
-23.000000000000004
+157.924333360862
  20
-199.98039
+345.88129600000013
  30
 0.0
  11
-11.000000000000002
+219.57861139572347
  21
-199.98039
+345.8812960000002
  31
 0.0
   0
@@ -2291,33 +2391,35 @@ LINE
   8
 0
  10
-11.000000000000002
+219.57861139572347
  20
-199.98039
+285.88129600000013
  30
 0.0
  11
-11.000000000000002
+157.92433336086202
  21
-195.98039000000003
+285.88129600000013
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
 0
  10
-11.000000000000002
+219.57861139572347
  20
-195.98039000000003
+285.88129600000013
  30
 0.0
  11
-23.000000000000004
+219.57861139572347
  21
-195.98039000000003
+345.8812960000002
  31
 0.0
   0
@@ -2327,51 +2429,55 @@ LINE
   8
 0
  10
-21.500000000000004
+246.5786113957235
  20
-207.98039000000003
+285.8812960000002
  30
 0.0
  11
-21.500000000000004
+219.57861139572347
  21
-211.98039000000003
+285.88129600000013
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
 0
  10
-21.500000000000004
+246.5786113957235
  20
-211.98039000000003
+345.8812960000002
  30
 0.0
  11
-12.5
+246.5786113957235
  21
-211.98039000000003
+285.8812960000002
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
 0
  10
-12.5
+219.57861139572347
  20
-211.98039000000003
+345.8812960000002
  30
 0.0
  11
-12.5
+246.5786113957235
  21
-207.98039000000003
+345.8812960000002
  31
 0.0
   0
@@ -2381,15 +2487,15 @@ LINE
   8
 0
  10
-12.5
+308.2328894305849
  20
-207.98039000000003
+285.8812960000002
  30
 0.0
  11
-21.500000000000004
+246.5786113957235
  21
-207.98039000000003
+285.8812960000002
  31
 0.0
   0
@@ -2399,15 +2505,15 @@ LINE
   8
 0
  10
-23.000000000000004
+308.2328894305849
  20
-171.48039000000003
+345.8812960000002
  30
 0.0
  11
-23.000000000000004
+308.2328894305849
  21
-194.48039000000003
+285.8812960000002
  31
 0.0
   0
@@ -2417,15 +2523,15 @@ LINE
   8
 0
  10
-23.000000000000004
+246.5786113957234
  20
-194.48039000000003
+345.8812960000002
  30
 0.0
  11
-11.000000000000002
+308.2328894305849
  21
-194.48039000000003
+345.8812960000002
  31
 0.0
   0
@@ -2435,15 +2541,15 @@ LINE
   8
 0
  10
-11.000000000000002
+219.57861139572339
  20
-194.48039000000003
+345.8812960000002
  30
 0.0
  11
-11.000000000000002
+219.57861139572339
  21
-171.48039000000003
+362.8812960000002
  31
 0.0
   0
@@ -2453,33 +2559,35 @@ LINE
   8
 0
  10
-11.000000000000002
+246.5786113957234
  20
-171.48039000000003
+362.8812960000002
  30
 0.0
  11
-23.000000000000004
+246.5786113957234
  21
-171.48039000000003
+345.8812960000002
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
 0
  10
-23.000000000000004
+219.57861139572339
  20
-165.98039
+362.8812960000002
  30
 0.0
  11
-23.000000000000004
+246.5786113957234
  21
-169.98039000000003
+362.8812960000002
  31
 0.0
   0
@@ -2489,15 +2597,15 @@ LINE
   8
 0
  10
-23.000000000000004
+219.57861139572339
  20
-169.98039000000003
+362.8812960000002
  30
 0.0
  11
-11.000000000000002
+219.57861139572339
  21
-169.98039000000003
+422.8812960000002
  31
 0.0
   0
@@ -2507,33 +2615,35 @@ LINE
   8
 0
  10
-11.000000000000002
+246.5786113957234
  20
-169.98039000000003
+422.8812960000002
  30
 0.0
  11
-11.000000000000002
+246.5786113957234
  21
-165.98039
+362.8812960000002
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
 0
  10
-11.000000000000002
+219.57861139572339
  20
-165.98039
+422.8812960000002
  30
 0.0
  11
-23.000000000000004
+246.5786113957234
  21
-165.98039
+422.8812960000002
  31
 0.0
   0
@@ -2543,15 +2653,15 @@ LINE
   8
 0
  10
-22.666666666666668
+219.57861139572339
  20
-143.48039
+422.8812960000002
  30
 0.0
  11
-22.666666666666668
+219.57861139572339
  21
-148.48039000000003
+439.8812960000002
  31
 0.0
   0
@@ -2561,33 +2671,35 @@ LINE
   8
 0
  10
-22.666666666666668
+246.5786113957234
  20
-148.48039000000003
+439.8812960000002
  30
 0.0
  11
-11.33333333333333
+246.5786113957234
  21
-148.48039000000003
+422.8812960000002
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
 0
  10
-11.33333333333333
+246.5786113957234
  20
-148.48039000000003
+439.8812960000002
  30
 0.0
  11
-11.33333333333333
+219.57861139572339
  21
-143.48039
+439.8812960000002
  31
 0.0
   0
@@ -2597,35 +2709,33 @@ LINE
   8
 0
  10
-200.0
+246.5786113957234
  20
-214.98039000000003
+449.8812960000002
  30
 0.0
  11
-164.0
+246.5786113957234
  21
-214.98039000000003
+439.8812960000002
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
 0
  10
-200.0
+219.57861139572339
  20
-214.98039000000003
+449.8812960000002
  30
 0.0
  11
-200.0
+246.5786113957234
  21
-238.98039000000003
+449.8812960000002
  31
 0.0
   0
@@ -2635,15 +2745,15 @@ LINE
   8
 0
  10
-164.0
+219.57861139572339
  20
-238.98039000000003
+439.8812960000002
  30
 0.0
  11
-200.0
+219.57861139572339
  21
-238.98039000000003
+449.8812960000002
  31
 0.0
   0
@@ -2653,15 +2763,15 @@ LINE
   8
 0
  10
-200.0
+157.92433336086205
  20
-238.98039000000003
+117.88129600000009
  30
 0.0
  11
-245.00000000000003
+157.92433336086205
  21
-238.98039000000003
+117.88129600000009
  31
 0.0
   0
@@ -2671,15 +2781,15 @@ LINE
   8
 0
  10
-245.00000000000003
+157.92433336086205
  20
-214.98039000000003
+231.8812960000001
  30
 0.0
  11
-200.0
+157.92433336086205
  21
-214.98039000000003
+117.88129600000009
  31
 0.0
   0
@@ -2689,15 +2799,15 @@ LINE
   8
 0
  10
-245.00000000000003
+157.924333360862
  20
-238.98039000000003
+415.88129600000013
  30
 0.0
  11
-245.00000000000003
+157.92433336086202
  21
-214.98039000000003
+301.88129600000013
  31
 0.0
   0
@@ -2707,15 +2817,15 @@ LINE
   8
 0
  10
-164.0
+157.924333360862
  20
-214.98039000000003
+415.88129600000013
  30
 0.0
  11
-130.0
+157.924333360862
  21
-214.98039000000003
+415.88129600000013
  31
 0.0
   0
@@ -2727,15 +2837,15 @@ DOTTED
   8
 0
  10
-130.0
+187.924333360862
  20
-238.98039000000003
+301.88129600000013
  30
 0.0
  11
-164.0
+157.924333360862
  21
-238.98039000000003
+301.88129600000013
  31
 0.0
   0
@@ -2745,33 +2855,35 @@ LINE
   8
 0
  10
-130.0
+187.92433336086205
  20
-204.98039000000003
+231.8812960000001
  30
 0.0
  11
-130.0
+157.92433336086205
  21
-143.98039000000003
+231.8812960000001
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
 0
  10
-130.0
+187.924333360862
  20
-214.98039000000003
+301.88129600000013
  30
 0.0
  11
-130.0
+187.92433336086205
  21
-204.98039000000003
+231.8812960000001
  31
 0.0
   0
@@ -2781,15 +2893,15 @@ LINE
   8
 0
  10
-130.0
+187.924333360862
  20
-311.98039
+311.8812960000001
  30
 0.0
  11
-130.0
+187.924333360862
  21
-238.98039000000003
+301.88129600000013
  31
 0.0
   0
@@ -2799,15 +2911,15 @@ LINE
   8
 0
  10
-130.0
+157.924333360862
  20
-311.98039
+311.8812960000001
  30
 0.0
  11
-130.0
+187.924333360862
  21
-311.98039
+311.8812960000001
  31
 0.0
   0
@@ -2817,89 +2929,93 @@ LINE
   8
 0
  10
-130.0
+157.924333360862
  20
-143.98039000000003
+301.88129600000013
  30
 0.0
  11
-130.0
+157.924333360862
  21
-311.98039
+311.8812960000001
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
 0
  10
-130.0
+277.924333360862
  20
-143.98039000000003
+301.88129600000013
  30
 0.0
  11
-130.0
+187.92433336086205
  21
-143.98039000000003
+301.88129600000013
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
 0
  10
-130.0
+187.92433336086205
  20
-238.98039000000003
+231.8812960000001
  30
 0.0
  11
-130.0
+277.924333360862
  21
-258.98039000000006
+231.88129600000016
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
 0
  10
-164.0
+277.924333360862
  20
-258.98039000000006
+231.88129600000016
  30
 0.0
  11
-164.0
+277.924333360862
  21
-238.98039000000003
+301.88129600000013
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
 0
  10
-130.0
+187.924333360862
  20
-258.98039000000006
+331.88129600000013
  30
 0.0
  11
-164.0
+277.92433336086197
  21
-258.98039000000006
+331.8812960000002
  31
 0.0
   0
@@ -2909,15 +3025,15 @@ LINE
   8
 0
  10
-130.0
+187.92433336086202
  20
-258.98039000000006
+301.88129600000013
  30
 0.0
  11
-130.0
+187.924333360862
  21
-282.98039000000006
+331.88129600000013
  31
 0.0
   0
@@ -2927,15 +3043,15 @@ LINE
   8
 0
  10
-164.0
+277.92433336086197
  20
-282.98039000000006
+331.8812960000002
  30
 0.0
  11
-164.0
+277.92433336086197
  21
-258.98039000000006
+301.88129600000013
  31
 0.0
   0
@@ -2947,15 +3063,15 @@ DOTTED
   8
 0
  10
-130.0
+187.92433336086205
  20
-282.98039000000006
+231.8812960000001
  30
 0.0
  11
-164.0
+187.92433336086205
  21
-282.98039000000006
+201.8812960000001
  31
 0.0
   0
@@ -2965,15 +3081,15 @@ LINE
   8
 0
  10
-130.0
+277.924333360862
  20
-282.98039000000006
+201.88129600000016
  30
 0.0
  11
-130.0
+187.92433336086205
  21
-302.98039
+201.8812960000001
  31
 0.0
   0
@@ -2983,35 +3099,33 @@ LINE
   8
 0
  10
-164.0
+277.924333360862
  20
-302.98039
+231.88129600000016
  30
 0.0
  11
-164.0
+277.924333360862
  21
-282.98039000000006
+201.88129600000016
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
 0
  10
-164.0
+177.92433336086205
  20
-302.98039
+231.8812960000001
  30
 0.0
  11
-130.0
+187.92433336086205
  21
-302.98039
+231.8812960000001
  31
 0.0
   0
@@ -3021,15 +3135,15 @@ LINE
   8
 0
  10
-164.0
+177.92433336086205
  20
-312.98039000000006
+201.8812960000001
  30
 0.0
  11
-164.0
+177.92433336086205
  21
-302.98039
+231.8812960000001
  31
 0.0
   0
@@ -3039,51 +3153,55 @@ LINE
   8
 0
  10
-130.0
+187.92433336086205
  20
-312.98039000000006
+201.8812960000001
  30
 0.0
  11
-164.0
+177.92433336086205
  21
-312.98039000000006
+201.8812960000001
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
 0
  10
-130.0
+307.9243333608621
  20
-302.98039
+301.88129600000013
  30
 0.0
  11
-130.0
+277.924333360862
  21
-312.98039000000006
+301.88129600000013
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
 0
  10
-241.00000000000003
+277.924333360862
  20
-231.23039000000003
+231.88129600000016
  30
 0.0
  11
-241.00000000000003
+307.9243333608621
  21
-222.73039
+231.88129600000016
  31
 0.0
   0
@@ -3093,15 +3211,15 @@ LINE
   8
 0
  10
-241.00000000000003
+307.924333360862
  20
-222.73039
+311.88129600000013
  30
 0.0
  11
-241.50000000000003
+307.924333360862
  21
-222.73039
+301.88129600000013
  31
 0.0
   0
@@ -3111,15 +3229,15 @@ LINE
   8
 0
  10
-241.50000000000003
+277.92433336086197
  20
-222.73039
+311.88129600000013
  30
 0.0
  11
-241.50000000000003
+307.924333360862
  21
-231.23039000000003
+311.88129600000013
  31
 0.0
   0
@@ -3129,15 +3247,15 @@ LINE
   8
 0
  10
-241.50000000000003
+277.92433336086197
  20
-231.23039000000003
+301.88129600000013
  30
 0.0
  11
-241.00000000000003
+277.92433336086197
  21
-231.23039000000003
+311.88129600000013
  31
 0.0
   0
@@ -3147,15 +3265,15 @@ LINE
   8
 0
  10
-152.91666666666669
+277.924333360862
  20
-222.73039
+221.88129600000016
  30
 0.0
  11
-141.08333333333334
+277.924333360862
  21
-222.73039
+231.88129600000016
  31
 0.0
   0
@@ -3165,15 +3283,15 @@ LINE
   8
 0
  10
-141.08333333333334
+307.9243333608621
  20
-222.73039
+221.88129600000016
  30
 0.0
  11
-141.08333333333334
+277.924333360862
  21
-222.23039000000003
+221.88129600000016
  31
 0.0
   0
@@ -3183,15 +3301,15 @@ LINE
   8
 0
  10
-141.08333333333334
+307.9243333608621
  20
-222.23039000000003
+231.88129600000016
  30
 0.0
  11
-152.91666666666669
+307.9243333608621
  21
-222.23039000000003
+221.88129600000016
  31
 0.0
   0
@@ -3201,15 +3319,15 @@ LINE
   8
 0
  10
-152.91666666666669
+307.924333360862
  20
-222.23039000000003
+415.8812960000002
  30
 0.0
  11
-152.91666666666669
+307.924333360862
  21
-222.73039
+415.8812960000002
  31
 0.0
   0
@@ -3219,15 +3337,15 @@ LINE
   8
 0
  10
-122.25000000000001
+307.924333360862
  20
-166.41220818181822
+301.88129600000013
  30
 0.0
  11
-122.25000000000001
+307.924333360862
  21
-154.82129909090912
+415.8812960000002
  31
 0.0
   0
@@ -3237,15 +3355,15 @@ LINE
   8
 0
  10
-122.25000000000001
+307.9243333608621
  20
-154.82129909090912
+117.88129600000015
  30
 0.0
  11
-122.75000000000001
+307.9243333608621
  21
-154.82129909090912
+231.88129600000016
  31
 0.0
   0
@@ -3255,15 +3373,15 @@ LINE
   8
 0
  10
-122.75000000000001
+307.9243333608621
  20
-154.82129909090912
+117.88129600000015
  30
 0.0
  11
-122.75000000000001
+307.9243333608621
  21
-166.41220818181822
+117.88129600000015
  31
 0.0
   0
@@ -3273,15 +3391,15 @@ LINE
   8
 0
  10
-122.75000000000001
+307.9243333608621
  20
-166.41220818181822
+187.88129600000016
  30
 0.0
  11
-122.25000000000001
+307.9243333608621
  21
-166.41220818181822
+187.88129600000016
  31
 0.0
   0
@@ -3291,15 +3409,15 @@ LINE
   8
 0
  10
-122.25000000000001
+307.924333360862
  20
-194.13948090909093
+415.8812960000002
  30
 0.0
  11
-122.25000000000001
+307.924333360862
  21
-182.54857181818184
+415.8812960000002
  31
 0.0
   0
@@ -3309,15 +3427,15 @@ LINE
   8
 0
  10
-122.25000000000001
+297.924333360862
  20
-182.54857181818184
+415.8812960000002
  30
 0.0
  11
-122.75000000000001
+307.924333360862
  21
-182.54857181818184
+415.8812960000002
  31
 0.0
   0
@@ -3327,15 +3445,15 @@ LINE
   8
 0
  10
-122.75000000000001
+297.924333360862
  20
-182.54857181818184
+355.8812960000002
  30
 0.0
  11
-122.75000000000001
+297.924333360862
  21
-194.13948090909093
+415.8812960000002
  31
 0.0
   0
@@ -3345,15 +3463,15 @@ LINE
   8
 0
  10
-122.75000000000001
+307.924333360862
  20
-194.13948090909093
+355.8812960000002
  30
 0.0
  11
-122.25000000000001
+297.924333360862
  21
-194.13948090909093
+355.8812960000002
  31
 0.0
   0
@@ -3363,15 +3481,15 @@ LINE
   8
 0
  10
-141.0
+307.9243333608621
  20
-257.98039000000006
+282.8812960000002
  30
 0.0
  11
-141.0
+307.924333360862
  21
-253.98039000000003
+355.8812960000002
  31
 0.0
   0
@@ -3381,15 +3499,15 @@ LINE
   8
 0
  10
-141.0
+307.9243333608621
  20
-253.98039000000003
+248.88129600000016
  30
 0.0
  11
-153.00000000000003
+307.9243333608621
  21
-253.98039000000003
+258.8812960000002
  31
 0.0
   0
@@ -3399,15 +3517,15 @@ LINE
   8
 0
  10
-153.00000000000003
+307.9243333608621
  20
-253.98039000000003
+187.88129600000016
  30
 0.0
  11
-153.00000000000003
+307.9243333608621
  21
-257.98039000000006
+187.88129600000016
  31
 0.0
   0
@@ -3417,15 +3535,15 @@ LINE
   8
 0
  10
-153.00000000000003
+307.924333360862
  20
-257.98039000000006
+355.8812960000002
  30
 0.0
  11
-141.0
+307.924333360862
  21
-257.98039000000006
+355.8812960000002
  31
 0.0
   0
@@ -3435,33 +3553,35 @@ LINE
   8
 0
  10
-142.50000000000003
+307.9243333608621
  20
-245.98039000000003
+258.8812960000002
  30
 0.0
  11
-142.50000000000003
+273.9243333608621
  21
-241.98039000000003
+258.8812960000002
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
 0
  10
-142.50000000000003
+273.9243333608621
  20
-241.98039000000003
+282.8812960000002
  30
 0.0
  11
-151.50000000000003
+307.9243333608621
  21
-241.98039000000003
+282.8812960000002
  31
 0.0
   0
@@ -3471,33 +3591,35 @@ LINE
   8
 0
  10
-151.50000000000003
+237.92433336086205
  20
-241.98039000000003
+282.8812960000002
  30
 0.0
  11
-151.50000000000003
+273.9243333608621
  21
-245.98039000000003
+282.8812960000002
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
 0
  10
-151.50000000000003
+237.92433336086205
  20
-245.98039000000003
+282.8812960000002
  30
 0.0
  11
-142.50000000000003
+237.92433336086205
  21
-245.98039000000003
+258.8812960000002
  31
 0.0
   0
@@ -3507,15 +3629,15 @@ LINE
   8
 0
  10
-141.0
+273.9243333608621
  20
-282.48039000000006
+258.8812960000002
  30
 0.0
  11
-141.0
+237.92433336086205
  21
-259.48039
+258.8812960000002
  31
 0.0
   0
@@ -3525,15 +3647,15 @@ LINE
   8
 0
  10
-141.0
+237.92433336086205
  20
-259.48039
+258.8812960000002
  30
 0.0
  11
-153.00000000000003
+192.92433336086202
  21
-259.48039
+258.88129600000013
  31
 0.0
   0
@@ -3543,15 +3665,15 @@ LINE
   8
 0
  10
-153.00000000000003
+192.92433336086202
  20
-259.48039
+282.88129600000013
  30
 0.0
  11
-153.00000000000003
+237.92433336086205
  21
-282.48039000000006
+282.8812960000002
  31
 0.0
   0
@@ -3561,15 +3683,15 @@ LINE
   8
 0
  10
-153.00000000000003
+187.92433336086205
  20
-282.48039000000006
+282.88129600000013
  30
 0.0
  11
-141.0
+192.92433336086202
  21
-282.48039000000006
+282.88129600000013
  31
 0.0
   0
@@ -3579,15 +3701,15 @@ LINE
   8
 0
  10
-141.0
+187.92433336086205
  20
-287.98039
+258.88129600000013
  30
 0.0
  11
-141.0
+187.92433336086205
  21
-283.98039
+282.88129600000013
  31
 0.0
   0
@@ -3597,15 +3719,15 @@ LINE
   8
 0
  10
-141.0
+192.92433336086202
  20
-283.98039
+258.88129600000013
  30
 0.0
  11
-153.00000000000003
+187.92433336086205
  21
-283.98039
+258.88129600000013
  31
 0.0
   0
@@ -3615,15 +3737,15 @@ LINE
   8
 0
  10
-153.00000000000003
+273.9243333608621
  20
-283.98039
+282.8812960000002
  30
 0.0
  11
-153.00000000000003
+273.9243333608621
  21
-287.98039
+302.88129600000013
  31
 0.0
   0
@@ -3633,33 +3755,35 @@ LINE
   8
 0
  10
-153.00000000000003
+307.9243333608621
  20
-287.98039
+302.88129600000013
  30
 0.0
  11
-141.0
+307.9243333608621
  21
-287.98039
+282.8812960000002
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
 0
  10
-141.33333333333334
+273.9243333608621
  20
-310.48039000000006
+302.88129600000013
  30
 0.0
  11
-141.33333333333334
+307.9243333608621
  21
-305.48039000000006
+302.88129600000013
  31
 0.0
   0
@@ -3669,15 +3793,15 @@ LINE
   8
 0
  10
-141.33333333333334
+273.9243333608621
  20
-305.48039000000006
+302.88129600000013
  30
 0.0
  11
-152.66666666666666
+273.9243333608621
  21
-305.48039000000006
+326.8812960000002
  31
 0.0
   0
@@ -3687,15 +3811,15 @@ LINE
   8
 0
  10
-152.66666666666666
+307.9243333608621
  20
-305.48039000000006
+326.8812960000002
  30
 0.0
  11
-152.66666666666666
+307.9243333608621
  21
-310.48039000000006
+302.88129600000013
  31
 0.0
   0
@@ -3707,55 +3831,51 @@ DOTTED
   8
 0
  10
-288.00000000000006
+273.9243333608621
  20
-214.98039000000003
+326.8812960000002
  30
 0.0
  11
-349.00000000000006
+307.9243333608621
  21
-214.98039000000003
+326.8812960000002
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
 0
  10
-349.00000000000006
+273.9243333608621
  20
-214.98039000000003
+326.8812960000002
  30
 0.0
  11
-349.00000000000006
+273.9243333608621
  21
-238.98039000000003
+346.8812960000002
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
 0
  10
-349.00000000000006
+307.9243333608621
  20
-238.98039000000003
+346.8812960000002
  30
 0.0
  11
-288.00000000000006
+307.9243333608621
  21
-238.98039000000003
+326.8812960000002
  31
 0.0
   0
@@ -3767,15 +3887,15 @@ DOTTED
   8
 0
  10
-288.00000000000006
+307.9243333608621
  20
-238.98039000000003
+346.8812960000002
  30
 0.0
  11
-288.00000000000006
+273.9243333608621
  21
-214.98039000000003
+346.8812960000002
  31
 0.0
   0
@@ -3785,15 +3905,15 @@ LINE
   8
 0
  10
-288.00000000000006
+307.9243333608621
  20
-207.98039000000003
+356.88129600000013
  30
 0.0
  11
-288.00000000000006
+307.9243333608621
  21
-214.98039000000003
+346.8812960000002
  31
 0.0
   0
@@ -3803,15 +3923,15 @@ LINE
   8
 0
  10
-348.00000000000006
+273.9243333608621
  20
-207.98039000000003
+356.88129600000013
  30
 0.0
  11
-288.00000000000006
+307.9243333608621
  21
-207.98039000000003
+356.88129600000013
  31
 0.0
   0
@@ -3821,33 +3941,35 @@ LINE
   8
 0
  10
-348.00000000000006
+273.9243333608621
  20
-214.98039000000003
+346.8812960000002
  30
 0.0
  11
-348.00000000000006
+273.9243333608621
  21
-207.98039000000003
+356.88129600000013
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
 0
  10
-356.00000000000006
+271.78571136167676
  20
-214.98039000000003
+248.88129600000016
  30
 0.0
  11
-349.00000000000006
+271.7857113616768
  21
-214.98039000000003
+187.88129600000016
  31
 0.0
   0
@@ -3857,15 +3979,15 @@ LINE
   8
 0
  10
-356.00000000000006
+307.9243333608621
  20
-238.98039000000003
+187.88129600000016
  30
 0.0
  11
-356.00000000000006
+271.7857113616768
  21
-214.98039000000003
+187.88129600000016
  31
 0.0
   0
@@ -3875,15 +3997,15 @@ LINE
   8
 0
  10
-349.00000000000006
+271.78571136167676
  20
-238.98039000000003
+248.88129600000016
  30
 0.0
  11
-356.00000000000006
+307.9243333608621
  21
-238.98039000000003
+248.88129600000016
  31
 0.0
   0
@@ -3895,53 +4017,53 @@ DOTTED
   8
 0
  10
-349.00000000000006
+247.78571136167673
  20
-238.98039000000003
+187.88129600000016
  30
 0.0
  11
-349.00000000000006
+247.78571136167673
  21
-299.98039000000006
+248.88129600000013
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
 0
  10
-289.00000000000006
+247.78571136167673
  20
-299.98039000000006
+187.88129600000016
  30
 0.0
  11
-349.00000000000006
+271.78571136167676
  21
-299.98039000000006
+187.88129600000016
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
 0
  10
-289.00000000000006
+211.64708936249147
  20
-238.98039000000003
+248.88129600000013
  30
 0.0
  11
-289.00000000000006
+247.78571136167673
  21
-299.98039000000006
+248.88129600000013
  31
 0.0
   0
@@ -3951,35 +4073,33 @@ LINE
   8
 0
  10
-373.0
+247.7857113616768
  20
-238.98039000000003
+187.88129600000013
  30
 0.0
  11
-349.00000000000006
+211.64708936249147
  21
-238.98039000000003
+187.88129600000013
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
 0
  10
-373.0
+201.64708936249147
  20
-238.98039000000003
+248.8812960000001
  30
 0.0
  11
-373.0
+211.64708936249147
  21
-299.98039000000006
+248.8812960000001
  31
 0.0
   0
@@ -3989,15 +4109,15 @@ LINE
   8
 0
  10
-349.00000000000006
+201.64708936249147
  20
-299.98039000000006
+187.8812960000001
  30
 0.0
  11
-373.0
+201.64708936249147
  21
-299.98039000000006
+248.8812960000001
  31
 0.0
   0
@@ -4007,15 +4127,15 @@ LINE
   8
 0
  10
-433.00000000000006
+211.64708936249147
  20
-238.98039000000003
+187.8812960000001
  30
 0.0
  11
-373.0
+201.64708936249147
  21
-238.98039000000003
+187.8812960000001
  31
 0.0
   0
@@ -4025,15 +4145,15 @@ LINE
   8
 0
  10
-433.00000000000006
+247.7857113616768
  20
-299.98039000000006
+177.8812960000001
  30
 0.0
  11
-433.00000000000006
+247.7857113616768
  21
-238.98039000000003
+187.88129600000013
  31
 0.0
   0
@@ -4043,15 +4163,15 @@ LINE
   8
 0
  10
-373.0
+271.7857113616768
  20
-299.98039000000006
+177.88129600000016
  30
 0.0
  11
-433.00000000000006
+247.7857113616768
  21
-299.98039000000006
+177.8812960000001
  31
 0.0
   0
@@ -4061,15 +4181,15 @@ LINE
   8
 0
  10
-289.00000000000006
+271.7857113616768
  20
-238.98039000000003
+187.88129600000016
  30
 0.0
  11
-265.00000000000006
+271.7857113616768
  21
-238.98039000000003
+177.88129600000016
  31
 0.0
   0
@@ -4079,35 +4199,33 @@ LINE
   8
 0
  10
-265.00000000000006
+271.78571136167676
  20
-299.98039000000006
+258.8812960000002
  30
 0.0
  11
-289.00000000000006
+271.78571136167676
  21
-299.98039000000006
+248.88129600000016
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
 0
  10
-265.00000000000006
+247.78571136167673
  20
-299.98039000000006
+258.8812960000002
  30
 0.0
  11
-265.00000000000006
+271.78571136167676
  21
-238.98039000000003
+258.8812960000002
  31
 0.0
   0
@@ -4117,15 +4235,15 @@ LINE
   8
 0
  10
-255.00000000000003
+247.78571136167673
  20
-299.98039000000006
+248.88129600000013
  30
 0.0
  11
-265.00000000000006
+247.78571136167673
  21
-299.98039000000006
+258.8812960000002
  31
 0.0
   0
@@ -4135,15 +4253,15 @@ LINE
   8
 0
  10
-255.00000000000003
+0.0
  20
-238.98039000000003
+439.65429608258603
  30
 0.0
  11
-255.00000000000003
+7.924333360861966
  21
-299.98039000000006
+439.65429608258603
  31
 0.0
   0
@@ -4153,15 +4271,15 @@ LINE
   8
 0
  10
-265.00000000000006
+0.0
  20
-238.98039000000003
+415.88129600000013
  30
 0.0
  11
-255.00000000000003
+0.0
  21
-238.98039000000003
+439.65429608258603
  31
 0.0
   0
@@ -4171,15 +4289,15 @@ LINE
   8
 0
  10
-281.00000000000006
+7.924333360861966
  20
-238.98039000000003
+415.88129600000013
  30
 0.0
  11
-288.00000000000006
+0.0
  21
-238.98039000000003
+415.88129600000013
  31
 0.0
   0
@@ -4189,15 +4307,15 @@ LINE
   8
 0
  10
-281.00000000000006
+19.063748511955573
  20
-214.98039000000003
+96.95959135293252
  30
 0.0
  11
-281.00000000000006
+17.006070985150405
  21
-238.98039000000003
+99.93700985747354
  31
 0.0
   0
@@ -4207,15 +4325,15 @@ LINE
   8
 0
  10
-288.00000000000006
+17.006070985150405
  20
-214.98039000000003
+99.93700985747354
  30
 0.0
  11
-281.00000000000006
+16.594741483868248
  21
-214.98039000000003
+99.6527423050252
  31
 0.0
   0
@@ -4225,15 +4343,15 @@ LINE
   8
 0
  10
-337.0909090909092
+16.594741483868248
  20
-209.73039000000003
+99.6527423050252
  30
 0.0
  11
-340.59090909090907
+18.652419010673427
  21
-209.73039000000003
+96.67532380048418
  31
 0.0
   0
@@ -4243,15 +4361,15 @@ LINE
   8
 0
  10
-340.59090909090907
+18.652419010673427
  20
-209.73039000000003
+96.67532380048418
  30
 0.0
  11
-337.0909090909092
+19.063748511955573
  21
-213.23039000000003
+96.95959135293252
  31
 0.0
   0
@@ -4261,15 +4379,15 @@ LINE
   8
 0
  10
-337.0909090909092
+5.584886826581027
  20
-213.23039000000003
+111.64277190858407
  30
 0.0
  11
-326.18181818181824
+7.14451784943502
  21
-213.23039000000003
+111.64277190858407
  31
 0.0
   0
@@ -4279,15 +4397,15 @@ LINE
   8
 0
  10
-326.18181818181824
+7.14451784943502
  20
-213.23039000000003
+111.64277190858407
  30
 0.0
  11
-322.68181818181824
+7.14451784943502
  21
-209.73039000000003
+114.76203395429205
  31
 0.0
   0
@@ -4297,15 +4415,15 @@ LINE
   8
 0
  10
-322.68181818181824
+7.14451784943502
  20
-209.73039000000003
+114.76203395429205
  30
 0.0
  11
-326.18181818181824
+5.584886826581027
  21
-209.73039000000003
+114.76203395429205
  31
 0.0
   0
@@ -4315,15 +4433,15 @@ LINE
   8
 0
  10
-309.81818181818187
+39.954805266984934
  20
-209.73039000000003
+440.8118780419729
  30
 0.0
  11
-313.31818181818187
+48.156187571434046
  21
-209.73039000000003
+442.73716266280195
  31
 0.0
   0
@@ -4333,15 +4451,15 @@ LINE
   8
 0
  10
-313.31818181818187
+48.156187571434046
  20
-209.73039000000003
+442.73716266280195
  30
 0.0
  11
-309.81818181818187
+48.04191831484375
  21
-213.23039000000003
+443.223930099057
  31
 0.0
   0
@@ -4351,15 +4469,15 @@ LINE
   8
 0
  10
-309.81818181818187
+48.04191831484375
  20
-213.23039000000003
+443.223930099057
  30
 0.0
  11
-298.909090909091
+39.84053601039464
  21
-213.23039000000003
+441.29864547822785
  31
 0.0
   0
@@ -4369,15 +4487,15 @@ LINE
   8
 0
  10
-298.909090909091
+39.84053601039464
  20
-213.23039000000003
+441.29864547822785
  30
 0.0
  11
-295.409090909091
+39.954805266984934
  21
-209.73039000000003
+440.8118780419729
  31
 0.0
   0
@@ -4387,15 +4505,15 @@ LINE
   8
 0
  10
-295.409090909091
+117.69247915028988
  20
-209.73039000000003
+442.73716266280195
  30
 0.0
  11
-298.909090909091
+125.893861454739
  21
-209.73039000000003
+440.8118780419729
  31
 0.0
   0
@@ -4405,15 +4523,15 @@ LINE
   8
 0
  10
-354.25000000000006
+125.893861454739
  20
-230.98039000000003
+440.8118780419729
  30
 0.0
  11
-350.75
+126.00813071132929
  21
-230.98039000000003
+441.29864547822785
  31
 0.0
   0
@@ -4423,15 +4541,15 @@ LINE
   8
 0
  10
-350.75
+126.00813071132929
  20
-230.98039000000003
+441.29864547822785
  30
 0.0
  11
-350.75
+117.80674840688017
  21
-222.98039000000003
+443.223930099057
  31
 0.0
   0
@@ -4441,15 +4559,15 @@ LINE
   8
 0
  10
-350.75
+117.80674840688017
  20
-222.98039000000003
+443.223930099057
  30
 0.0
  11
-354.25000000000006
+117.69247915028988
  21
-222.98039000000003
+442.73716266280195
  31
 0.0
   0
@@ -4459,15 +4577,15 @@ LINE
   8
 0
  10
-296.5
+163.86758338150847
  20
-290.48039000000006
+431.72996272172406
  30
 0.0
  11
-296.5
+159.90541670107746
  21
-272.48039000000006
+431.72996272172406
  31
 0.0
   0
@@ -4477,15 +4595,15 @@ LINE
   8
 0
  10
-296.5
+159.90541670107746
  20
-272.48039000000006
+431.72996272172406
  30
 0.0
  11
-331.5
+159.90541670107746
  21
-272.48039000000006
+423.8056293608621
  31
 0.0
   0
@@ -4495,15 +4613,15 @@ LINE
   8
 0
  10
-331.5
+159.90541670107746
  20
-272.48039000000006
+423.8056293608621
  30
 0.0
  11
-331.5
+163.86758338150847
  21
-290.48039000000006
+423.8056293608621
  31
 0.0
   0
@@ -4513,15 +4631,15 @@ LINE
   8
 0
  10
-331.5
+148.84259573657366
  20
-290.48039000000006
+99.9370098574736
  30
 0.0
  11
-296.5
+146.78491820976848
  21
-290.48039000000006
+96.95959135293258
  31
 0.0
   0
@@ -4531,15 +4649,15 @@ LINE
   8
 0
  10
-349.50000000000006
+146.78491820976848
  20
-252.23039000000003
+96.95959135293258
  30
 0.0
  11
-349.50000000000006
+147.19624771105066
  21
-249.23039000000003
+96.67532380048424
  31
 0.0
   0
@@ -4549,15 +4667,15 @@ LINE
   8
 0
  10
-349.50000000000006
+147.19624771105066
  20
-249.23039000000003
+96.67532380048424
  30
 0.0
  11
-352.50000000000006
+149.25392523785584
  21
-249.23039000000003
+99.65274230502526
  31
 0.0
   0
@@ -4567,15 +4685,15 @@ LINE
   8
 0
  10
-352.50000000000006
+149.25392523785584
  20
-249.23039000000003
+99.65274230502526
  30
 0.0
  11
-352.50000000000006
+148.84259573657366
  21
-252.23039000000003
+99.9370098574736
  31
 0.0
   0
@@ -4585,15 +4703,15 @@ LINE
   8
 0
  10
-352.50000000000006
+160.26377989514305
  20
-252.23039000000003
+114.76203395429211
  30
 0.0
  11
-349.50000000000006
+158.70414887228904
  21
-252.23039000000003
+114.76203395429211
  31
 0.0
   0
@@ -4603,15 +4721,15 @@ LINE
   8
 0
  10
-370.50000000000006
+158.70414887228904
  20
-251.23039000000003
+114.76203395429211
  30
 0.0
  11
-370.50000000000006
+158.70414887228904
  21
-250.23039000000003
+111.64277190858412
  31
 0.0
   0
@@ -4621,15 +4739,15 @@ LINE
   8
 0
  10
-370.50000000000006
+158.70414887228904
  20
-250.23039000000003
+111.64277190858412
  30
 0.0
  11
-371.50000000000006
+160.26377989514305
  21
-250.23039000000003
+111.64277190858412
  31
 0.0
   0
@@ -4639,15 +4757,15 @@ LINE
   8
 0
  10
-371.50000000000006
+150.17433336086205
  20
-250.23039000000003
+140.3131141818183
  30
 0.0
  11
-371.50000000000006
+150.17433336086205
  21
-251.23039000000003
+128.7222050909092
  31
 0.0
   0
@@ -4657,15 +4775,15 @@ LINE
   8
 0
  10
-371.50000000000006
+150.17433336086205
  20
-251.23039000000003
+128.7222050909092
  30
 0.0
  11
-370.50000000000006
+150.67433336086205
  21
-251.23039000000003
+128.7222050909092
  31
 0.0
   0
@@ -4675,15 +4793,15 @@ LINE
   8
 0
  10
-350.5
+150.67433336086205
  20
-253.73039000000003
+128.7222050909092
  30
 0.0
  11
-350.5
+150.67433336086205
  21
-252.73039000000003
+140.3131141818183
  31
 0.0
   0
@@ -4693,15 +4811,15 @@ LINE
   8
 0
  10
-350.5
+150.67433336086205
  20
-252.73039000000003
+140.3131141818183
  30
 0.0
  11
-351.50000000000006
+150.17433336086205
  21
-252.73039000000003
+140.3131141818183
  31
 0.0
   0
@@ -4711,15 +4829,15 @@ LINE
   8
 0
  10
-351.50000000000006
+150.17433336086205
  20
-252.73039000000003
+168.040386909091
  30
 0.0
  11
-351.50000000000006
+150.17433336086205
  21
-253.73039000000003
+156.44947781818192
  31
 0.0
   0
@@ -4729,15 +4847,15 @@ LINE
   8
 0
  10
-351.50000000000006
+150.17433336086205
  20
-253.73039000000003
+156.44947781818192
  30
 0.0
  11
-350.5
+150.67433336086205
  21
-253.73039000000003
+156.44947781818192
  31
 0.0
   0
@@ -4747,15 +4865,15 @@ LINE
   8
 0
  10
-370.50000000000006
+150.67433336086205
  20
-253.73039000000003
+156.44947781818192
  30
 0.0
  11
-370.50000000000006
+150.67433336086205
  21
-252.73039000000003
+168.040386909091
  31
 0.0
   0
@@ -4765,15 +4883,15 @@ LINE
   8
 0
  10
-370.50000000000006
+150.67433336086205
  20
-252.73039000000003
+168.040386909091
  30
 0.0
  11
-371.50000000000006
+150.17433336086205
  21
-252.73039000000003
+168.040386909091
  31
 0.0
   0
@@ -4783,15 +4901,15 @@ LINE
   8
 0
  10
-371.50000000000006
+180.84100002752874
  20
-252.73039000000003
+196.6312960000001
  30
 0.0
  11
-371.50000000000006
+169.0076666941954
  21
-253.73039000000003
+196.6312960000001
  31
 0.0
   0
@@ -4801,15 +4919,15 @@ LINE
   8
 0
  10
-371.50000000000006
+169.0076666941954
  20
-253.73039000000003
+196.6312960000001
  30
 0.0
  11
-370.50000000000006
+169.0076666941954
  21
-253.73039000000003
+196.13129600000008
  31
 0.0
   0
@@ -4819,15 +4937,15 @@ LINE
   8
 0
  10
-350.5
+169.0076666941954
  20
-256.23039000000006
+196.13129600000008
  30
 0.0
  11
-350.5
+180.84100002752874
  21
-255.23039000000003
+196.13129600000008
  31
 0.0
   0
@@ -4837,15 +4955,15 @@ LINE
   8
 0
  10
-350.5
+180.84100002752874
  20
-255.23039000000003
+196.13129600000008
  30
 0.0
  11
-351.50000000000006
+180.84100002752874
  21
-255.23039000000003
+196.6312960000001
  31
 0.0
   0
@@ -4855,15 +4973,15 @@ LINE
   8
 0
  10
-351.50000000000006
+268.924333360862
  20
-255.23039000000003
+205.13129600000016
  30
 0.0
  11
-351.50000000000006
+268.924333360862
  21
-256.23039000000006
+196.63129600000016
  31
 0.0
   0
@@ -4873,15 +4991,15 @@ LINE
   8
 0
  10
-351.50000000000006
+268.924333360862
  20
-256.23039000000006
+196.63129600000016
  30
 0.0
  11
-350.5
+269.4243333608621
  21
-256.23039000000006
+196.63129600000016
  31
 0.0
   0
@@ -4891,15 +5009,15 @@ LINE
   8
 0
  10
-370.50000000000006
+269.4243333608621
  20
-256.23039000000006
+196.63129600000016
  30
 0.0
  11
-370.50000000000006
+269.4243333608621
  21
-255.23039000000003
+205.13129600000016
  31
 0.0
   0
@@ -4909,15 +5027,15 @@ LINE
   8
 0
  10
-370.50000000000006
+269.4243333608621
  20
-255.23039000000003
+205.13129600000016
  30
 0.0
  11
-371.50000000000006
+268.924333360862
  21
-255.23039000000003
+205.13129600000016
  31
 0.0
   0
@@ -4927,15 +5045,15 @@ LINE
   8
 0
  10
-371.50000000000006
+168.92433336086205
  20
-255.23039000000003
+231.8812960000001
  30
 0.0
  11
-371.50000000000006
+168.92433336086205
  21
-256.23039000000006
+227.88129600000008
  31
 0.0
   0
@@ -4945,15 +5063,15 @@ LINE
   8
 0
  10
-371.50000000000006
+168.92433336086205
  20
-256.23039000000006
+227.88129600000008
  30
 0.0
  11
-370.50000000000006
+180.92433336086205
  21
-256.23039000000006
+227.88129600000008
  31
 0.0
   0
@@ -4963,15 +5081,15 @@ LINE
   8
 0
  10
-350.5
+180.92433336086205
  20
-258.73039000000006
+227.88129600000008
  30
 0.0
  11
-350.5
+180.92433336086205
  21
-257.73039
+231.8812960000001
  31
 0.0
   0
@@ -4981,15 +5099,15 @@ LINE
   8
 0
  10
-350.5
+180.92433336086205
  20
-257.73039
+231.8812960000001
  30
 0.0
  11
-351.50000000000006
+168.92433336086205
  21
-257.73039
+231.8812960000001
  31
 0.0
   0
@@ -4999,15 +5117,15 @@ LINE
   8
 0
  10
-351.50000000000006
+170.42433336086202
  20
-257.73039
+219.8812960000001
  30
 0.0
  11
-351.50000000000006
+170.42433336086202
  21
-258.73039000000006
+215.8812960000001
  31
 0.0
   0
@@ -5017,15 +5135,15 @@ LINE
   8
 0
  10
-351.50000000000006
+170.42433336086202
  20
-258.73039000000006
+215.8812960000001
  30
 0.0
  11
-350.5
+179.42433336086202
  21
-258.73039000000006
+215.8812960000001
  31
 0.0
   0
@@ -5035,15 +5153,15 @@ LINE
   8
 0
  10
-370.50000000000006
+179.42433336086202
  20
-258.73039000000006
+215.8812960000001
  30
 0.0
  11
-370.50000000000006
+179.42433336086202
  21
-257.73039
+219.8812960000001
  31
 0.0
   0
@@ -5053,15 +5171,15 @@ LINE
   8
 0
  10
-370.50000000000006
+179.42433336086202
  20
-257.73039
+219.8812960000001
  30
 0.0
  11
-371.50000000000006
+170.42433336086202
  21
-257.73039
+219.8812960000001
  31
 0.0
   0
@@ -5071,15 +5189,15 @@ LINE
   8
 0
  10
-371.50000000000006
+168.92433336086205
  20
-257.73039
+256.38129600000013
  30
 0.0
  11
-371.50000000000006
+168.92433336086205
  21
-258.73039000000006
+233.3812960000001
  31
 0.0
   0
@@ -5089,15 +5207,15 @@ LINE
   8
 0
  10
-371.50000000000006
+168.92433336086205
  20
-258.73039000000006
+233.3812960000001
  30
 0.0
  11
-370.50000000000006
+180.92433336086205
  21
-258.73039000000006
+233.3812960000001
  31
 0.0
   0
@@ -5107,15 +5225,15 @@ LINE
   8
 0
  10
-350.5
+180.92433336086205
  20
-261.23039000000006
+233.3812960000001
  30
 0.0
  11
-350.5
+180.92433336086205
  21
-260.23039000000006
+256.38129600000013
  31
 0.0
   0
@@ -5125,15 +5243,15 @@ LINE
   8
 0
  10
-350.5
+180.92433336086205
  20
-260.23039000000006
+256.38129600000013
  30
 0.0
  11
-351.50000000000006
+168.92433336086205
  21
-260.23039000000006
+256.38129600000013
  31
 0.0
   0
@@ -5143,15 +5261,15 @@ LINE
   8
 0
  10
-351.50000000000006
+168.92433336086205
  20
-260.23039000000006
+261.88129600000013
  30
 0.0
  11
-351.50000000000006
+168.92433336086205
  21
-261.23039000000006
+257.8812960000001
  31
 0.0
   0
@@ -5161,15 +5279,15 @@ LINE
   8
 0
  10
-351.50000000000006
+168.92433336086205
  20
-261.23039000000006
+257.8812960000001
  30
 0.0
  11
-350.5
+180.92433336086205
  21
-261.23039000000006
+257.8812960000001
  31
 0.0
   0
@@ -5179,15 +5297,15 @@ LINE
   8
 0
  10
-370.50000000000006
+180.92433336086205
  20
-261.23039000000006
+257.8812960000001
  30
 0.0
  11
-370.50000000000006
+180.92433336086205
  21
-260.23039000000006
+261.88129600000013
  31
 0.0
   0
@@ -5197,15 +5315,15 @@ LINE
   8
 0
  10
-370.50000000000006
+180.92433336086205
  20
-260.23039000000006
+261.88129600000013
  30
 0.0
  11
-371.50000000000006
+168.92433336086205
  21
-260.23039000000006
+261.88129600000013
  31
 0.0
   0
@@ -5215,15 +5333,15 @@ LINE
   8
 0
  10
-371.50000000000006
+169.25766669419536
  20
-260.23039000000006
+284.3812960000001
  30
 0.0
  11
-371.50000000000006
+169.25766669419536
  21
-261.23039000000006
+279.3812960000001
  31
 0.0
   0
@@ -5233,15 +5351,15 @@ LINE
   8
 0
  10
-371.50000000000006
+169.25766669419536
  20
-261.23039000000006
+279.3812960000001
  30
 0.0
  11
-370.50000000000006
+180.59100002752868
  21
-261.23039000000006
+279.3812960000001
  31
 0.0
   0
@@ -5251,15 +5369,15 @@ LINE
   8
 0
  10
-350.5
+180.59100002752868
  20
-263.73039000000006
+279.3812960000001
  30
 0.0
  11
-350.5
+180.59100002752868
  21
-262.73039000000006
+284.3812960000001
  31
 0.0
   0
@@ -5269,15 +5387,15 @@ LINE
   8
 0
  10
-350.5
+224.07861139572347
  20
-262.73039000000006
+345.3812960000002
  30
 0.0
  11
-351.50000000000006
+224.07861139572347
  21
-262.73039000000006
+342.3812960000002
  31
 0.0
   0
@@ -5287,15 +5405,15 @@ LINE
   8
 0
  10
-351.50000000000006
+224.07861139572347
  20
-262.73039000000006
+342.3812960000002
  30
 0.0
  11
-351.50000000000006
+242.07861139572344
  21
-263.73039000000006
+342.3812960000002
  31
 0.0
   0
@@ -5305,15 +5423,15 @@ LINE
   8
 0
  10
-351.50000000000006
+242.07861139572344
  20
-263.73039000000006
+342.3812960000002
  30
 0.0
  11
-350.5
+242.07861139572344
  21
-263.73039000000006
+345.3812960000002
  31
 0.0
   0
@@ -5323,15 +5441,15 @@ LINE
   8
 0
  10
-370.50000000000006
+242.07861139572344
  20
-263.73039000000006
+345.3812960000002
  30
 0.0
  11
-370.50000000000006
+224.07861139572347
  21
-262.73039000000006
+345.3812960000002
  31
 0.0
   0
@@ -5341,15 +5459,15 @@ LINE
   8
 0
  10
-370.50000000000006
+237.82861139572347
  20
-262.73039000000006
+293.63129600000013
  30
 0.0
  11
-371.50000000000006
+228.32861139572347
  21
-262.73039000000006
+293.63129600000013
  31
 0.0
   0
@@ -5359,15 +5477,15 @@ LINE
   8
 0
  10
-371.50000000000006
+228.32861139572347
  20
-262.73039000000006
+293.63129600000013
  30
 0.0
  11
-371.50000000000006
+228.32861139572347
  21
-263.73039000000006
+293.13129600000013
  31
 0.0
   0
@@ -5377,15 +5495,15 @@ LINE
   8
 0
  10
-371.50000000000006
+228.32861139572347
  20
-263.73039000000006
+293.13129600000013
  30
 0.0
  11
-370.50000000000006
+237.82861139572347
  21
-263.73039000000006
+293.13129600000013
  31
 0.0
   0
@@ -5395,15 +5513,15 @@ LINE
   8
 0
  10
-350.5
+237.82861139572347
  20
-266.23039
+293.13129600000013
  30
 0.0
  11
-350.5
+237.82861139572347
  21
-265.23039000000006
+293.63129600000013
  31
 0.0
   0
@@ -5413,15 +5531,15 @@ LINE
   8
 0
  10
-350.5
+300.4828894305849
  20
-265.23039000000006
+326.13129600000013
  30
 0.0
  11
-351.50000000000006
+300.4828894305849
  21
-265.23039000000006
+305.6312960000002
  31
 0.0
   0
@@ -5431,15 +5549,15 @@ LINE
   8
 0
  10
-351.50000000000006
+300.4828894305849
  20
-265.23039000000006
+305.6312960000002
  30
 0.0
  11
-351.50000000000006
+300.9828894305849
  21
-266.23039
+305.6312960000002
  31
 0.0
   0
@@ -5449,15 +5567,15 @@ LINE
   8
 0
  10
-351.50000000000006
+300.9828894305849
  20
-266.23039
+305.6312960000002
  30
 0.0
  11
-350.5
+300.9828894305849
  21
-266.23039
+326.13129600000013
  31
 0.0
   0
@@ -5467,15 +5585,15 @@ LINE
   8
 0
  10
-370.50000000000006
+300.9828894305849
  20
-266.23039
+326.13129600000013
  30
 0.0
  11
-370.50000000000006
+300.4828894305849
  21
-265.23039000000006
+326.13129600000013
  31
 0.0
   0
@@ -5485,15 +5603,15 @@ LINE
   8
 0
  10
-370.50000000000006
+224.07861139572339
  20
-265.23039000000006
+348.8812960000002
  30
 0.0
  11
-371.50000000000006
+224.07861139572339
  21
-265.23039000000006
+345.8812960000002
  31
 0.0
   0
@@ -5503,15 +5621,15 @@ LINE
   8
 0
  10
-371.50000000000006
+224.07861139572339
  20
-265.23039000000006
+345.8812960000002
  30
 0.0
  11
-371.50000000000006
+242.0786113957234
  21
-266.23039
+345.8812960000002
  31
 0.0
   0
@@ -5521,15 +5639,15 @@ LINE
   8
 0
  10
-371.50000000000006
+242.0786113957234
  20
-266.23039
+345.8812960000002
  30
 0.0
  11
-370.50000000000006
+242.0786113957234
  21
-266.23039
+348.8812960000002
  31
 0.0
   0
@@ -5539,15 +5657,15 @@ LINE
   8
 0
  10
-350.5
+242.0786113957234
  20
-268.73039
+348.8812960000002
  30
 0.0
  11
-350.5
+224.07861139572339
  21
-267.73039000000006
+348.8812960000002
  31
 0.0
   0
@@ -5557,15 +5675,15 @@ LINE
   8
 0
  10
-350.5
+228.5786113957234
  20
-267.73039000000006
+447.3812960000002
  30
 0.0
  11
-351.50000000000006
+228.5786113957234
  21
-267.73039000000006
+442.3812960000002
  31
 0.0
   0
@@ -5575,15 +5693,15 @@ LINE
   8
 0
  10
-351.50000000000006
+228.5786113957234
  20
-267.73039000000006
+442.3812960000002
  30
 0.0
  11
-351.50000000000006
+237.5786113957234
  21
-268.73039
+442.3812960000002
  31
 0.0
   0
@@ -5593,15 +5711,15 @@ LINE
   8
 0
  10
-351.50000000000006
+237.5786113957234
  20
-268.73039
+442.3812960000002
  30
 0.0
  11
-350.5
+237.5786113957234
  21
-268.73039
+447.3812960000002
  31
 0.0
   0
@@ -5611,15 +5729,15 @@ LINE
   8
 0
  10
-370.50000000000006
+178.17433336086202
  20
-268.73039
+239.6312960000001
  30
 0.0
  11
-370.50000000000006
+167.674333360862
  21
-267.73039000000006
+239.6312960000001
  31
 0.0
   0
@@ -5629,15 +5747,15 @@ LINE
   8
 0
  10
-370.50000000000006
+167.674333360862
  20
-267.73039000000006
+239.6312960000001
  30
 0.0
  11
-371.50000000000006
+167.674333360862
  21
-267.73039000000006
+239.13129600000013
  31
 0.0
   0
@@ -5647,15 +5765,15 @@ LINE
   8
 0
  10
-371.50000000000006
+167.674333360862
  20
-267.73039000000006
+239.13129600000013
  30
 0.0
  11
-371.50000000000006
+178.17433336086202
  21
-268.73039
+239.13129600000013
  31
 0.0
   0
@@ -5665,15 +5783,15 @@ LINE
   8
 0
  10
-371.50000000000006
+178.17433336086202
  20
-268.73039
+239.13129600000013
  30
 0.0
  11
-370.50000000000006
+178.17433336086202
  21
-268.73039
+239.6312960000001
  31
 0.0
   0
@@ -5683,15 +5801,15 @@ LINE
   8
 0
  10
-350.5
+167.92433336086197
  20
-271.23039
+309.38129600000013
  30
 0.0
  11
-350.5
+167.92433336086197
  21
-270.23039000000006
+304.38129600000013
  31
 0.0
   0
@@ -5701,15 +5819,15 @@ LINE
   8
 0
  10
-350.5
+167.92433336086197
  20
-270.23039000000006
+304.38129600000013
  30
 0.0
  11
-351.50000000000006
+177.924333360862
  21
-270.23039000000006
+304.38129600000013
  31
 0.0
   0
@@ -5719,15 +5837,15 @@ LINE
   8
 0
  10
-351.50000000000006
+177.924333360862
  20
-270.23039000000006
+304.38129600000013
  30
 0.0
  11
-351.50000000000006
+177.924333360862
  21
-271.23039
+309.38129600000013
  31
 0.0
   0
@@ -5737,15 +5855,15 @@ LINE
   8
 0
  10
-351.50000000000006
+195.674333360862
  20
-271.23039
+311.6312960000001
  30
 0.0
  11
-350.5
+195.674333360862
  21
-271.23039
+322.13129600000013
  31
 0.0
   0
@@ -5755,15 +5873,15 @@ LINE
   8
 0
  10
-370.50000000000006
+195.674333360862
  20
-271.23039
+322.13129600000013
  30
 0.0
  11
-370.50000000000006
+195.17433336086197
  21
-270.23039000000006
+322.13129600000013
  31
 0.0
   0
@@ -5773,15 +5891,15 @@ LINE
   8
 0
  10
-370.50000000000006
+195.17433336086197
  20
-270.23039000000006
+322.13129600000013
  30
 0.0
  11
-371.50000000000006
+195.17433336086197
  21
-270.23039000000006
+311.6312960000001
  31
 0.0
   0
@@ -5791,15 +5909,15 @@ LINE
   8
 0
  10
-371.50000000000006
+195.17433336086197
  20
-270.23039000000006
+311.6312960000001
  30
 0.0
  11
-371.50000000000006
+195.674333360862
  21
-271.23039
+311.6312960000001
  31
 0.0
   0
@@ -5809,15 +5927,15 @@ LINE
   8
 0
  10
-371.50000000000006
+270.174333360862
  20
-271.23039
+322.1312960000002
  30
 0.0
  11
-370.50000000000006
+270.174333360862
  21
-271.23039
+311.63129600000013
  31
 0.0
   0
@@ -5827,15 +5945,15 @@ LINE
   8
 0
  10
-350.5
+270.174333360862
  20
-273.73039000000006
+311.63129600000013
  30
 0.0
  11
-350.5
+270.67433336086197
  21
-272.73039000000006
+311.63129600000013
  31
 0.0
   0
@@ -5845,15 +5963,15 @@ LINE
   8
 0
  10
-350.5
+270.67433336086197
  20
-272.73039000000006
+311.63129600000013
  30
 0.0
  11
-351.50000000000006
+270.67433336086197
  21
-272.73039000000006
+322.1312960000002
  31
 0.0
   0
@@ -5863,15 +5981,15 @@ LINE
   8
 0
  10
-351.50000000000006
+270.67433336086197
  20
-272.73039000000006
+322.1312960000002
  30
 0.0
  11
-351.50000000000006
+270.174333360862
  21
-273.73039000000006
+322.1312960000002
  31
 0.0
   0
@@ -5881,15 +5999,15 @@ LINE
   8
 0
  10
-351.50000000000006
+270.1743333608621
  20
-273.73039000000006
+222.13129600000016
  30
 0.0
  11
-350.5
+270.1743333608621
  21
-273.73039000000006
+211.63129600000013
  31
 0.0
   0
@@ -5899,15 +6017,15 @@ LINE
   8
 0
  10
-370.50000000000006
+270.1743333608621
  20
-273.73039000000006
+211.63129600000013
  30
 0.0
  11
-370.50000000000006
+270.674333360862
  21
-272.73039000000006
+211.63129600000013
  31
 0.0
   0
@@ -5917,15 +6035,15 @@ LINE
   8
 0
  10
-370.50000000000006
+270.674333360862
  20
-272.73039000000006
+211.63129600000013
  30
 0.0
  11
-371.50000000000006
+270.674333360862
  21
-272.73039000000006
+222.13129600000016
  31
 0.0
   0
@@ -5935,15 +6053,15 @@ LINE
   8
 0
  10
-371.50000000000006
+270.674333360862
  20
-272.73039000000006
+222.13129600000016
  30
 0.0
  11
-371.50000000000006
+270.1743333608621
  21
-273.73039000000006
+222.13129600000016
  31
 0.0
   0
@@ -5953,15 +6071,15 @@ LINE
   8
 0
  10
-371.50000000000006
+180.42433336086205
  20
-273.73039000000006
+211.88129600000008
  30
 0.0
  11
-370.50000000000006
+185.42433336086205
  21
-273.73039000000006
+211.88129600000008
  31
 0.0
   0
@@ -5971,15 +6089,15 @@ LINE
   8
 0
  10
-350.5
+185.42433336086205
  20
-276.23039000000006
+211.88129600000008
  30
 0.0
  11
-350.5
+185.42433336086205
  21
-275.23039
+221.8812960000001
  31
 0.0
   0
@@ -5989,15 +6107,15 @@ LINE
   8
 0
  10
-350.5
+185.42433336086205
  20
-275.23039
+221.8812960000001
  30
 0.0
  11
-351.50000000000006
+180.42433336086205
  21
-275.23039
+221.8812960000001
  31
 0.0
   0
@@ -6007,15 +6125,15 @@ LINE
   8
 0
  10
-351.50000000000006
+287.924333360862
  20
-275.23039
+309.3812960000002
  30
 0.0
  11
-351.50000000000006
+287.924333360862
  21
-276.23039000000006
+304.3812960000002
  31
 0.0
   0
@@ -6025,15 +6143,15 @@ LINE
   8
 0
  10
-351.50000000000006
+287.924333360862
  20
-276.23039000000006
+304.3812960000002
  30
 0.0
  11
-350.5
+297.924333360862
  21
-276.23039000000006
+304.3812960000002
  31
 0.0
   0
@@ -6043,15 +6161,15 @@ LINE
   8
 0
  10
-370.50000000000006
+297.924333360862
  20
-276.23039000000006
+304.3812960000002
  30
 0.0
  11
-370.50000000000006
+297.924333360862
  21
-275.23039
+309.3812960000002
  31
 0.0
   0
@@ -6061,15 +6179,15 @@ LINE
   8
 0
  10
-370.50000000000006
+297.9243333608621
  20
-275.23039
+224.38129600000016
  30
 0.0
  11
-371.50000000000006
+297.9243333608621
  21
-275.23039
+229.38129600000016
  31
 0.0
   0
@@ -6079,15 +6197,15 @@ LINE
   8
 0
  10
-371.50000000000006
+297.9243333608621
  20
-275.23039
+229.38129600000016
  30
 0.0
  11
-371.50000000000006
+287.9243333608621
  21
-276.23039000000006
+229.38129600000016
  31
 0.0
   0
@@ -6097,15 +6215,15 @@ LINE
   8
 0
  10
-371.50000000000006
+287.9243333608621
  20
-276.23039000000006
+229.38129600000016
  30
 0.0
  11
-370.50000000000006
+287.9243333608621
  21
-276.23039000000006
+224.38129600000016
  31
 0.0
   0
@@ -6115,15 +6233,15 @@ LINE
   8
 0
  10
-350.5
+300.42433336086197
  20
-278.73039
+375.88129600000013
  30
 0.0
  11
-350.5
+300.42433336086197
  21
-277.73039000000006
+370.88129600000013
  31
 0.0
   0
@@ -6133,15 +6251,15 @@ LINE
   8
 0
  10
-350.5
+300.42433336086197
  20
-277.73039000000006
+370.88129600000013
  30
 0.0
  11
-351.50000000000006
+305.42433336086197
  21
-277.73039000000006
+375.88129600000013
  31
 0.0
   0
@@ -6151,15 +6269,15 @@ LINE
   8
 0
  10
-351.50000000000006
+305.42433336086197
  20
-277.73039000000006
+375.88129600000013
  30
 0.0
  11
-351.50000000000006
+305.42433336086197
  21
-278.73039
+395.8812960000002
  31
 0.0
   0
@@ -6169,15 +6287,15 @@ LINE
   8
 0
  10
-351.50000000000006
+305.42433336086197
  20
-278.73039
+395.8812960000002
  30
 0.0
  11
-350.5
+300.42433336086197
  21
-278.73039
+400.8812960000002
  31
 0.0
   0
@@ -6187,15 +6305,15 @@ LINE
   8
 0
  10
-370.50000000000006
+300.42433336086197
  20
-278.73039
+400.8812960000002
  30
 0.0
  11
-370.50000000000006
+300.42433336086197
  21
-277.73039000000006
+395.8812960000002
  31
 0.0
   0
@@ -6205,15 +6323,15 @@ LINE
   8
 0
  10
-370.50000000000006
+296.8410000275287
  20
-277.73039000000006
+266.63129600000013
  30
 0.0
  11
-371.50000000000006
+285.0076666941954
  21
-277.73039000000006
+266.63129600000013
  31
 0.0
   0
@@ -6223,15 +6341,15 @@ LINE
   8
 0
  10
-371.50000000000006
+285.0076666941954
  20
-277.73039000000006
+266.63129600000013
  30
 0.0
  11
-371.50000000000006
+285.0076666941954
  21
-278.73039
+266.1312960000002
  31
 0.0
   0
@@ -6241,15 +6359,15 @@ LINE
   8
 0
  10
-371.50000000000006
+285.0076666941954
  20
-278.73039
+266.1312960000002
  30
 0.0
  11
-370.50000000000006
+296.8410000275287
  21
-278.73039
+266.1312960000002
  31
 0.0
   0
@@ -6259,15 +6377,15 @@ LINE
   8
 0
  10
-350.5
+296.8410000275287
  20
-281.23039000000006
+266.1312960000002
  30
 0.0
  11
-350.5
+296.8410000275287
  21
-280.23039
+266.63129600000013
  31
 0.0
   0
@@ -6277,15 +6395,15 @@ LINE
   8
 0
  10
-350.5
+189.17433336086205
  20
-280.23039
+266.8812960000001
  30
 0.0
  11
-351.50000000000006
+189.17433336086205
  21
-280.23039
+264.3812960000001
  31
 0.0
   0
@@ -6295,15 +6413,15 @@ LINE
   8
 0
  10
-351.50000000000006
+189.17433336086205
  20
-280.23039
+264.3812960000001
  30
 0.0
  11
-351.50000000000006
+191.67433336086205
  21
-281.23039000000006
+266.8812960000001
  31
 0.0
   0
@@ -6313,15 +6431,15 @@ LINE
   8
 0
  10
-351.50000000000006
+191.67433336086205
  20
-281.23039000000006
+266.8812960000001
  30
 0.0
  11
-350.5
+191.67433336086205
  21
-281.23039000000006
+274.8812960000001
  31
 0.0
   0
@@ -6331,15 +6449,15 @@ LINE
   8
 0
  10
-370.50000000000006
+191.67433336086205
  20
-281.23039000000006
+274.8812960000001
  30
 0.0
  11
-370.50000000000006
+189.17433336086205
  21
-280.23039
+277.38129600000013
  31
 0.0
   0
@@ -6349,15 +6467,15 @@ LINE
   8
 0
  10
-370.50000000000006
+189.17433336086205
  20
-280.23039
+277.38129600000013
  30
 0.0
  11
-371.50000000000006
+189.17433336086205
  21
-280.23039
+274.8812960000001
  31
 0.0
   0
@@ -6367,15 +6485,15 @@ LINE
   8
 0
  10
-371.50000000000006
+284.9243333608621
  20
-280.23039
+301.88129600000013
  30
 0.0
  11
-371.50000000000006
+284.9243333608621
  21
-281.23039000000006
+297.88129600000013
  31
 0.0
   0
@@ -6385,15 +6503,15 @@ LINE
   8
 0
  10
-371.50000000000006
+284.9243333608621
  20
-281.23039000000006
+297.88129600000013
  30
 0.0
  11
-370.50000000000006
+296.9243333608621
  21
-281.23039000000006
+297.88129600000013
  31
 0.0
   0
@@ -6403,15 +6521,15 @@ LINE
   8
 0
  10
-350.5
+296.9243333608621
  20
-283.73039
+297.88129600000013
  30
 0.0
  11
-350.5
+296.9243333608621
  21
-282.73039000000006
+301.88129600000013
  31
 0.0
   0
@@ -6421,15 +6539,15 @@ LINE
   8
 0
  10
-350.5
+296.9243333608621
  20
-282.73039000000006
+301.88129600000013
  30
 0.0
  11
-351.50000000000006
+284.9243333608621
  21
-282.73039000000006
+301.88129600000013
  31
 0.0
   0
@@ -6439,15 +6557,15 @@ LINE
   8
 0
  10
-351.50000000000006
+286.424333360862
  20
-282.73039000000006
+289.88129600000013
  30
 0.0
  11
-351.50000000000006
+286.424333360862
  21
-283.73039
+285.8812960000002
  31
 0.0
   0
@@ -6457,15 +6575,15 @@ LINE
   8
 0
  10
-351.50000000000006
+286.424333360862
  20
-283.73039
+285.8812960000002
  30
 0.0
  11
-350.5
+295.424333360862
  21
-283.73039
+285.8812960000002
  31
 0.0
   0
@@ -6475,15 +6593,15 @@ LINE
   8
 0
  10
-370.50000000000006
+295.424333360862
  20
-283.73039
+285.8812960000002
  30
 0.0
  11
-370.50000000000006
+295.424333360862
  21
-282.73039000000006
+289.88129600000013
  31
 0.0
   0
@@ -6493,15 +6611,15 @@ LINE
   8
 0
  10
-370.50000000000006
+295.424333360862
  20
-282.73039000000006
+289.88129600000013
  30
 0.0
  11
-371.50000000000006
+286.424333360862
  21
-282.73039000000006
+289.88129600000013
  31
 0.0
   0
@@ -6511,15 +6629,15 @@ LINE
   8
 0
  10
-371.50000000000006
+284.9243333608621
  20
-282.73039000000006
+326.3812960000002
  30
 0.0
  11
-371.50000000000006
+284.9243333608621
  21
-283.73039
+303.38129600000013
  31
 0.0
   0
@@ -6529,15 +6647,15 @@ LINE
   8
 0
  10
-371.50000000000006
+284.9243333608621
  20
-283.73039
+303.38129600000013
  30
 0.0
  11
-370.50000000000006
+296.9243333608621
  21
-283.73039
+303.38129600000013
  31
 0.0
   0
@@ -6547,15 +6665,15 @@ LINE
   8
 0
  10
-350.5
+296.9243333608621
  20
-286.23039000000006
+303.38129600000013
  30
 0.0
  11
-350.5
+296.9243333608621
  21
-285.23039000000006
+326.3812960000002
  31
 0.0
   0
@@ -6565,15 +6683,15 @@ LINE
   8
 0
  10
-350.5
+296.9243333608621
  20
-285.23039000000006
+326.3812960000002
  30
 0.0
  11
-351.50000000000006
+284.9243333608621
  21
-285.23039000000006
+326.3812960000002
  31
 0.0
   0
@@ -6583,15 +6701,15 @@ LINE
   8
 0
  10
-351.50000000000006
+284.9243333608621
  20
-285.23039000000006
+331.8812960000002
  30
 0.0
  11
-351.50000000000006
+284.9243333608621
  21
-286.23039000000006
+327.8812960000002
  31
 0.0
   0
@@ -6601,15 +6719,15 @@ LINE
   8
 0
  10
-351.50000000000006
+284.9243333608621
  20
-286.23039000000006
+327.8812960000002
  30
 0.0
  11
-350.5
+296.9243333608621
  21
-286.23039000000006
+327.8812960000002
  31
 0.0
   0
@@ -6619,15 +6737,15 @@ LINE
   8
 0
  10
-370.50000000000006
+296.9243333608621
  20
-286.23039000000006
+327.8812960000002
  30
 0.0
  11
-370.50000000000006
+296.9243333608621
  21
-285.23039000000006
+331.8812960000002
  31
 0.0
   0
@@ -6637,15 +6755,15 @@ LINE
   8
 0
  10
-370.50000000000006
+296.9243333608621
  20
-285.23039000000006
+331.8812960000002
  30
 0.0
  11
-371.50000000000006
+284.9243333608621
  21
-285.23039000000006
+331.8812960000002
  31
 0.0
   0
@@ -6655,15 +6773,15 @@ LINE
   8
 0
  10
-371.50000000000006
+285.2576666941954
  20
-285.23039000000006
+354.3812960000002
  30
 0.0
  11
-371.50000000000006
+285.2576666941954
  21
-286.23039000000006
+349.3812960000002
  31
 0.0
   0
@@ -6673,15 +6791,15 @@ LINE
   8
 0
  10
-371.50000000000006
+285.2576666941954
  20
-286.23039000000006
+349.3812960000002
  30
 0.0
  11
-370.50000000000006
+296.5910000275287
  21
-286.23039000000006
+349.3812960000002
  31
 0.0
   0
@@ -6691,15 +6809,15 @@ LINE
   8
 0
  10
-350.5
+296.5910000275287
  20
-288.73039
+349.3812960000002
  30
 0.0
  11
-350.5
+296.5910000275287
  21
-287.73039000000006
+354.3812960000002
  31
 0.0
   0
@@ -6709,15 +6827,15 @@ LINE
   8
 0
  10
-350.5
+253.28571136167673
  20
-287.73039000000006
+230.88129600000016
  30
 0.0
  11
-351.50000000000006
+253.28571136167673
  21
-287.73039000000006
+219.88129600000016
  31
 0.0
   0
@@ -6727,15 +6845,15 @@ LINE
   8
 0
  10
-351.50000000000006
+253.28571136167673
  20
-287.73039000000006
+219.88129600000016
  30
 0.0
  11
-351.50000000000006
+266.2857113616767
  21
-288.73039
+219.88129600000016
  31
 0.0
   0
@@ -6745,15 +6863,15 @@ LINE
   8
 0
  10
-351.50000000000006
+266.2857113616767
  20
-288.73039
+219.88129600000016
  30
 0.0
  11
-350.5
+266.2857113616767
  21
-288.73039
+230.88129600000016
  31
 0.0
   0
@@ -6763,15 +6881,15 @@ LINE
   8
 0
  10
-369.50000000000006
+266.2857113616767
  20
-289.73039000000006
+230.88129600000016
  30
 0.0
  11
-369.50000000000006
+253.28571136167673
  21
-286.73039000000006
+230.88129600000016
  31
 0.0
   0
@@ -6781,15 +6899,15 @@ LINE
   8
 0
  10
-369.50000000000006
+254.78571136167673
  20
-286.73039000000006
+199.38129600000016
  30
 0.0
  11
-372.50000000000006
+254.78571136167673
  21
-286.73039000000006
+193.38129600000013
  31
 0.0
   0
@@ -6799,15 +6917,15 @@ LINE
   8
 0
  10
-372.50000000000006
+254.78571136167673
  20
-286.73039000000006
+193.38129600000013
  30
 0.0
  11
-372.50000000000006
+264.78571136167676
  21
-289.73039000000006
+193.38129600000013
  31
 0.0
   0
@@ -6817,15 +6935,15 @@ LINE
   8
 0
  10
-372.50000000000006
+264.78571136167676
  20
-289.73039000000006
+193.38129600000013
  30
 0.0
  11
-369.50000000000006
+264.78571136167676
  21
-289.73039000000006
+199.38129600000016
  31
 0.0
   0
@@ -6835,15 +6953,15 @@ LINE
   8
 0
  10
-365.25000000000006
+264.78571136167676
  20
-246.73039000000003
+199.38129600000016
  30
 0.0
  11
-356.75000000000006
+254.78571136167673
  21
-246.73039000000003
+199.38129600000016
  31
 0.0
   0
@@ -6853,15 +6971,15 @@ LINE
   8
 0
  10
-356.75000000000006
+204.14708936249147
  20
-246.73039000000003
+198.9722050909092
  30
 0.0
  11
-356.75000000000006
+209.14708936249147
  21
-246.23039000000003
+198.9722050909092
  31
 0.0
   0
@@ -6871,15 +6989,15 @@ LINE
   8
 0
  10
-356.75000000000006
+209.14708936249147
  20
-246.23039000000003
+198.9722050909092
  30
 0.0
  11
-365.25000000000006
+209.14708936249147
  21
-246.23039000000003
+210.0631141818183
  31
 0.0
   0
@@ -6889,15 +7007,15 @@ LINE
   8
 0
  10
-365.25000000000006
+209.14708936249147
  20
-246.23039000000003
+210.0631141818183
  30
 0.0
  11
-365.25000000000006
+204.14708936249147
  21
-246.73039000000003
+210.0631141818183
  31
 0.0
   0
@@ -6907,15 +7025,15 @@ LINE
   8
 0
  10
-356.75000000000006
+204.14708936249147
  20
-294.48039000000006
+226.69947781818195
  30
 0.0
  11
-365.25000000000006
+209.14708936249147
  21
-294.48039000000006
+226.69947781818195
  31
 0.0
   0
@@ -6925,15 +7043,15 @@ LINE
   8
 0
  10
-365.25000000000006
+209.14708936249147
  20
-294.48039000000006
+226.69947781818195
  30
 0.0
  11
-365.25000000000006
+209.14708936249147
  21
-294.98039000000006
+237.79038690909104
  31
 0.0
   0
@@ -6943,15 +7061,15 @@ LINE
   8
 0
  10
-365.25000000000006
+209.14708936249147
  20
-294.98039000000006
+237.79038690909104
  30
 0.0
  11
-356.75000000000006
+204.14708936249147
  21
-294.98039000000006
+237.79038690909104
  31
 0.0
   0
@@ -6961,15 +7079,15 @@ LINE
   8
 0
  10
-356.75000000000006
+263.78571136167676
  20
-294.98039000000006
+180.38129600000016
  30
 0.0
  11
-356.75000000000006
+263.78571136167676
  21
-294.48039000000006
+185.38129600000016
  31
 0.0
   0
@@ -6979,15 +7097,15 @@ LINE
   8
 0
  10
-388.00000000000006
+263.78571136167676
  20
-289.98039000000006
+185.38129600000016
  30
 0.0
  11
-388.00000000000006
+255.7857113616768
  21
-276.98039000000006
+185.38129600000016
  31
 0.0
   0
@@ -6997,15 +7115,15 @@ LINE
   8
 0
  10
-388.00000000000006
+255.7857113616768
  20
-276.98039000000006
+185.38129600000016
  30
 0.0
  11
-418.00000000000006
+255.7857113616768
  21
-276.98039000000006
+180.38129600000016
  31
 0.0
   0
@@ -7015,15 +7133,15 @@ LINE
   8
 0
  10
-418.00000000000006
+255.78571136167673
  20
-276.98039000000006
+256.3812960000002
  30
 0.0
  11
-418.00000000000006
+255.78571136167673
  21
-289.98039000000006
+251.38129600000013
  31
 0.0
   0
@@ -7033,15 +7151,15 @@ LINE
   8
 0
  10
-418.00000000000006
+255.78571136167673
  20
-289.98039000000006
+251.38129600000013
  30
 0.0
  11
-388.00000000000006
+263.7857113616767
  21
-289.98039000000006
+251.38129600000013
  31
 0.0
   0
@@ -7051,15 +7169,15 @@ LINE
   8
 0
  10
-395.06818181818187
+263.7857113616767
  20
-244.48039000000003
+251.38129600000013
  30
 0.0
  11
-383.6590909090909
+263.7857113616767
  21
-244.48039000000003
+256.3812960000002
  31
 0.0
   0
@@ -7069,15 +7187,15 @@ LINE
   8
 0
  10
-383.6590909090909
+1.9810833402154915
  20
-244.48039000000003
+423.8056293608621
  30
 0.0
  11
-383.6590909090909
+5.943250020646475
  21
-243.98039000000003
+423.8056293608621
  31
 0.0
   0
@@ -7087,15 +7205,15 @@ LINE
   8
 0
  10
-383.6590909090909
+5.943250020646475
  20
-243.98039000000003
+423.8056293608621
  30
 0.0
  11
-395.06818181818187
+5.943250020646475
  21
-243.98039000000003
+431.72996272172406
  31
 0.0
   0
@@ -7105,87 +7223,95 @@ LINE
   8
 0
  10
-395.06818181818187
+5.943250020646475
  20
-243.98039000000003
+431.72996272172406
  30
 0.0
  11
-395.06818181818187
+1.9810833402154915
  21
-244.48039000000003
+431.72996272172406
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
 0
  10
-422.3409090909092
+351.2328894305849
  20
-244.48039000000003
+254.88129600000005
  30
 0.0
  11
-410.93181818181824
+412.2328894305849
  21
-244.48039000000003
+254.88129600000005
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
 0
  10
-410.93181818181824
+412.2328894305849
  20
-244.48039000000003
+254.88129600000005
  30
 0.0
  11
-410.93181818181824
+412.2328894305849
  21
-243.98039000000003
+278.8812960000001
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
 0
  10
-410.93181818181824
+412.2328894305849
  20
-243.98039000000003
+278.8812960000001
  30
 0.0
  11
-422.3409090909092
+351.2328894305849
  21
-243.98039000000003
+278.8812960000001
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
 0
  10
-422.3409090909092
+351.2328894305849
  20
-243.98039000000003
+278.8812960000001
  30
 0.0
  11
-422.3409090909092
+351.2328894305849
  21
-244.48039000000003
+254.88129600000005
  31
 0.0
   0
@@ -7195,15 +7321,15 @@ LINE
   8
 0
  10
-425.25000000000006
+351.2328894305849
  20
-261.4122081818182
+247.88129600000005
  30
 0.0
  11
-425.25000000000006
+351.2328894305849
  21
-249.82129909090912
+254.88129600000005
  31
 0.0
   0
@@ -7213,15 +7339,15 @@ LINE
   8
 0
  10
-425.25000000000006
+411.2328894305849
  20
-249.82129909090912
+247.88129600000005
  30
 0.0
  11
-425.75000000000006
+351.2328894305849
  21
-249.82129909090912
+247.88129600000005
  31
 0.0
   0
@@ -7231,15 +7357,15 @@ LINE
   8
 0
  10
-425.75000000000006
+411.2328894305849
  20
-249.82129909090912
+254.88129600000005
  30
 0.0
  11
-425.75000000000006
+411.2328894305849
  21
-261.4122081818182
+247.88129600000005
  31
 0.0
   0
@@ -7249,15 +7375,15 @@ LINE
   8
 0
  10
-425.75000000000006
+419.2328894305849
  20
-261.4122081818182
+254.88129600000005
  30
 0.0
  11
-425.25000000000006
+412.2328894305849
  21
-261.4122081818182
+254.88129600000005
  31
 0.0
   0
@@ -7267,15 +7393,15 @@ LINE
   8
 0
  10
-425.25000000000006
+419.2328894305849
  20
-289.13948090909093
+278.8812960000001
  30
 0.0
  11
-425.25000000000006
+419.2328894305849
  21
-277.5485718181818
+254.88129600000005
  31
 0.0
   0
@@ -7285,33 +7411,35 @@ LINE
   8
 0
  10
-425.25000000000006
+412.2328894305849
  20
-277.5485718181818
+278.8812960000001
  30
 0.0
  11
-425.75000000000006
+419.2328894305849
  21
-277.5485718181818
+278.8812960000001
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
 0
  10
-425.75000000000006
+412.2328894305849
  20
-277.5485718181818
+278.8812960000001
  30
 0.0
  11
-425.75000000000006
+412.2328894305849
  21
-289.13948090909093
+339.881296
  31
 0.0
   0
@@ -7321,33 +7449,35 @@ LINE
   8
 0
  10
-425.75000000000006
+352.23288943058486
  20
-289.13948090909093
+339.881296
  30
 0.0
  11
-425.25000000000006
+412.2328894305849
  21
-289.13948090909093
+339.881296
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
 0
  10
-265.50000000000006
+352.23288943058486
  20
-252.23039000000003
+278.8812960000001
  30
 0.0
  11
-265.50000000000006
+352.23288943058486
  21
-249.23039000000003
+339.881296
  31
 0.0
   0
@@ -7357,33 +7487,35 @@ LINE
   8
 0
  10
-265.50000000000006
+436.2328894305849
  20
-249.23039000000003
+278.8812960000001
  30
 0.0
  11
-268.50000000000006
+412.2328894305849
  21
-249.23039000000003
+278.8812960000001
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
 0
  10
-268.50000000000006
+436.2328894305849
  20
-249.23039000000003
+278.8812960000001
  30
 0.0
  11
-268.50000000000006
+436.2328894305849
  21
-252.23039000000003
+339.881296
  31
 0.0
   0
@@ -7393,15 +7525,15 @@ LINE
   8
 0
  10
-268.50000000000006
+412.2328894305849
  20
-252.23039000000003
+339.881296
  30
 0.0
  11
-265.50000000000006
+436.2328894305849
  21
-252.23039000000003
+339.881296
  31
 0.0
   0
@@ -7411,15 +7543,15 @@ LINE
   8
 0
  10
-286.5
+496.2328894305849
  20
-251.23039000000003
+278.8812960000001
  30
 0.0
  11
-286.5
+436.2328894305849
  21
-250.23039000000003
+278.8812960000001
  31
 0.0
   0
@@ -7429,15 +7561,15 @@ LINE
   8
 0
  10
-286.5
+496.2328894305849
  20
-250.23039000000003
+339.881296
  30
 0.0
  11
-287.5
+496.2328894305849
  21
-250.23039000000003
+278.8812960000001
  31
 0.0
   0
@@ -7447,15 +7579,15 @@ LINE
   8
 0
  10
-287.5
+436.2328894305849
  20
-250.23039000000003
+339.881296
  30
 0.0
  11
-287.5
+496.2328894305849
  21
-251.23039000000003
+339.881296
  31
 0.0
   0
@@ -7465,15 +7597,15 @@ LINE
   8
 0
  10
-287.5
+352.23288943058486
  20
-251.23039000000003
+278.8812960000001
  30
 0.0
  11
-286.5
+328.2328894305849
  21
-251.23039000000003
+278.8812960000001
  31
 0.0
   0
@@ -7483,33 +7615,35 @@ LINE
   8
 0
  10
-266.5
+328.2328894305849
  20
-253.73039000000003
+339.881296
  30
 0.0
  11
-266.5
+352.23288943058486
  21
-252.73039000000003
+339.881296
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
 0
  10
-266.5
+328.2328894305849
  20
-252.73039000000003
+339.881296
  30
 0.0
  11
-267.50000000000006
+328.2328894305849
  21
-252.73039000000003
+278.8812960000001
  31
 0.0
   0
@@ -7519,15 +7653,15 @@ LINE
   8
 0
  10
-267.50000000000006
+318.2328894305849
  20
-252.73039000000003
+339.881296
  30
 0.0
  11
-267.50000000000006
+328.2328894305849
  21
-253.73039000000003
+339.881296
  31
 0.0
   0
@@ -7537,15 +7671,15 @@ LINE
   8
 0
  10
-267.50000000000006
+318.2328894305849
  20
-253.73039000000003
+278.8812960000001
  30
 0.0
  11
-266.5
+318.2328894305849
  21
-253.73039000000003
+339.881296
  31
 0.0
   0
@@ -7555,15 +7689,15 @@ LINE
   8
 0
  10
-286.5
+328.2328894305849
  20
-253.73039000000003
+278.8812960000001
  30
 0.0
  11
-286.5
+318.2328894305849
  21
-252.73039000000003
+278.8812960000001
  31
 0.0
   0
@@ -7573,15 +7707,15 @@ LINE
   8
 0
  10
-286.5
+344.23288943058486
  20
-252.73039000000003
+278.8812960000001
  30
 0.0
  11
-287.5
+351.2328894305849
  21
-252.73039000000003
+278.8812960000001
  31
 0.0
   0
@@ -7591,15 +7725,15 @@ LINE
   8
 0
  10
-287.5
+344.23288943058486
  20
-252.73039000000003
+254.88129600000005
  30
 0.0
  11
-287.5
+344.23288943058486
  21
-253.73039000000003
+278.8812960000001
  31
 0.0
   0
@@ -7609,15 +7743,15 @@ LINE
   8
 0
  10
-287.5
+351.2328894305849
  20
-253.73039000000003
+254.88129600000005
  30
 0.0
  11
-286.5
+344.23288943058486
  21
-253.73039000000003
+254.88129600000005
  31
 0.0
   0
@@ -7627,15 +7761,15 @@ LINE
   8
 0
  10
-266.5
+400.323798521494
  20
-256.23039000000006
+249.63129600000005
  30
 0.0
  11
-266.5
+403.823798521494
  21
-255.23039000000003
+249.63129600000005
  31
 0.0
   0
@@ -7645,15 +7779,15 @@ LINE
   8
 0
  10
-266.5
+403.823798521494
  20
-255.23039000000003
+249.63129600000005
  30
 0.0
  11
-267.50000000000006
+400.323798521494
  21
-255.23039000000003
+253.13129600000005
  31
 0.0
   0
@@ -7663,15 +7797,15 @@ LINE
   8
 0
  10
-267.50000000000006
+400.323798521494
  20
-255.23039000000003
+253.13129600000005
  30
 0.0
  11
-267.50000000000006
+389.4147076124031
  21
-256.23039000000006
+253.13129600000005
  31
 0.0
   0
@@ -7681,15 +7815,15 @@ LINE
   8
 0
  10
-267.50000000000006
+389.4147076124031
  20
-256.23039000000006
+253.13129600000005
  30
 0.0
  11
-266.5
+385.9147076124031
  21
-256.23039000000006
+249.63129600000005
  31
 0.0
   0
@@ -7699,15 +7833,15 @@ LINE
   8
 0
  10
-286.5
+385.9147076124031
  20
-256.23039000000006
+249.63129600000005
  30
 0.0
  11
-286.5
+389.4147076124031
  21
-255.23039000000003
+249.63129600000005
  31
 0.0
   0
@@ -7717,15 +7851,15 @@ LINE
   8
 0
  10
-286.5
+373.0510712487667
  20
-255.23039000000003
+249.63129600000005
  30
 0.0
  11
-287.5
+376.55107124876673
  21
-255.23039000000003
+249.63129600000005
  31
 0.0
   0
@@ -7735,15 +7869,15 @@ LINE
   8
 0
  10
-287.5
+376.55107124876673
  20
-255.23039000000003
+249.63129600000005
  30
 0.0
  11
-287.5
+373.0510712487667
  21
-256.23039000000006
+253.13129600000005
  31
 0.0
   0
@@ -7753,15 +7887,15 @@ LINE
   8
 0
  10
-287.5
+373.0510712487667
  20
-256.23039000000006
+253.13129600000005
  30
 0.0
  11
-286.5
+362.14198033967585
  21
-256.23039000000006
+253.13129600000005
  31
 0.0
   0
@@ -7771,15 +7905,15 @@ LINE
   8
 0
  10
-266.5
+362.14198033967585
  20
-258.73039000000006
+253.13129600000005
  30
 0.0
  11
-266.5
+358.6419803396758
  21
-257.73039
+249.63129600000005
  31
 0.0
   0
@@ -7789,15 +7923,15 @@ LINE
   8
 0
  10
-266.5
+358.6419803396758
  20
-257.73039
+249.63129600000005
  30
 0.0
  11
-267.50000000000006
+362.14198033967585
  21
-257.73039
+249.63129600000005
  31
 0.0
   0
@@ -7807,15 +7941,15 @@ LINE
   8
 0
  10
-267.50000000000006
+417.4828894305849
  20
-257.73039
+270.8812960000001
  30
 0.0
  11
-267.50000000000006
+413.9828894305849
  21
-258.73039000000006
+270.8812960000001
  31
 0.0
   0
@@ -7825,15 +7959,15 @@ LINE
   8
 0
  10
-267.50000000000006
+413.9828894305849
  20
-258.73039000000006
+270.8812960000001
  30
 0.0
  11
-266.5
+413.9828894305849
  21
-258.73039000000006
+262.881296
  31
 0.0
   0
@@ -7843,15 +7977,15 @@ LINE
   8
 0
  10
-286.5
+413.9828894305849
  20
-258.73039000000006
+262.881296
  30
 0.0
  11
-286.5
+417.4828894305849
  21
-257.73039
+262.881296
  31
 0.0
   0
@@ -7861,15 +7995,15 @@ LINE
   8
 0
  10
-286.5
+359.7328894305849
  20
-257.73039
+330.381296
  30
 0.0
  11
-287.5
+359.7328894305849
  21
-257.73039
+312.381296
  31
 0.0
   0
@@ -7879,15 +8013,15 @@ LINE
   8
 0
  10
-287.5
+359.7328894305849
  20
-257.73039
+312.381296
  30
 0.0
  11
-287.5
+394.7328894305849
  21
-258.73039000000006
+312.381296
  31
 0.0
   0
@@ -7897,15 +8031,15 @@ LINE
   8
 0
  10
-287.5
+394.7328894305849
  20
-258.73039000000006
+312.381296
  30
 0.0
  11
-286.5
+394.7328894305849
  21
-258.73039000000006
+330.381296
  31
 0.0
   0
@@ -7915,15 +8049,15 @@ LINE
   8
 0
  10
-266.5
+394.7328894305849
  20
-261.23039000000006
+330.381296
  30
 0.0
  11
-266.5
+359.7328894305849
  21
-260.23039000000006
+330.381296
  31
 0.0
   0
@@ -7933,15 +8067,15 @@ LINE
   8
 0
  10
-266.5
+412.7328894305849
  20
-260.23039000000006
+292.1312960000001
  30
 0.0
  11
-267.50000000000006
+412.7328894305849
  21
-260.23039000000006
+289.131296
  31
 0.0
   0
@@ -7951,15 +8085,15 @@ LINE
   8
 0
  10
-267.50000000000006
+412.7328894305849
  20
-260.23039000000006
+289.131296
  30
 0.0
  11
-267.50000000000006
+415.7328894305849
  21
-261.23039000000006
+289.131296
  31
 0.0
   0
@@ -7969,15 +8103,15 @@ LINE
   8
 0
  10
-267.50000000000006
+415.7328894305849
  20
-261.23039000000006
+289.131296
  30
 0.0
  11
-266.5
+415.7328894305849
  21
-261.23039000000006
+292.1312960000001
  31
 0.0
   0
@@ -7987,15 +8121,15 @@ LINE
   8
 0
  10
-286.5
+415.7328894305849
  20
-261.23039000000006
+292.1312960000001
  30
 0.0
  11
-286.5
+412.7328894305849
  21
-260.23039000000006
+292.1312960000001
  31
 0.0
   0
@@ -8005,15 +8139,15 @@ LINE
   8
 0
  10
-286.5
+433.7328894305849
  20
-260.23039000000006
+291.1312960000001
  30
 0.0
  11
-287.5
+433.7328894305849
  21
-260.23039000000006
+290.131296
  31
 0.0
   0
@@ -8023,15 +8157,15 @@ LINE
   8
 0
  10
-287.5
+433.7328894305849
  20
-260.23039000000006
+290.131296
  30
 0.0
  11
-287.5
+434.73288943058486
  21
-261.23039000000006
+290.131296
  31
 0.0
   0
@@ -8041,15 +8175,15 @@ LINE
   8
 0
  10
-287.5
+434.73288943058486
  20
-261.23039000000006
+290.131296
  30
 0.0
  11
-286.5
+434.73288943058486
  21
-261.23039000000006
+291.1312960000001
  31
 0.0
   0
@@ -8059,15 +8193,15 @@ LINE
   8
 0
  10
-266.5
+434.73288943058486
  20
-263.73039000000006
+291.1312960000001
  30
 0.0
  11
-266.5
+433.7328894305849
  21
-262.73039000000006
+291.1312960000001
  31
 0.0
   0
@@ -8077,15 +8211,15 @@ LINE
   8
 0
  10
-266.5
+413.7328894305849
  20
-262.73039000000006
+293.631296
  30
 0.0
  11
-267.50000000000006
+413.7328894305849
  21
-262.73039000000006
+292.6312960000001
  31
 0.0
   0
@@ -8095,15 +8229,15 @@ LINE
   8
 0
  10
-267.50000000000006
+413.7328894305849
  20
-262.73039000000006
+292.6312960000001
  30
 0.0
  11
-267.50000000000006
+414.7328894305849
  21
-263.73039000000006
+292.6312960000001
  31
 0.0
   0
@@ -8113,15 +8247,15 @@ LINE
   8
 0
  10
-267.50000000000006
+414.7328894305849
  20
-263.73039000000006
+292.6312960000001
  30
 0.0
  11
-266.5
+414.7328894305849
  21
-263.73039000000006
+293.631296
  31
 0.0
   0
@@ -8131,15 +8265,15 @@ LINE
   8
 0
  10
-286.5
+414.7328894305849
  20
-263.73039000000006
+293.631296
  30
 0.0
  11
-286.5
+413.7328894305849
  21
-262.73039000000006
+293.631296
  31
 0.0
   0
@@ -8149,15 +8283,15 @@ LINE
   8
 0
  10
-286.5
+433.7328894305849
  20
-262.73039000000006
+293.631296
  30
 0.0
  11
-287.5
+433.7328894305849
  21
-262.73039000000006
+292.6312960000001
  31
 0.0
   0
@@ -8167,15 +8301,15 @@ LINE
   8
 0
  10
-287.5
+433.7328894305849
  20
-262.73039000000006
+292.6312960000001
  30
 0.0
  11
-287.5
+434.73288943058486
  21
-263.73039000000006
+292.6312960000001
  31
 0.0
   0
@@ -8185,15 +8319,15 @@ LINE
   8
 0
  10
-287.5
+434.73288943058486
  20
-263.73039000000006
+292.6312960000001
  30
 0.0
  11
-286.5
+434.73288943058486
  21
-263.73039000000006
+293.631296
  31
 0.0
   0
@@ -8203,15 +8337,15 @@ LINE
   8
 0
  10
-266.5
+434.73288943058486
  20
-266.23039
+293.631296
  30
 0.0
  11
-266.5
+433.7328894305849
  21
-265.23039000000006
+293.631296
  31
 0.0
   0
@@ -8221,15 +8355,15 @@ LINE
   8
 0
  10
-266.5
+413.7328894305849
  20
-265.23039000000006
+296.1312960000001
  30
 0.0
  11
-267.50000000000006
+413.7328894305849
  21
-265.23039000000006
+295.1312960000001
  31
 0.0
   0
@@ -8239,15 +8373,15 @@ LINE
   8
 0
  10
-267.50000000000006
+413.7328894305849
  20
-265.23039000000006
+295.1312960000001
  30
 0.0
  11
-267.50000000000006
+414.7328894305849
  21
-266.23039
+295.1312960000001
  31
 0.0
   0
@@ -8257,15 +8391,15 @@ LINE
   8
 0
  10
-267.50000000000006
+414.7328894305849
  20
-266.23039
+295.1312960000001
  30
 0.0
  11
-266.5
+414.7328894305849
  21
-266.23039
+296.1312960000001
  31
 0.0
   0
@@ -8275,15 +8409,15 @@ LINE
   8
 0
  10
-286.5
+414.7328894305849
  20
-266.23039
+296.1312960000001
  30
 0.0
  11
-286.5
+413.7328894305849
  21
-265.23039000000006
+296.1312960000001
  31
 0.0
   0
@@ -8293,15 +8427,15 @@ LINE
   8
 0
  10
-286.5
+433.7328894305849
  20
-265.23039000000006
+296.1312960000001
  30
 0.0
  11
-287.5
+433.7328894305849
  21
-265.23039000000006
+295.1312960000001
  31
 0.0
   0
@@ -8311,15 +8445,15 @@ LINE
   8
 0
  10
-287.5
+433.7328894305849
  20
-265.23039000000006
+295.1312960000001
  30
 0.0
  11
-287.5
+434.73288943058486
  21
-266.23039
+295.1312960000001
  31
 0.0
   0
@@ -8329,15 +8463,15 @@ LINE
   8
 0
  10
-287.5
+434.73288943058486
  20
-266.23039
+295.1312960000001
  30
 0.0
  11
-286.5
+434.73288943058486
  21
-266.23039
+296.1312960000001
  31
 0.0
   0
@@ -8347,15 +8481,15 @@ LINE
   8
 0
  10
-266.5
+434.73288943058486
  20
-268.73039
+296.1312960000001
  30
 0.0
  11
-266.5
+433.7328894305849
  21
-267.73039000000006
+296.1312960000001
  31
 0.0
   0
@@ -8365,15 +8499,15 @@ LINE
   8
 0
  10
-266.5
+413.7328894305849
  20
-267.73039000000006
+298.631296
  30
 0.0
  11
-267.50000000000006
+413.7328894305849
  21
-267.73039000000006
+297.6312960000001
  31
 0.0
   0
@@ -8383,15 +8517,15 @@ LINE
   8
 0
  10
-267.50000000000006
+413.7328894305849
  20
-267.73039000000006
+297.6312960000001
  30
 0.0
  11
-267.50000000000006
+414.7328894305849
  21
-268.73039
+297.6312960000001
  31
 0.0
   0
@@ -8401,15 +8535,15 @@ LINE
   8
 0
  10
-267.50000000000006
+414.7328894305849
  20
-268.73039
+297.6312960000001
  30
 0.0
  11
-266.5
+414.7328894305849
  21
-268.73039
+298.631296
  31
 0.0
   0
@@ -8419,15 +8553,15 @@ LINE
   8
 0
  10
-286.5
+414.7328894305849
  20
-268.73039
+298.631296
  30
 0.0
  11
-286.5
+413.7328894305849
  21
-267.73039000000006
+298.631296
  31
 0.0
   0
@@ -8437,15 +8571,15 @@ LINE
   8
 0
  10
-286.5
+433.7328894305849
  20
-267.73039000000006
+298.631296
  30
 0.0
  11
-287.5
+433.7328894305849
  21
-267.73039000000006
+297.6312960000001
  31
 0.0
   0
@@ -8455,15 +8589,15 @@ LINE
   8
 0
  10
-287.5
+433.7328894305849
  20
-267.73039000000006
+297.6312960000001
  30
 0.0
  11
-287.5
+434.73288943058486
  21
-268.73039
+297.6312960000001
  31
 0.0
   0
@@ -8473,15 +8607,15 @@ LINE
   8
 0
  10
-287.5
+434.73288943058486
  20
-268.73039
+297.6312960000001
  30
 0.0
  11
-286.5
+434.73288943058486
  21
-268.73039
+298.631296
  31
 0.0
   0
@@ -8491,15 +8625,15 @@ LINE
   8
 0
  10
-266.5
+434.73288943058486
  20
-271.23039
+298.631296
  30
 0.0
  11
-266.5
+433.7328894305849
  21
-270.23039000000006
+298.631296
  31
 0.0
   0
@@ -8509,15 +8643,15 @@ LINE
   8
 0
  10
-266.5
+413.7328894305849
  20
-270.23039000000006
+301.1312960000001
  30
 0.0
  11
-267.50000000000006
+413.7328894305849
  21
-270.23039000000006
+300.1312960000001
  31
 0.0
   0
@@ -8527,15 +8661,15 @@ LINE
   8
 0
  10
-267.50000000000006
+413.7328894305849
  20
-270.23039000000006
+300.1312960000001
  30
 0.0
  11
-267.50000000000006
+414.7328894305849
  21
-271.23039
+300.1312960000001
  31
 0.0
   0
@@ -8545,15 +8679,15 @@ LINE
   8
 0
  10
-267.50000000000006
+414.7328894305849
  20
-271.23039
+300.1312960000001
  30
 0.0
  11
-266.5
+414.7328894305849
  21
-271.23039
+301.1312960000001
  31
 0.0
   0
@@ -8563,15 +8697,15 @@ LINE
   8
 0
  10
-286.5
+414.7328894305849
  20
-271.23039
+301.1312960000001
  30
 0.0
  11
-286.5
+413.7328894305849
  21
-270.23039000000006
+301.1312960000001
  31
 0.0
   0
@@ -8581,15 +8715,15 @@ LINE
   8
 0
  10
-286.5
+433.7328894305849
  20
-270.23039000000006
+301.1312960000001
  30
 0.0
  11
-287.5
+433.7328894305849
  21
-270.23039000000006
+300.1312960000001
  31
 0.0
   0
@@ -8599,15 +8733,15 @@ LINE
   8
 0
  10
-287.5
+433.7328894305849
  20
-270.23039000000006
+300.1312960000001
  30
 0.0
  11
-287.5
+434.73288943058486
  21
-271.23039
+300.1312960000001
  31
 0.0
   0
@@ -8617,15 +8751,15 @@ LINE
   8
 0
  10
-287.5
+434.73288943058486
  20
-271.23039
+300.1312960000001
  30
 0.0
  11
-286.5
+434.73288943058486
  21
-271.23039
+301.1312960000001
  31
 0.0
   0
@@ -8635,15 +8769,15 @@ LINE
   8
 0
  10
-266.5
+434.73288943058486
  20
-273.73039000000006
+301.1312960000001
  30
 0.0
  11
-266.5
+433.7328894305849
  21
-272.73039000000006
+301.1312960000001
  31
 0.0
   0
@@ -8653,15 +8787,15 @@ LINE
   8
 0
  10
-266.5
+413.7328894305849
  20
-272.73039000000006
+303.631296
  30
 0.0
  11
-267.50000000000006
+413.7328894305849
  21
-272.73039000000006
+302.631296
  31
 0.0
   0
@@ -8671,15 +8805,15 @@ LINE
   8
 0
  10
-267.50000000000006
+413.7328894305849
  20
-272.73039000000006
+302.631296
  30
 0.0
  11
-267.50000000000006
+414.7328894305849
  21
-273.73039000000006
+302.631296
  31
 0.0
   0
@@ -8689,15 +8823,15 @@ LINE
   8
 0
  10
-267.50000000000006
+414.7328894305849
  20
-273.73039000000006
+302.631296
  30
 0.0
  11
-266.5
+414.7328894305849
  21
-273.73039000000006
+303.631296
  31
 0.0
   0
@@ -8707,15 +8841,15 @@ LINE
   8
 0
  10
-286.5
+414.7328894305849
  20
-273.73039000000006
+303.631296
  30
 0.0
  11
-286.5
+413.7328894305849
  21
-272.73039000000006
+303.631296
  31
 0.0
   0
@@ -8725,15 +8859,15 @@ LINE
   8
 0
  10
-286.5
+433.7328894305849
  20
-272.73039000000006
+303.631296
  30
 0.0
  11
-287.5
+433.7328894305849
  21
-272.73039000000006
+302.631296
  31
 0.0
   0
@@ -8743,15 +8877,15 @@ LINE
   8
 0
  10
-287.5
+433.7328894305849
  20
-272.73039000000006
+302.631296
  30
 0.0
  11
-287.5
+434.73288943058486
  21
-273.73039000000006
+302.631296
  31
 0.0
   0
@@ -8761,15 +8895,15 @@ LINE
   8
 0
  10
-287.5
+434.73288943058486
  20
-273.73039000000006
+302.631296
  30
 0.0
  11
-286.5
+434.73288943058486
  21
-273.73039000000006
+303.631296
  31
 0.0
   0
@@ -8779,15 +8913,15 @@ LINE
   8
 0
  10
-266.5
+434.73288943058486
  20
-276.23039000000006
+303.631296
  30
 0.0
  11
-266.5
+433.7328894305849
  21
-275.23039
+303.631296
  31
 0.0
   0
@@ -8797,15 +8931,15 @@ LINE
   8
 0
  10
-266.5
+413.7328894305849
  20
-275.23039
+306.1312960000001
  30
 0.0
  11
-267.50000000000006
+413.7328894305849
  21
-275.23039
+305.1312960000001
  31
 0.0
   0
@@ -8815,15 +8949,15 @@ LINE
   8
 0
  10
-267.50000000000006
+413.7328894305849
  20
-275.23039
+305.1312960000001
  30
 0.0
  11
-267.50000000000006
+414.7328894305849
  21
-276.23039000000006
+305.1312960000001
  31
 0.0
   0
@@ -8833,15 +8967,15 @@ LINE
   8
 0
  10
-267.50000000000006
+414.7328894305849
  20
-276.23039000000006
+305.1312960000001
  30
 0.0
  11
-266.5
+414.7328894305849
  21
-276.23039000000006
+306.1312960000001
  31
 0.0
   0
@@ -8851,15 +8985,15 @@ LINE
   8
 0
  10
-286.5
+414.7328894305849
  20
-276.23039000000006
+306.1312960000001
  30
 0.0
  11
-286.5
+413.7328894305849
  21
-275.23039
+306.1312960000001
  31
 0.0
   0
@@ -8869,15 +9003,15 @@ LINE
   8
 0
  10
-286.5
+433.7328894305849
  20
-275.23039
+306.1312960000001
  30
 0.0
  11
-287.5
+433.7328894305849
  21
-275.23039
+305.1312960000001
  31
 0.0
   0
@@ -8887,15 +9021,15 @@ LINE
   8
 0
  10
-287.5
+433.7328894305849
  20
-275.23039
+305.1312960000001
  30
 0.0
  11
-287.5
+434.73288943058486
  21
-276.23039000000006
+305.1312960000001
  31
 0.0
   0
@@ -8905,15 +9039,15 @@ LINE
   8
 0
  10
-287.5
+434.73288943058486
  20
-276.23039000000006
+305.1312960000001
  30
 0.0
  11
-286.5
+434.73288943058486
  21
-276.23039000000006
+306.1312960000001
  31
 0.0
   0
@@ -8923,15 +9057,15 @@ LINE
   8
 0
  10
-266.5
+434.73288943058486
  20
-278.73039
+306.1312960000001
  30
 0.0
  11
-266.5
+433.7328894305849
  21
-277.73039000000006
+306.1312960000001
  31
 0.0
   0
@@ -8941,15 +9075,15 @@ LINE
   8
 0
  10
-266.5
+413.7328894305849
  20
-277.73039000000006
+308.6312960000001
  30
 0.0
  11
-267.50000000000006
+413.7328894305849
  21
-277.73039000000006
+307.631296
  31
 0.0
   0
@@ -8959,15 +9093,15 @@ LINE
   8
 0
  10
-267.50000000000006
+413.7328894305849
  20
-277.73039000000006
+307.631296
  30
 0.0
  11
-267.50000000000006
+414.7328894305849
  21
-278.73039
+307.631296
  31
 0.0
   0
@@ -8977,15 +9111,15 @@ LINE
   8
 0
  10
-267.50000000000006
+414.7328894305849
  20
-278.73039
+307.631296
  30
 0.0
  11
-266.5
+414.7328894305849
  21
-278.73039
+308.6312960000001
  31
 0.0
   0
@@ -8995,15 +9129,15 @@ LINE
   8
 0
  10
-286.5
+414.7328894305849
  20
-278.73039
+308.6312960000001
  30
 0.0
  11
-286.5
+413.7328894305849
  21
-277.73039000000006
+308.6312960000001
  31
 0.0
   0
@@ -9013,15 +9147,15 @@ LINE
   8
 0
  10
-286.5
+433.7328894305849
  20
-277.73039000000006
+308.6312960000001
  30
 0.0
  11
-287.5
+433.7328894305849
  21
-277.73039000000006
+307.631296
  31
 0.0
   0
@@ -9031,15 +9165,15 @@ LINE
   8
 0
  10
-287.5
+433.7328894305849
  20
-277.73039000000006
+307.631296
  30
 0.0
  11
-287.5
+434.73288943058486
  21
-278.73039
+307.631296
  31
 0.0
   0
@@ -9049,15 +9183,15 @@ LINE
   8
 0
  10
-287.5
+434.73288943058486
  20
-278.73039
+307.631296
  30
 0.0
  11
-286.5
+434.73288943058486
  21
-278.73039
+308.6312960000001
  31
 0.0
   0
@@ -9067,15 +9201,15 @@ LINE
   8
 0
  10
-266.5
+434.73288943058486
  20
-281.23039000000006
+308.6312960000001
  30
 0.0
  11
-266.5
+433.7328894305849
  21
-280.23039
+308.6312960000001
  31
 0.0
   0
@@ -9085,15 +9219,15 @@ LINE
   8
 0
  10
-266.5
+413.7328894305849
  20
-280.23039
+311.1312960000001
  30
 0.0
  11
-267.50000000000006
+413.7328894305849
  21
-280.23039
+310.1312960000001
  31
 0.0
   0
@@ -9103,15 +9237,15 @@ LINE
   8
 0
  10
-267.50000000000006
+413.7328894305849
  20
-280.23039
+310.1312960000001
  30
 0.0
  11
-267.50000000000006
+414.7328894305849
  21
-281.23039000000006
+310.1312960000001
  31
 0.0
   0
@@ -9121,15 +9255,15 @@ LINE
   8
 0
  10
-267.50000000000006
+414.7328894305849
  20
-281.23039000000006
+310.1312960000001
  30
 0.0
  11
-266.5
+414.7328894305849
  21
-281.23039000000006
+311.1312960000001
  31
 0.0
   0
@@ -9139,15 +9273,15 @@ LINE
   8
 0
  10
-286.5
+414.7328894305849
  20
-281.23039000000006
+311.1312960000001
  30
 0.0
  11
-286.5
+413.7328894305849
  21
-280.23039
+311.1312960000001
  31
 0.0
   0
@@ -9157,15 +9291,15 @@ LINE
   8
 0
  10
-286.5
+433.7328894305849
  20
-280.23039
+311.1312960000001
  30
 0.0
  11
-287.5
+433.7328894305849
  21
-280.23039
+310.1312960000001
  31
 0.0
   0
@@ -9175,15 +9309,15 @@ LINE
   8
 0
  10
-287.5
+433.7328894305849
  20
-280.23039
+310.1312960000001
  30
 0.0
  11
-287.5
+434.73288943058486
  21
-281.23039000000006
+310.1312960000001
  31
 0.0
   0
@@ -9193,15 +9327,15 @@ LINE
   8
 0
  10
-287.5
+434.73288943058486
  20
-281.23039000000006
+310.1312960000001
  30
 0.0
  11
-286.5
+434.73288943058486
  21
-281.23039000000006
+311.1312960000001
  31
 0.0
   0
@@ -9211,15 +9345,15 @@ LINE
   8
 0
  10
-266.5
+434.73288943058486
  20
-283.73039
+311.1312960000001
  30
 0.0
  11
-266.5
+433.7328894305849
  21
-282.73039000000006
+311.1312960000001
  31
 0.0
   0
@@ -9229,15 +9363,15 @@ LINE
   8
 0
  10
-266.5
+413.7328894305849
  20
-282.73039000000006
+313.6312960000001
  30
 0.0
  11
-267.50000000000006
+413.7328894305849
  21
-282.73039000000006
+312.631296
  31
 0.0
   0
@@ -9247,15 +9381,15 @@ LINE
   8
 0
  10
-267.50000000000006
+413.7328894305849
  20
-282.73039000000006
+312.631296
  30
 0.0
  11
-267.50000000000006
+414.7328894305849
  21
-283.73039
+312.631296
  31
 0.0
   0
@@ -9265,15 +9399,15 @@ LINE
   8
 0
  10
-267.50000000000006
+414.7328894305849
  20
-283.73039
+312.631296
  30
 0.0
  11
-266.5
+414.7328894305849
  21
-283.73039
+313.6312960000001
  31
 0.0
   0
@@ -9283,15 +9417,15 @@ LINE
   8
 0
  10
-286.5
+414.7328894305849
  20
-283.73039
+313.6312960000001
  30
 0.0
  11
-286.5
+413.7328894305849
  21
-282.73039000000006
+313.6312960000001
  31
 0.0
   0
@@ -9301,15 +9435,15 @@ LINE
   8
 0
  10
-286.5
+433.7328894305849
  20
-282.73039000000006
+313.6312960000001
  30
 0.0
  11
-287.5
+433.7328894305849
  21
-282.73039000000006
+312.631296
  31
 0.0
   0
@@ -9319,15 +9453,15 @@ LINE
   8
 0
  10
-287.5
+433.7328894305849
  20
-282.73039000000006
+312.631296
  30
 0.0
  11
-287.5
+434.73288943058486
  21
-283.73039
+312.631296
  31
 0.0
   0
@@ -9337,15 +9471,15 @@ LINE
   8
 0
  10
-287.5
+434.73288943058486
  20
-283.73039
+312.631296
  30
 0.0
  11
-286.5
+434.73288943058486
  21
-283.73039
+313.6312960000001
  31
 0.0
   0
@@ -9355,15 +9489,15 @@ LINE
   8
 0
  10
-266.5
+434.73288943058486
  20
-286.23039000000006
+313.6312960000001
  30
 0.0
  11
-266.5
+433.7328894305849
  21
-285.23039000000006
+313.6312960000001
  31
 0.0
   0
@@ -9373,15 +9507,15 @@ LINE
   8
 0
  10
-266.5
+413.7328894305849
  20
-285.23039000000006
+316.131296
  30
 0.0
  11
-267.50000000000006
+413.7328894305849
  21
-285.23039000000006
+315.1312960000001
  31
 0.0
   0
@@ -9391,15 +9525,15 @@ LINE
   8
 0
  10
-267.50000000000006
+413.7328894305849
  20
-285.23039000000006
+315.1312960000001
  30
 0.0
  11
-267.50000000000006
+414.7328894305849
  21
-286.23039000000006
+315.1312960000001
  31
 0.0
   0
@@ -9409,15 +9543,15 @@ LINE
   8
 0
  10
-267.50000000000006
+414.7328894305849
  20
-286.23039000000006
+315.1312960000001
  30
 0.0
  11
-266.5
+414.7328894305849
  21
-286.23039000000006
+316.131296
  31
 0.0
   0
@@ -9427,15 +9561,15 @@ LINE
   8
 0
  10
-286.5
+414.7328894305849
  20
-286.23039000000006
+316.131296
  30
 0.0
  11
-286.5
+413.7328894305849
  21
-285.23039000000006
+316.131296
  31
 0.0
   0
@@ -9445,15 +9579,15 @@ LINE
   8
 0
  10
-286.5
+433.7328894305849
  20
-285.23039000000006
+316.131296
  30
 0.0
  11
-287.5
+433.7328894305849
  21
-285.23039000000006
+315.1312960000001
  31
 0.0
   0
@@ -9463,15 +9597,15 @@ LINE
   8
 0
  10
-287.5
+433.7328894305849
  20
-285.23039000000006
+315.1312960000001
  30
 0.0
  11
-287.5
+434.73288943058486
  21
-286.23039000000006
+315.1312960000001
  31
 0.0
   0
@@ -9481,15 +9615,15 @@ LINE
   8
 0
  10
-287.5
+434.73288943058486
  20
-286.23039000000006
+315.1312960000001
  30
 0.0
  11
-286.5
+434.73288943058486
  21
-286.23039000000006
+316.131296
  31
 0.0
   0
@@ -9499,15 +9633,15 @@ LINE
   8
 0
  10
-266.5
+434.73288943058486
  20
-288.73039
+316.131296
  30
 0.0
  11
-266.5
+433.7328894305849
  21
-287.73039000000006
+316.131296
  31
 0.0
   0
@@ -9517,15 +9651,15 @@ LINE
   8
 0
  10
-266.5
+413.7328894305849
  20
-287.73039000000006
+318.6312960000001
  30
 0.0
  11
-267.50000000000006
+413.7328894305849
  21
-287.73039000000006
+317.6312960000001
  31
 0.0
   0
@@ -9535,15 +9669,15 @@ LINE
   8
 0
  10
-267.50000000000006
+413.7328894305849
  20
-287.73039000000006
+317.6312960000001
  30
 0.0
  11
-267.50000000000006
+414.7328894305849
  21
-288.73039
+317.6312960000001
  31
 0.0
   0
@@ -9553,15 +9687,15 @@ LINE
   8
 0
  10
-267.50000000000006
+414.7328894305849
  20
-288.73039
+317.6312960000001
  30
 0.0
  11
-266.5
+414.7328894305849
  21
-288.73039
+318.6312960000001
  31
 0.0
   0
@@ -9571,15 +9705,15 @@ LINE
   8
 0
  10
-285.50000000000006
+414.7328894305849
  20
-289.73039000000006
+318.6312960000001
  30
 0.0
  11
-285.50000000000006
+413.7328894305849
  21
-286.73039000000006
+318.6312960000001
  31
 0.0
   0
@@ -9589,15 +9723,15 @@ LINE
   8
 0
  10
-285.50000000000006
+433.7328894305849
  20
-286.73039000000006
+318.6312960000001
  30
 0.0
  11
-288.50000000000006
+433.7328894305849
  21
-286.73039000000006
+317.6312960000001
  31
 0.0
   0
@@ -9607,15 +9741,15 @@ LINE
   8
 0
  10
-288.50000000000006
+433.7328894305849
  20
-286.73039000000006
+317.6312960000001
  30
 0.0
  11
-288.50000000000006
+434.73288943058486
  21
-289.73039000000006
+317.6312960000001
  31
 0.0
   0
@@ -9625,15 +9759,15 @@ LINE
   8
 0
  10
-288.50000000000006
+434.73288943058486
  20
-289.73039000000006
+317.6312960000001
  30
 0.0
  11
-285.50000000000006
+434.73288943058486
  21
-289.73039000000006
+318.6312960000001
  31
 0.0
   0
@@ -9643,15 +9777,15 @@ LINE
   8
 0
  10
-281.25
+434.73288943058486
  20
-246.73039000000003
+318.6312960000001
  30
 0.0
  11
-272.75
+433.7328894305849
  21
-246.73039000000003
+318.6312960000001
  31
 0.0
   0
@@ -9661,15 +9795,15 @@ LINE
   8
 0
  10
-272.75
+413.7328894305849
  20
-246.73039000000003
+321.131296
  30
 0.0
  11
-272.75
+413.7328894305849
  21
-246.23039000000003
+320.1312960000001
  31
 0.0
   0
@@ -9679,15 +9813,15 @@ LINE
   8
 0
  10
-272.75
+413.7328894305849
  20
-246.23039000000003
+320.1312960000001
  30
 0.0
  11
-281.25
+414.7328894305849
  21
-246.23039000000003
+320.1312960000001
  31
 0.0
   0
@@ -9697,15 +9831,15 @@ LINE
   8
 0
  10
-281.25
+414.7328894305849
  20
-246.23039000000003
+320.1312960000001
  30
 0.0
  11
-281.25
+414.7328894305849
  21
-246.73039000000003
+321.131296
  31
 0.0
   0
@@ -9715,15 +9849,15 @@ LINE
   8
 0
  10
-272.75
+414.7328894305849
  20
-294.48039000000006
+321.131296
  30
 0.0
  11
-281.25
+413.7328894305849
  21
-294.48039000000006
+321.131296
  31
 0.0
   0
@@ -9733,15 +9867,15 @@ LINE
   8
 0
  10
-281.25
+433.7328894305849
  20
-294.48039000000006
+321.131296
  30
 0.0
  11
-281.25
+433.7328894305849
  21
-294.98039000000006
+320.1312960000001
  31
 0.0
   0
@@ -9751,15 +9885,15 @@ LINE
   8
 0
  10
-281.25
+433.7328894305849
  20
-294.98039000000006
+320.1312960000001
  30
 0.0
  11
-272.75
+434.73288943058486
  21
-294.98039000000006
+320.1312960000001
  31
 0.0
   0
@@ -9769,15 +9903,15 @@ LINE
   8
 0
  10
-272.75
+434.73288943058486
  20
-294.98039000000006
+320.1312960000001
  30
 0.0
  11
-272.75
+434.73288943058486
  21
-294.48039000000006
+321.131296
  31
 0.0
   0
@@ -9787,15 +9921,15 @@ LINE
   8
 0
  10
-257.5
+434.73288943058486
  20
-250.07129909090912
+321.131296
  30
 0.0
  11
-262.5
+433.7328894305849
  21
-250.07129909090912
+321.131296
  31
 0.0
   0
@@ -9805,15 +9939,15 @@ LINE
   8
 0
  10
-262.5
+413.7328894305849
  20
-250.07129909090912
+323.6312960000001
  30
 0.0
  11
-262.5
+413.7328894305849
  21
-261.16220818181824
+322.6312960000001
  31
 0.0
   0
@@ -9823,15 +9957,15 @@ LINE
   8
 0
  10
-262.5
+413.7328894305849
  20
-261.16220818181824
+322.6312960000001
  30
 0.0
  11
-257.5
+414.7328894305849
  21
-261.16220818181824
+322.6312960000001
  31
 0.0
   0
@@ -9841,15 +9975,15 @@ LINE
   8
 0
  10
-257.5
+414.7328894305849
  20
-277.7985718181818
+322.6312960000001
  30
 0.0
  11
-262.5
+414.7328894305849
  21
-277.7985718181818
+323.6312960000001
  31
 0.0
   0
@@ -9859,15 +9993,15 @@ LINE
   8
 0
  10
-262.5
+414.7328894305849
  20
-277.7985718181818
+323.6312960000001
  30
 0.0
  11
-262.5
+413.7328894305849
  21
-288.889480909091
+323.6312960000001
  31
 0.0
   0
@@ -9877,15 +10011,15 @@ LINE
   8
 0
  10
-262.5
+433.7328894305849
  20
-288.889480909091
+323.6312960000001
  30
 0.0
  11
-257.5
+433.7328894305849
  21
-288.889480909091
+322.6312960000001
  31
 0.0
   0
@@ -9895,15 +10029,15 @@ LINE
   8
 0
  10
-282.75
+433.7328894305849
  20
-222.98039000000003
+322.6312960000001
  30
 0.0
  11
-286.25
+434.73288943058486
  21
-222.98039000000003
+322.6312960000001
  31
 0.0
   0
@@ -9913,15 +10047,15 @@ LINE
   8
 0
  10
-286.25
+434.73288943058486
  20
-222.98039000000003
+322.6312960000001
  30
 0.0
  11
-286.25
+434.73288943058486
  21
-230.98039000000003
+323.6312960000001
  31
 0.0
   0
@@ -9931,115 +10065,105 @@ LINE
   8
 0
  10
-286.25
+434.73288943058486
  20
-230.98039000000003
+323.6312960000001
  30
 0.0
  11
-282.75
+433.7328894305849
  21
-230.98039000000003
+323.6312960000001
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
 0
  10
-653.0000000000001
+413.7328894305849
  20
-101.98039000000001
+326.131296
  30
 0.0
  11
-653.0000000000001
+413.7328894305849
  21
-351.98039
+325.131296
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
 0
  10
-593.0
+413.7328894305849
  20
-101.98039000000001
+325.131296
  30
 0.0
  11
-593.0
+414.7328894305849
  21
-351.98039
+325.131296
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
 0
  10
-623.0000000000001
+414.7328894305849
  20
-101.98039000000001
+325.131296
  30
 0.0
  11
-593.0
+414.7328894305849
  21
-101.98039000000001
+326.131296
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
 0
  10
-653.0000000000001
+414.7328894305849
  20
-101.98039000000001
+326.131296
  30
 0.0
  11
-623.0000000000001
+413.7328894305849
  21
-101.98039000000001
+326.131296
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
 0
  10
-623.0000000000001
+433.7328894305849
  20
--2.718556970648933e-07
+326.131296
  30
 0.0
  11
-593.0
+433.7328894305849
  21
-101.98039000000003
+325.131296
  31
 0.0
   0
@@ -10049,15 +10173,15 @@ LINE
   8
 0
  10
-577.4351669969384
+433.7328894305849
  20
-88.51883783587918
+325.131296
  30
 0.0
  11
-575.2175834984691
+434.73288943058486
  21
-92.82693910068978
+325.131296
  31
 0.0
   0
@@ -10067,55 +10191,51 @@ LINE
   8
 0
  10
-623.0000000000001
+434.73288943058486
  20
--2.718556970648933e-07
+325.131296
  30
 0.0
  11
-577.4351669969384
+434.73288943058486
  21
-88.51883783587918
+326.131296
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
 0
  10
-593.0
+434.73288943058486
  20
-101.98039000000001
+326.131296
  30
 0.0
  11
-575.2175834984691
+433.7328894305849
  21
-92.82693910068978
+326.131296
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
 0
  10
-593.0
+413.7328894305849
  20
-101.98039000000001
+328.6312960000001
  30
 0.0
  11
-573.0
+413.7328894305849
  21
-97.13504036550037
+327.6312960000001
  31
 0.0
   0
@@ -10125,55 +10245,51 @@ LINE
   8
 0
  10
-575.2175834984691
+413.7328894305849
  20
-92.82693910068978
+327.6312960000001
  30
 0.0
  11
-573.0
+414.7328894305849
  21
-97.13504036550037
+327.6312960000001
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
 0
  10
-573.0
+414.7328894305849
  20
-101.98039000000001
+327.6312960000001
  30
 0.0
  11
-573.0
+414.7328894305849
  21
-97.1350403655004
+328.6312960000001
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
 0
  10
-593.0
+414.7328894305849
  20
-101.98039000000001
+328.6312960000001
  30
 0.0
  11
-573.0
+413.7328894305849
  21
-101.98039000000001
+328.6312960000001
  31
 0.0
   0
@@ -10183,15 +10299,15 @@ LINE
   8
 0
  10
-571.3848834551669
+432.7328894305849
  20
-101.98039000000001
+329.6312960000001
  30
 0.0
  11
-573.0
+432.7328894305849
  21
-101.98039000000001
+326.631296
  31
 0.0
   0
@@ -10201,15 +10317,15 @@ LINE
   8
 0
  10
-571.3848834551669
+432.7328894305849
  20
-97.1350403655004
+326.631296
  30
 0.0
  11
-571.3848834551669
+435.7328894305849
  21
-101.98039000000001
+326.631296
  31
 0.0
   0
@@ -10219,75 +10335,69 @@ LINE
   8
 0
  10
-573.0
+435.7328894305849
  20
-97.1350403655004
+326.631296
  30
 0.0
  11
-571.3848834551669
+435.7328894305849
  21
-97.1350403655004
+329.6312960000001
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
 0
  10
-573.0
+435.7328894305849
  20
-351.98039
+329.6312960000001
  30
 0.0
  11
-593.0
+432.7328894305849
  21
-351.98039
+329.6312960000001
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
 0
  10
-573.0
+428.4828894305849
  20
-366.05164438473815
+286.6312960000001
  30
 0.0
  11
-593.0
+419.9828894305849
  21
-351.98039
+286.6312960000001
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
 0
  10
-573.0
+419.9828894305849
  20
-366.05164438473815
+286.6312960000001
  30
 0.0
  11
-573.0
+419.9828894305849
  21
-351.98039
+286.1312960000001
  31
 0.0
   0
@@ -10297,55 +10407,51 @@ LINE
   8
 0
  10
-573.0
+419.9828894305849
  20
-366.0516443847381
+286.1312960000001
  30
 0.0
  11
-586.2441561038441
+428.4828894305849
  21
-370.80480428705755
+286.1312960000001
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
 0
  10
-586.2441561038441
+428.4828894305849
  20
-370.80480428705755
+286.1312960000001
  30
 0.0
  11
-593.0
+428.4828894305849
  21
-351.98039
+286.6312960000001
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
 0
  10
-623.0000000000001
+419.9828894305849
  20
-383.99601118716436
+334.381296
  30
 0.0
  11
-593.0
+428.4828894305849
  21
-351.98039
+334.381296
  31
 0.0
   0
@@ -10355,15 +10461,15 @@ LINE
   8
 0
  10
-599.4883122076884
+428.4828894305849
  20
-375.55796418937695
+334.381296
  30
 0.0
  11
-623.0000000000001
+428.4828894305849
  21
-383.99601118716436
+334.881296
  31
 0.0
   0
@@ -10373,75 +10479,69 @@ LINE
   8
 0
  10
-586.2441561038441
+428.4828894305849
  20
-370.80480428705755
+334.881296
  30
 0.0
  11
-599.4883122076884
+419.9828894305849
  21
-375.55796418937695
+334.881296
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
 0
  10
-593.0
+419.9828894305849
  20
-351.98039
+334.881296
  30
 0.0
  11
-623.0000000000001
+419.9828894305849
  21
-351.98039
+334.381296
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
 0
  10
-623.0000000000001
+451.2328894305849
  20
-351.98039
+329.881296
  30
 0.0
  11
-653.0000000000001
+451.2328894305849
  21
-351.98039
+316.881296
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
 0
  10
-623.0000000000001
+451.2328894305849
  20
-383.99601118716436
+316.881296
  30
 0.0
  11
-653.0000000000001
+481.2328894305849
  21
-351.98039
+316.881296
  31
 0.0
   0
@@ -10451,15 +10551,15 @@ LINE
   8
 0
  10
-646.5116877923116
+481.2328894305849
  20
-375.55796418937695
+316.881296
  30
 0.0
  11
-659.7558438961557
+481.2328894305849
  21
-370.80480428705755
+329.881296
  31
 0.0
   0
@@ -10469,55 +10569,51 @@ LINE
   8
 0
  10
-623.0000000000001
+481.2328894305849
  20
-383.9960111871643
+329.881296
  30
 0.0
  11
-646.5116877923116
+451.2328894305849
  21
-375.55796418937695
+329.881296
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
 0
  10
-653.0000000000001
+458.30107124876673
  20
-351.98039
+284.381296
  30
 0.0
  11
-659.7558438961557
+446.89198033967585
  21
-370.80480428705755
+284.381296
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
 0
  10
-653.0000000000001
+446.89198033967585
  20
-351.98039000000006
+284.381296
  30
 0.0
  11
-673.0
+446.89198033967585
  21
-366.05164438473815
+283.8812960000001
  31
 0.0
   0
@@ -10527,55 +10623,51 @@ LINE
   8
 0
  10
-659.7558438961557
+446.89198033967585
  20
-370.8048042870576
+283.8812960000001
  30
 0.0
  11
-673.0
+458.30107124876673
  21
-366.05164438473815
+283.8812960000001
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
 0
  10
-673.0
+458.30107124876673
  20
-351.98039000000006
+283.8812960000001
  30
 0.0
  11
-673.0
+458.30107124876673
  21
-366.05164438473815
+284.381296
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
 0
  10
-653.0000000000001
+485.573798521494
  20
-351.98039000000006
+284.381296
  30
 0.0
  11
-673.0
+474.1647076124031
  21
-351.98039000000006
+284.381296
  31
 0.0
   0
@@ -10585,15 +10677,15 @@ LINE
   8
 0
  10
-677.690418128246
+474.1647076124031
  20
-351.98039000000006
+284.381296
  30
 0.0
  11
-673.0
+474.1647076124031
  21
-351.98039000000006
+283.8812960000001
  31
 0.0
   0
@@ -10603,15 +10695,15 @@ LINE
   8
 0
  10
-677.690418128246
+474.1647076124031
  20
-366.05164438473815
+283.8812960000001
  30
 0.0
  11
-677.690418128246
+485.573798521494
  21
-351.98039000000006
+283.8812960000001
  31
 0.0
   0
@@ -10621,15 +10713,15 @@ LINE
   8
 0
  10
-673.0
+485.573798521494
  20
-366.05164438473815
+283.8812960000001
  30
 0.0
  11
-677.690418128246
+485.573798521494
  21
-366.05164438473815
+284.381296
  31
 0.0
   0
@@ -10639,75 +10731,69 @@ LINE
   8
 0
  10
-673.0
+488.4828894305849
  20
-351.98039
+301.3131141818182
  30
 0.0
  11
-673.0000000000001
+488.4828894305849
  21
-101.98038999999997
+289.7222050909092
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
 0
  10
-673.0000000000001
+488.4828894305849
  20
-101.98038999999999
+289.7222050909092
  30
 0.0
  11
-653.0000000000001
+488.9828894305849
  21
-101.98038999999997
+289.7222050909092
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
 0
  10
-673.0000000000001
+488.9828894305849
  20
-97.13504036550036
+289.7222050909092
  30
 0.0
  11
-653.0000000000001
+488.9828894305849
  21
-101.98038999999997
+301.3131141818182
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
 0
  10
-673.0000000000001
+488.9828894305849
  20
-97.13504036550036
+301.3131141818182
  30
 0.0
  11
-673.0000000000001
+488.4828894305849
  21
-101.98038999999997
+301.3131141818182
  31
 0.0
   0
@@ -10717,55 +10803,51 @@ LINE
   8
 0
  10
-673.0000000000001
+488.4828894305849
  20
-97.13504036550036
+329.040386909091
  30
 0.0
  11
-670.782416501531
+488.4828894305849
  21
-92.82693910068974
+317.4494778181819
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
 0
  10
-670.782416501531
+488.4828894305849
  20
-92.82693910068974
+317.4494778181819
  30
 0.0
  11
-653.0000000000001
+488.9828894305849
  21
-101.98038999999997
+317.4494778181819
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
 0
  10
-623.0000000000002
+488.9828894305849
  20
--2.7185575390831223e-07
+317.4494778181819
  30
 0.0
  11
-653.0000000000001
+488.9828894305849
  21
-101.98038999999997
+329.040386909091
  31
 0.0
   0
@@ -10775,15 +10857,15 @@ LINE
   8
 0
  10
-668.5648330030618
+488.9828894305849
  20
-88.51883783587913
+329.040386909091
  30
 0.0
  11
-623.0000000000002
+488.4828894305849
  21
--2.7185575390831223e-07
+329.040386909091
  31
 0.0
   0
@@ -10793,15 +10875,15 @@ LINE
   8
 0
  10
-670.782416501531
+328.7328894305849
  20
-92.82693910068974
+292.1312960000001
  30
 0.0
  11
-668.5648330030618
+328.7328894305849
  21
-88.51883783587913
+289.131296
  31
 0.0
   0
@@ -10811,15 +10893,15 @@ LINE
   8
 0
  10
-674.6151165448334
+328.7328894305849
  20
-97.13504036550036
+289.131296
  30
 0.0
  11
-673.0000000000001
+331.7328894305849
  21
-97.13504036550036
+289.131296
  31
 0.0
   0
@@ -10829,15 +10911,15 @@ LINE
   8
 0
  10
-674.6151165448334
+331.7328894305849
  20
-101.98038999999997
+289.131296
  30
 0.0
  11
-674.6151165448334
+331.7328894305849
  21
-97.13504036550036
+292.1312960000001
  31
 0.0
   0
@@ -10847,15 +10929,15 @@ LINE
   8
 0
  10
-673.0000000000001
+331.7328894305849
  20
-101.98038999999997
+292.1312960000001
  30
 0.0
  11
-674.6151165448334
+328.7328894305849
  21
-101.98038999999997
+292.1312960000001
  31
 0.0
   0
@@ -10865,15 +10947,15 @@ LINE
   8
 0
  10
-568.3095818717541
+349.7328894305849
  20
-366.0516443847381
+291.1312960000001
  30
 0.0
  11
-573.0
+349.7328894305849
  21
-366.0516443847381
+290.131296
  31
 0.0
   0
@@ -10883,15 +10965,15 @@ LINE
   8
 0
  10
-568.3095818717541
+349.7328894305849
  20
-351.98039
+290.131296
  30
 0.0
  11
-568.3095818717541
+350.7328894305849
  21
-366.0516443847381
+290.131296
  31
 0.0
   0
@@ -10901,15 +10983,15 @@ LINE
   8
 0
  10
-573.0
+350.7328894305849
  20
-351.98039
+290.131296
  30
 0.0
  11
-568.3095818717541
+350.7328894305849
  21
-351.98039
+291.1312960000001
  31
 0.0
   0
@@ -10919,15 +11001,15 @@ LINE
   8
 0
  10
-573.0
+350.7328894305849
  20
-351.98039
+291.1312960000001
  30
 0.0
  11
-573.0
+349.7328894305849
  21
-351.98039
+291.1312960000001
  31
 0.0
   0
@@ -10937,15 +11019,15 @@ LINE
   8
 0
  10
-573.0
+329.73288943058486
  20
-251.98039000000003
+293.631296
  30
 0.0
  11
-573.0
+329.73288943058486
  21
-351.98039
+292.6312960000001
  31
 0.0
   0
@@ -10955,15 +11037,15 @@ LINE
   8
 0
  10
-573.0
+329.73288943058486
  20
-101.98039000000001
+292.6312960000001
  30
 0.0
  11
-573.0
+330.7328894305849
  21
-201.98039000000003
+292.6312960000001
  31
 0.0
   0
@@ -10973,75 +11055,69 @@ LINE
   8
 0
  10
-573.0
+330.7328894305849
  20
-101.98039000000001
+292.6312960000001
  30
 0.0
  11
-573.0
+330.7328894305849
  21
-101.98039000000001
+293.631296
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
 0
  10
-573.0
+330.7328894305849
  20
-251.98039000000003
+293.631296
  30
 0.0
  11
-543.0000000000001
+329.73288943058486
  21
-251.98039000000003
+293.631296
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
 0
  10
-543.0000000000001
+349.7328894305849
  20
-201.98039000000003
+293.631296
  30
 0.0
  11
-543.0000000000001
+349.7328894305849
  21
-251.98039000000003
+292.6312960000001
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
 0
  10
-543.0000000000001
+349.7328894305849
  20
-201.98039000000003
+292.6312960000001
  30
 0.0
  11
-573.0
+350.7328894305849
  21
-201.98039000000003
+292.6312960000001
  31
 0.0
   0
@@ -11051,15 +11127,15 @@ LINE
   8
 0
  10
-573.0
+350.7328894305849
  20
-261.98039
+292.6312960000001
  30
 0.0
  11
-573.0
+350.7328894305849
  21
-251.98039000000003
+293.631296
  31
 0.0
   0
@@ -11069,15 +11145,15 @@ LINE
   8
 0
  10
-543.0000000000001
+350.7328894305849
  20
-261.98039
+293.631296
  30
 0.0
  11
-573.0
+349.7328894305849
  21
-261.98039
+293.631296
  31
 0.0
   0
@@ -11087,75 +11163,69 @@ LINE
   8
 0
  10
-543.0000000000001
+329.73288943058486
  20
-251.98039000000003
+296.1312960000001
  30
 0.0
  11
-543.0000000000001
+329.73288943058486
  21
-261.98039
+295.1312960000001
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
 0
  10
-543.0000000000001
+329.73288943058486
  20
-251.98039000000003
+295.1312960000001
  30
 0.0
  11
-483.00000000000006
+330.7328894305849
  21
-251.98039
+295.1312960000001
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
 0
  10
-483.00000000000006
+330.7328894305849
  20
-251.98039
+295.1312960000001
  30
 0.0
  11
-483.00000000000006
+330.7328894305849
  21
-201.98039
+296.1312960000001
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
 0
  10
-483.00000000000006
+330.7328894305849
  20
-201.98039
+296.1312960000001
  30
 0.0
  11
-543.0000000000001
+329.73288943058486
  21
-201.98039000000003
+296.1312960000001
  31
 0.0
   0
@@ -11165,15 +11235,15 @@ LINE
   8
 0
  10
-483.00000000000006
+349.7328894305849
  20
-281.98039000000006
+296.1312960000001
  30
 0.0
  11
-543.0000000000001
+349.7328894305849
  21
-281.98039000000006
+295.1312960000001
  31
 0.0
   0
@@ -11183,15 +11253,15 @@ LINE
   8
 0
  10
-483.00000000000006
+349.7328894305849
  20
-251.98039
+295.1312960000001
  30
 0.0
  11
-483.00000000000006
+350.7328894305849
  21
-281.98039000000006
+295.1312960000001
  31
 0.0
   0
@@ -11201,35 +11271,33 @@ LINE
   8
 0
  10
-543.0000000000001
+350.7328894305849
  20
-281.98039000000006
+295.1312960000001
  30
 0.0
  11
-543.0000000000001
+350.7328894305849
  21
-251.98039000000003
+296.1312960000001
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
 0
  10
-483.00000000000006
+350.7328894305849
  20
-251.98039
+296.1312960000001
  30
 0.0
  11
-453.00000000000006
+349.7328894305849
  21
-251.98039
+296.1312960000001
  31
 0.0
   0
@@ -11239,15 +11307,15 @@ LINE
   8
 0
  10
-483.00000000000006
+329.73288943058486
  20
-201.98039
+298.631296
  30
 0.0
  11
-453.00000000000006
+329.73288943058486
  21
-201.98039
+297.6312960000001
  31
 0.0
   0
@@ -11257,15 +11325,15 @@ LINE
   8
 0
  10
-483.00000000000006
+329.73288943058486
  20
-261.98039
+297.6312960000001
  30
 0.0
  11
-483.00000000000006
+330.7328894305849
  21
-251.98039
+297.6312960000001
  31
 0.0
   0
@@ -11275,15 +11343,15 @@ LINE
   8
 0
  10
-453.00000000000006
+330.7328894305849
  20
-261.98038999999994
+297.6312960000001
  30
 0.0
  11
-483.00000000000006
+330.7328894305849
  21
-261.98039
+298.631296
  31
 0.0
   0
@@ -11293,15 +11361,15 @@ LINE
   8
 0
  10
-453.00000000000006
+330.7328894305849
  20
-251.98039
+298.631296
  30
 0.0
  11
-453.00000000000006
+329.73288943058486
  21
-261.98038999999994
+298.631296
  31
 0.0
   0
@@ -11311,15 +11379,15 @@ LINE
   8
 0
  10
-453.00000000000006
+349.7328894305849
  20
-101.98038999999999
+298.631296
  30
 0.0
  11
-453.00000000000006
+349.7328894305849
  21
-101.98038999999999
+297.6312960000001
  31
 0.0
   0
@@ -11329,15 +11397,15 @@ LINE
   8
 0
  10
-453.00000000000006
+349.7328894305849
  20
-201.98039
+297.6312960000001
  30
 0.0
  11
-453.00000000000006
+350.7328894305849
  21
-101.98038999999999
+297.6312960000001
  31
 0.0
   0
@@ -11347,15 +11415,15 @@ LINE
   8
 0
  10
-453.0
+350.7328894305849
  20
-351.98039
+297.6312960000001
  30
 0.0
  11
-453.00000000000006
+350.7328894305849
  21
-251.98039
+298.631296
  31
 0.0
   0
@@ -11365,15 +11433,15 @@ LINE
   8
 0
  10
-453.0
+350.7328894305849
  20
-351.98039
+298.631296
  30
 0.0
  11
-453.0
+349.7328894305849
  21
-351.98039
+298.631296
  31
 0.0
   0
@@ -11383,15 +11451,15 @@ LINE
   8
 0
  10
-443.0
+329.73288943058486
  20
-351.98039
+301.1312960000001
  30
 0.0
  11
-453.0
+329.73288943058486
  21
-351.98039
+300.1312960000001
  31
 0.0
   0
@@ -11401,15 +11469,15 @@ LINE
   8
 0
  10
-443.00000000000006
+329.73288943058486
  20
-101.98038999999999
+300.1312960000001
  30
 0.0
  11
-443.0
+330.7328894305849
  21
-351.98039
+300.1312960000001
  31
 0.0
   0
@@ -11419,35 +11487,33 @@ LINE
   8
 0
  10
-453.00000000000006
+330.7328894305849
  20
-101.98038999999999
+300.1312960000001
  30
 0.0
  11
-443.00000000000006
+330.7328894305849
  21
-101.98038999999999
+301.1312960000001
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
 0
  10
-483.00000000000006
+330.7328894305849
  20
-201.98039
+301.1312960000001
  30
 0.0
  11
-483.00000000000006
+329.73288943058486
  21
-171.98039
+301.1312960000001
  31
 0.0
   0
@@ -11457,15 +11523,15 @@ LINE
   8
 0
  10
-543.0000000000001
+349.7328894305849
  20
-171.98039000000003
+301.1312960000001
  30
 0.0
  11
-483.00000000000006
+349.7328894305849
  21
-171.98039
+300.1312960000001
  31
 0.0
   0
@@ -11475,15 +11541,15 @@ LINE
   8
 0
  10
-543.0000000000001
+349.7328894305849
  20
-201.98039000000003
+300.1312960000001
  30
 0.0
  11
-543.0000000000001
+350.7328894305849
  21
-171.98039000000003
+300.1312960000001
  31
 0.0
   0
@@ -11493,15 +11559,15 @@ LINE
   8
 0
  10
-473.00000000000006
+350.7328894305849
  20
-201.98039
+300.1312960000001
  30
 0.0
  11
-483.00000000000006
+350.7328894305849
  21
-201.98039
+301.1312960000001
  31
 0.0
   0
@@ -11511,15 +11577,15 @@ LINE
   8
 0
  10
-473.00000000000006
+350.7328894305849
  20
-171.98039
+301.1312960000001
  30
 0.0
  11
-473.00000000000006
+349.7328894305849
  21
-201.98039
+301.1312960000001
  31
 0.0
   0
@@ -11529,15 +11595,15 @@ LINE
   8
 0
  10
-483.00000000000006
+329.73288943058486
  20
-171.98039
+303.631296
  30
 0.0
  11
-473.00000000000006
+329.73288943058486
  21
-171.98039
+302.631296
  31
 0.0
   0
@@ -11547,15 +11613,15 @@ LINE
   8
 0
  10
-543.0000000000001
+329.73288943058486
  20
-191.98039000000003
+302.631296
  30
 0.0
  11
-543.0000000000001
+330.7328894305849
  21
-201.98039000000003
+302.631296
  31
 0.0
   0
@@ -11565,15 +11631,15 @@ LINE
   8
 0
  10
-573.0
+330.7328894305849
  20
-191.98039000000003
+302.631296
  30
 0.0
  11
-543.0000000000001
+330.7328894305849
  21
-191.98039000000003
+303.631296
  31
 0.0
   0
@@ -11583,15 +11649,15 @@ LINE
   8
 0
  10
-573.0
+330.7328894305849
  20
-201.98039000000003
+303.631296
  30
 0.0
  11
-573.0
+329.73288943058486
  21
-191.98039000000003
+303.631296
  31
 0.0
   0
@@ -11601,15 +11667,15 @@ LINE
   8
 0
  10
-578.1096961561617
+349.7328894305849
  20
-90.40140539540558
+303.631296
  30
 0.0
  11
-577.1416653841894
+349.7328894305849
  21
-92.28199956288073
+302.631296
  31
 0.0
   0
@@ -11619,15 +11685,15 @@ LINE
   8
 0
  10
-577.1416653841894
+349.7328894305849
  20
-92.28199956288073
+302.631296
  30
 0.0
  11
-576.6971049716511
+350.7328894305849
  21
-92.05316329039796
+302.631296
  31
 0.0
   0
@@ -11637,15 +11703,15 @@ LINE
   8
 0
  10
-576.6971049716511
+350.7328894305849
  20
-92.05316329039796
+302.631296
  30
 0.0
  11
-577.6651357436235
+350.7328894305849
  21
-90.17256912292281
+303.631296
  31
 0.0
   0
@@ -11655,15 +11721,15 @@ LINE
   8
 0
  10
-577.6651357436235
+350.7328894305849
  20
-90.17256912292281
+303.631296
  30
 0.0
  11
-578.1096961561617
+349.7328894305849
  21
-90.40140539540558
+303.631296
  31
 0.0
   0
@@ -11673,15 +11739,15 @@ LINE
   8
 0
  10
-571.7886625913752
+329.73288943058486
  20
-98.75015691033362
+306.1312960000001
  30
 0.0
  11
-572.5962208637918
+329.73288943058486
  21
-98.75015691033362
+305.1312960000001
  31
 0.0
   0
@@ -11691,15 +11757,15 @@ LINE
   8
 0
  10
-572.5962208637918
+329.73288943058486
  20
-98.75015691033362
+305.1312960000001
  30
 0.0
  11
-572.5962208637918
+330.7328894305849
  21
-100.36527345516681
+305.1312960000001
  31
 0.0
   0
@@ -11709,15 +11775,15 @@ LINE
   8
 0
  10
-572.5962208637918
+330.7328894305849
  20
-100.36527345516681
+305.1312960000001
  30
 0.0
  11
-571.7886625913752
+330.7328894305849
  21
-100.36527345516681
+306.1312960000001
  31
 0.0
   0
@@ -11727,15 +11793,15 @@ LINE
   8
 0
  10
-591.6963076508192
+330.7328894305849
  20
-368.7583986679128
+306.1312960000001
  30
 0.0
  11
-596.5816367092771
+329.73288943058486
  21
-370.5116813994232
+306.1312960000001
  31
 0.0
   0
@@ -11745,15 +11811,15 @@ LINE
   8
 0
  10
-596.5816367092771
+349.7328894305849
  20
-370.5116813994232
+306.1312960000001
  30
 0.0
  11
-596.4127406118731
+349.7328894305849
  21
-370.98229175659964
+305.1312960000001
  31
 0.0
   0
@@ -11763,15 +11829,15 @@ LINE
   8
 0
  10
-596.4127406118731
+349.7328894305849
  20
-370.98229175659964
+305.1312960000001
  30
 0.0
  11
-591.5274115534152
+350.7328894305849
  21
-369.2290090250893
+305.1312960000001
  31
 0.0
   0
@@ -11781,15 +11847,15 @@ LINE
   8
 0
  10
-591.5274115534152
+350.7328894305849
  20
-369.2290090250893
+305.1312960000001
  30
 0.0
  11
-591.6963076508192
+350.7328894305849
  21
-368.7583986679128
+306.1312960000001
  31
 0.0
   0
@@ -11799,15 +11865,15 @@ LINE
   8
 0
  10
-649.418363290723
+350.7328894305849
  20
-370.5116813994232
+306.1312960000001
  30
 0.0
  11
-654.3036923491809
+349.7328894305849
  21
-368.7583986679128
+306.1312960000001
  31
 0.0
   0
@@ -11817,15 +11883,15 @@ LINE
   8
 0
  10
-654.3036923491809
+329.73288943058486
  20
-368.7583986679128
+308.6312960000001
  30
 0.0
  11
-654.4725884465847
+329.73288943058486
  21
-369.2290090250893
+307.631296
  31
 0.0
   0
@@ -11835,15 +11901,15 @@ LINE
   8
 0
  10
-654.4725884465847
+329.73288943058486
  20
-369.2290090250893
+307.631296
  30
 0.0
  11
-649.587259388127
+330.7328894305849
  21
-370.98229175659964
+307.631296
  31
 0.0
   0
@@ -11853,15 +11919,15 @@ LINE
   8
 0
  10
-649.587259388127
+330.7328894305849
  20
-370.98229175659964
+307.631296
  30
 0.0
  11
-649.418363290723
+330.7328894305849
  21
-370.5116813994232
+308.6312960000001
  31
 0.0
   0
@@ -11871,15 +11937,15 @@ LINE
   8
 0
  10
-676.5178135961846
+330.7328894305849
  20
-361.3612262564921
+308.6312960000001
  30
 0.0
  11
-674.1726045320615
+329.73288943058486
  21
-361.3612262564921
+308.6312960000001
  31
 0.0
   0
@@ -11889,15 +11955,15 @@ LINE
   8
 0
  10
-674.1726045320615
+349.7328894305849
  20
-361.3612262564921
+308.6312960000001
  30
 0.0
  11
-674.1726045320615
+349.7328894305849
  21
-356.6708081282461
+307.631296
  31
 0.0
   0
@@ -11907,15 +11973,15 @@ LINE
   8
 0
  10
-674.1726045320615
+349.7328894305849
  20
-356.6708081282461
+307.631296
  30
 0.0
  11
-676.5178135961846
+350.7328894305849
  21
-356.6708081282461
+307.631296
  31
 0.0
   0
@@ -11925,15 +11991,15 @@ LINE
   8
 0
  10
-665.2500000000001
+350.7328894305849
  20
-140.69192846153842
+307.631296
  30
 0.0
  11
-665.2500000000001
+350.7328894305849
  21
-120.9611592307692
+308.6312960000001
  31
 0.0
   0
@@ -11943,15 +12009,15 @@ LINE
   8
 0
  10
-665.2500000000001
+350.7328894305849
  20
-120.9611592307692
+308.6312960000001
  30
 0.0
  11
-665.7500000000001
+349.7328894305849
  21
-120.9611592307692
+308.6312960000001
  31
 0.0
   0
@@ -11961,15 +12027,15 @@ LINE
   8
 0
  10
-665.7500000000001
+329.73288943058486
  20
-120.9611592307692
+311.1312960000001
  30
 0.0
  11
-665.7500000000001
+329.73288943058486
  21
-140.69192846153842
+310.1312960000001
  31
 0.0
   0
@@ -11979,15 +12045,15 @@ LINE
   8
 0
  10
-665.7500000000001
+329.73288943058486
  20
-140.69192846153842
+310.1312960000001
  30
 0.0
  11
-665.2500000000001
+330.7328894305849
  21
-140.69192846153842
+310.1312960000001
  31
 0.0
   0
@@ -11997,15 +12063,15 @@ LINE
   8
 0
  10
-665.2500000000001
+330.7328894305849
  20
-188.76885153846155
+310.1312960000001
  30
 0.0
  11
-665.2500000000001
+330.7328894305849
  21
-169.0380823076923
+311.1312960000001
  31
 0.0
   0
@@ -12015,15 +12081,15 @@ LINE
   8
 0
  10
-665.2500000000001
+330.7328894305849
  20
-169.0380823076923
+311.1312960000001
  30
 0.0
  11
-665.7500000000001
+329.73288943058486
  21
-169.0380823076923
+311.1312960000001
  31
 0.0
   0
@@ -12033,15 +12099,15 @@ LINE
   8
 0
  10
-665.7500000000001
+349.7328894305849
  20
-169.0380823076923
+311.1312960000001
  30
 0.0
  11
-665.7500000000001
+349.7328894305849
  21
-188.76885153846155
+310.1312960000001
  31
 0.0
   0
@@ -12051,15 +12117,15 @@ LINE
   8
 0
  10
-665.7500000000001
+349.7328894305849
  20
-188.76885153846155
+310.1312960000001
  30
 0.0
  11
-665.2500000000001
+350.7328894305849
  21
-188.76885153846155
+310.1312960000001
  31
 0.0
   0
@@ -12069,15 +12135,15 @@ LINE
   8
 0
  10
-665.2500000000001
+350.7328894305849
  20
-236.84577461538464
+310.1312960000001
  30
 0.0
  11
-665.2500000000001
+350.7328894305849
  21
-217.11500538461536
+311.1312960000001
  31
 0.0
   0
@@ -12087,15 +12153,15 @@ LINE
   8
 0
  10
-665.2500000000001
+350.7328894305849
  20
-217.11500538461536
+311.1312960000001
  30
 0.0
  11
-665.7500000000001
+349.7328894305849
  21
-217.1150053846154
+311.1312960000001
  31
 0.0
   0
@@ -12105,15 +12171,15 @@ LINE
   8
 0
  10
-665.7500000000001
+329.73288943058486
  20
-217.1150053846154
+313.6312960000001
  30
 0.0
  11
-665.7500000000001
+329.73288943058486
  21
-236.84577461538464
+312.631296
  31
 0.0
   0
@@ -12123,15 +12189,15 @@ LINE
   8
 0
  10
-665.7500000000001
+329.73288943058486
  20
-236.84577461538464
+312.631296
  30
 0.0
  11
-665.2500000000001
+330.7328894305849
  21
-236.84577461538464
+312.631296
  31
 0.0
   0
@@ -12141,15 +12207,15 @@ LINE
   8
 0
  10
-665.2500000000001
+330.7328894305849
  20
-284.9226976923077
+312.631296
  30
 0.0
  11
-665.2500000000001
+330.7328894305849
  21
-265.19192846153845
+313.6312960000001
  31
 0.0
   0
@@ -12159,15 +12225,15 @@ LINE
   8
 0
  10
-665.2500000000001
+330.7328894305849
  20
-265.19192846153845
+313.6312960000001
  30
 0.0
  11
-665.7500000000001
+329.73288943058486
  21
-265.19192846153845
+313.6312960000001
  31
 0.0
   0
@@ -12177,15 +12243,15 @@ LINE
   8
 0
  10
-665.7500000000001
+349.7328894305849
  20
-265.19192846153845
+313.6312960000001
  30
 0.0
  11
-665.7500000000001
+349.7328894305849
  21
-284.9226976923077
+312.631296
  31
 0.0
   0
@@ -12195,15 +12261,15 @@ LINE
   8
 0
  10
-665.7500000000001
+349.7328894305849
  20
-284.9226976923077
+312.631296
  30
 0.0
  11
-665.2500000000001
+350.7328894305849
  21
-284.9226976923077
+312.631296
  31
 0.0
   0
@@ -12213,15 +12279,15 @@ LINE
   8
 0
  10
-665.2500000000001
+350.7328894305849
  20
-332.99962076923083
+312.631296
  30
 0.0
  11
-665.2500000000001
+350.7328894305849
  21
-313.26885153846155
+313.6312960000001
  31
 0.0
   0
@@ -12231,15 +12297,15 @@ LINE
   8
 0
  10
-665.2500000000001
+350.7328894305849
  20
-313.26885153846155
+313.6312960000001
  30
 0.0
  11
-665.7500000000001
+349.7328894305849
  21
-313.26885153846155
+313.6312960000001
  31
 0.0
   0
@@ -12249,15 +12315,15 @@ LINE
   8
 0
  10
-665.7500000000001
+329.73288943058486
  20
-313.26885153846155
+316.131296
  30
 0.0
  11
-665.7500000000001
+329.73288943058486
  21
-332.99962076923083
+315.1312960000001
  31
 0.0
   0
@@ -12267,15 +12333,15 @@ LINE
   8
 0
  10
-665.7500000000001
+329.73288943058486
  20
-332.99962076923083
+315.1312960000001
  30
 0.0
  11
-665.2500000000001
+330.7328894305849
  21
-332.99962076923083
+315.1312960000001
  31
 0.0
   0
@@ -12285,15 +12351,15 @@ LINE
   8
 0
  10
-668.8583346158109
+330.7328894305849
  20
-92.2819995628807
+315.1312960000001
  30
 0.0
  11
-667.8903038438383
+330.7328894305849
  21
-90.40140539540555
+316.131296
  31
 0.0
   0
@@ -12303,15 +12369,15 @@ LINE
   8
 0
  10
-667.8903038438383
+330.7328894305849
  20
-90.40140539540555
+316.131296
  30
 0.0
  11
-668.3348642563766
+329.73288943058486
  21
-90.17256912292278
+316.131296
  31
 0.0
   0
@@ -12321,15 +12387,15 @@ LINE
   8
 0
  10
-668.3348642563766
+349.7328894305849
  20
-90.17256912292278
+316.131296
  30
 0.0
  11
-669.3028950283492
+349.7328894305849
  21
-92.05316329039792
+315.1312960000001
  31
 0.0
   0
@@ -12339,15 +12405,15 @@ LINE
   8
 0
  10
-669.3028950283492
+349.7328894305849
  20
-92.05316329039792
+315.1312960000001
  30
 0.0
  11
-668.8583346158109
+350.7328894305849
  21
-92.2819995628807
+315.1312960000001
  31
 0.0
   0
@@ -12357,15 +12423,15 @@ LINE
   8
 0
  10
-674.2113374086251
+350.7328894305849
  20
-100.36527345516676
+315.1312960000001
  30
 0.0
  11
-673.4037791362085
+350.7328894305849
  21
-100.36527345516676
+316.131296
  31
 0.0
   0
@@ -12375,15 +12441,15 @@ LINE
   8
 0
  10
-673.4037791362085
+350.7328894305849
  20
-100.36527345516676
+316.131296
  30
 0.0
  11
-673.4037791362085
+349.7328894305849
  21
-98.75015691033356
+316.131296
  31
 0.0
   0
@@ -12393,15 +12459,15 @@ LINE
   8
 0
  10
-673.4037791362085
+329.73288943058486
  20
-98.75015691033356
+318.6312960000001
  30
 0.0
  11
-674.2113374086251
+329.73288943058486
  21
-98.75015691033356
+317.6312960000001
  31
 0.0
   0
@@ -12411,15 +12477,15 @@ LINE
   8
 0
  10
-569.4821864038155
+329.73288943058486
  20
-356.67080812824605
+317.6312960000001
  30
 0.0
  11
-571.8273954679385
+330.7328894305849
  21
-356.67080812824605
+317.6312960000001
  31
 0.0
   0
@@ -12429,15 +12495,15 @@ LINE
   8
 0
  10
-571.8273954679385
+330.7328894305849
  20
-356.67080812824605
+317.6312960000001
  30
 0.0
  11
-571.8273954679385
+330.7328894305849
  21
-361.3612262564921
+318.6312960000001
  31
 0.0
   0
@@ -12447,15 +12513,15 @@ LINE
   8
 0
  10
-571.8273954679385
+330.7328894305849
  20
-361.3612262564921
+318.6312960000001
  30
 0.0
  11
-569.4821864038155
+329.73288943058486
  21
-361.3612262564921
+318.6312960000001
  31
 0.0
   0
@@ -12465,15 +12531,15 @@ LINE
   8
 0
  10
-553.0000000000001
+349.7328894305849
  20
-259.48039
+318.6312960000001
  30
 0.0
  11
-553.0000000000001
+349.7328894305849
  21
-254.48039000000003
+317.6312960000001
  31
 0.0
   0
@@ -12483,15 +12549,15 @@ LINE
   8
 0
  10
-553.0000000000001
+349.7328894305849
  20
-254.48039000000003
+317.6312960000001
  30
 0.0
  11
-563.0
+350.7328894305849
  21
-254.48039000000003
+317.6312960000001
  31
 0.0
   0
@@ -12501,15 +12567,15 @@ LINE
   8
 0
  10
-563.0
+350.7328894305849
  20
-254.48039000000003
+317.6312960000001
  30
 0.0
  11
-563.0
+350.7328894305849
  21
-259.48039
+318.6312960000001
  31
 0.0
   0
@@ -12519,15 +12585,15 @@ LINE
   8
 0
  10
-490.75000000000006
+350.7328894305849
  20
-261.73039
+318.6312960000001
  30
 0.0
  11
-490.75000000000006
+349.7328894305849
  21
-272.23039000000006
+318.6312960000001
  31
 0.0
   0
@@ -12537,15 +12603,15 @@ LINE
   8
 0
  10
-490.75000000000006
+329.73288943058486
  20
-272.23039000000006
+321.131296
  30
 0.0
  11
-490.25000000000006
+329.73288943058486
  21
-272.23039000000006
+320.1312960000001
  31
 0.0
   0
@@ -12555,15 +12621,15 @@ LINE
   8
 0
  10
-490.25000000000006
+329.73288943058486
  20
-272.23039000000006
+320.1312960000001
  30
 0.0
  11
-490.25000000000006
+330.7328894305849
  21
-261.73039
+320.1312960000001
  31
 0.0
   0
@@ -12573,15 +12639,15 @@ LINE
   8
 0
  10
-490.25000000000006
+330.7328894305849
  20
-261.73039
+320.1312960000001
  30
 0.0
  11
-490.75000000000006
+330.7328894305849
  21
-261.73039
+321.131296
  31
 0.0
   0
@@ -12591,15 +12657,15 @@ LINE
   8
 0
  10
-535.2500000000001
+330.7328894305849
  20
-272.23039000000006
+321.131296
  30
 0.0
  11
-535.2500000000001
+329.73288943058486
  21
-261.73039
+321.131296
  31
 0.0
   0
@@ -12609,15 +12675,15 @@ LINE
   8
 0
  10
-535.2500000000001
+349.7328894305849
  20
-261.73039
+321.131296
  30
 0.0
  11
-535.7500000000001
+349.7328894305849
  21
-261.73039
+320.1312960000001
  31
 0.0
   0
@@ -12627,15 +12693,15 @@ LINE
   8
 0
  10
-535.7500000000001
+349.7328894305849
  20
-261.73039
+320.1312960000001
  30
 0.0
  11
-535.7500000000001
+350.7328894305849
  21
-272.23039000000006
+320.1312960000001
  31
 0.0
   0
@@ -12645,15 +12711,15 @@ LINE
   8
 0
  10
-535.7500000000001
+350.7328894305849
  20
-272.23039000000006
+320.1312960000001
  30
 0.0
  11
-535.2500000000001
+350.7328894305849
  21
-272.23039000000006
+321.131296
  31
 0.0
   0
@@ -12663,15 +12729,15 @@ LINE
   8
 0
  10
-473.25
+350.7328894305849
  20
-209.73039
+321.131296
  30
 0.0
  11
-462.75000000000006
+349.7328894305849
  21
-209.73039
+321.131296
  31
 0.0
   0
@@ -12681,15 +12747,15 @@ LINE
   8
 0
  10
-462.75000000000006
+329.73288943058486
  20
-209.73039
+323.6312960000001
  30
 0.0
  11
-462.75000000000006
+329.73288943058486
  21
-209.23038999999997
+322.6312960000001
  31
 0.0
   0
@@ -12699,15 +12765,15 @@ LINE
   8
 0
  10
-462.75000000000006
+329.73288943058486
  20
-209.23038999999997
+322.6312960000001
  30
 0.0
  11
-473.25
+330.7328894305849
  21
-209.23038999999997
+322.6312960000001
  31
 0.0
   0
@@ -12717,15 +12783,15 @@ LINE
   8
 0
  10
-473.25
+330.7328894305849
  20
-209.23038999999997
+322.6312960000001
  30
 0.0
  11
-473.25
+330.7328894305849
  21
-209.73039
+323.6312960000001
  31
 0.0
   0
@@ -12735,15 +12801,15 @@ LINE
   8
 0
  10
-463.00000000000006
+330.7328894305849
  20
-259.48039
+323.6312960000001
  30
 0.0
  11
-463.00000000000006
+329.73288943058486
  21
-254.48039
+323.6312960000001
  31
 0.0
   0
@@ -12753,15 +12819,15 @@ LINE
   8
 0
  10
-463.00000000000006
+349.7328894305849
  20
-254.48039
+323.6312960000001
  30
 0.0
  11
-473.00000000000006
+349.7328894305849
  21
-254.48039
+322.6312960000001
  31
 0.0
   0
@@ -12771,15 +12837,15 @@ LINE
   8
 0
  10
-473.00000000000006
+349.7328894305849
  20
-254.48039
+322.6312960000001
  30
 0.0
  11
-473.00000000000006
+350.7328894305849
  21
-259.48039
+322.6312960000001
  31
 0.0
   0
@@ -12789,15 +12855,15 @@ LINE
   8
 0
  10
-445.50000000000006
+350.7328894305849
  20
-121.21115923076921
+322.6312960000001
  30
 0.0
  11
-445.50000000000006
+350.7328894305849
  21
-116.21115923076921
+323.6312960000001
  31
 0.0
   0
@@ -12807,15 +12873,15 @@ LINE
   8
 0
  10
-445.50000000000006
+350.7328894305849
  20
-116.21115923076921
+323.6312960000001
  30
 0.0
  11
-450.5
+349.7328894305849
  21
-121.21115923076921
+323.6312960000001
  31
 0.0
   0
@@ -12825,15 +12891,15 @@ LINE
   8
 0
  10
-450.5
+329.73288943058486
  20
-121.21115923076921
+326.131296
  30
 0.0
  11
-450.5
+329.73288943058486
  21
-140.44192846153842
+325.131296
  31
 0.0
   0
@@ -12843,15 +12909,15 @@ LINE
   8
 0
  10
-450.5
+329.73288943058486
  20
-140.44192846153842
+325.131296
  30
 0.0
  11
-445.50000000000006
+330.7328894305849
  21
-145.44192846153842
+325.131296
  31
 0.0
   0
@@ -12861,15 +12927,15 @@ LINE
   8
 0
  10
-445.50000000000006
+330.7328894305849
  20
-145.44192846153842
+325.131296
  30
 0.0
  11
-445.50000000000006
+330.7328894305849
  21
-140.44192846153842
+326.131296
  31
 0.0
   0
@@ -12879,15 +12945,15 @@ LINE
   8
 0
  10
-445.50000000000006
+330.7328894305849
  20
-169.2880823076923
+326.131296
  30
 0.0
  11
-445.50000000000006
+329.73288943058486
  21
-164.2880823076923
+326.131296
  31
 0.0
   0
@@ -12897,15 +12963,15 @@ LINE
   8
 0
  10
-445.50000000000006
+349.7328894305849
  20
-164.2880823076923
+326.131296
  30
 0.0
  11
-450.5
+349.7328894305849
  21
-169.2880823076923
+325.131296
  31
 0.0
   0
@@ -12915,15 +12981,15 @@ LINE
   8
 0
  10
-450.5
+349.7328894305849
  20
-169.2880823076923
+325.131296
  30
 0.0
  11
-450.5
+350.7328894305849
  21
-188.51885153846152
+325.131296
  31
 0.0
   0
@@ -12933,15 +12999,15 @@ LINE
   8
 0
  10
-450.5
+350.7328894305849
  20
-188.51885153846152
+325.131296
  30
 0.0
  11
-445.50000000000006
+350.7328894305849
  21
-193.51885153846152
+326.131296
  31
 0.0
   0
@@ -12951,15 +13017,15 @@ LINE
   8
 0
  10
-445.50000000000006
+350.7328894305849
  20
-193.51885153846152
+326.131296
  30
 0.0
  11
-445.50000000000006
+349.7328894305849
  21
-188.51885153846152
+326.131296
  31
 0.0
   0
@@ -12969,15 +13035,15 @@ LINE
   8
 0
  10
-445.50000000000006
+329.73288943058486
  20
-217.36500538461536
+328.6312960000001
  30
 0.0
  11
-445.50000000000006
+329.73288943058486
  21
-212.36500538461536
+327.6312960000001
  31
 0.0
   0
@@ -12987,15 +13053,15 @@ LINE
   8
 0
  10
-445.50000000000006
+329.73288943058486
  20
-212.36500538461536
+327.6312960000001
  30
 0.0
  11
-450.5
+330.7328894305849
  21
-217.36500538461536
+327.6312960000001
  31
 0.0
   0
@@ -13005,15 +13071,15 @@ LINE
   8
 0
  10
-450.5
+330.7328894305849
  20
-217.36500538461536
+327.6312960000001
  30
 0.0
  11
-450.5
+330.7328894305849
  21
-236.5957746153846
+328.6312960000001
  31
 0.0
   0
@@ -13023,15 +13089,15 @@ LINE
   8
 0
  10
-450.5
+330.7328894305849
  20
-236.5957746153846
+328.6312960000001
  30
 0.0
  11
-445.50000000000006
+329.73288943058486
  21
-241.5957746153846
+328.6312960000001
  31
 0.0
   0
@@ -13041,15 +13107,15 @@ LINE
   8
 0
  10
-445.50000000000006
+348.73288943058486
  20
-241.5957746153846
+329.6312960000001
  30
 0.0
  11
-445.50000000000006
+348.73288943058486
  21
-236.5957746153846
+326.631296
  31
 0.0
   0
@@ -13059,15 +13125,15 @@ LINE
   8
 0
  10
-445.50000000000006
+348.73288943058486
  20
-265.44192846153845
+326.631296
  30
 0.0
  11
-445.50000000000006
+351.7328894305849
  21
-260.44192846153845
+326.631296
  31
 0.0
   0
@@ -13077,15 +13143,15 @@ LINE
   8
 0
  10
-445.50000000000006
+351.7328894305849
  20
-260.44192846153845
+326.631296
  30
 0.0
  11
-450.5
+351.7328894305849
  21
-265.44192846153845
+329.6312960000001
  31
 0.0
   0
@@ -13095,15 +13161,15 @@ LINE
   8
 0
  10
-450.5
+351.7328894305849
  20
-265.44192846153845
+329.6312960000001
  30
 0.0
  11
-450.5
+348.73288943058486
  21
-284.6726976923077
+329.6312960000001
  31
 0.0
   0
@@ -13113,15 +13179,15 @@ LINE
   8
 0
  10
-450.5
+344.4828894305849
  20
-284.6726976923077
+286.6312960000001
  30
 0.0
  11
-445.50000000000006
+335.9828894305849
  21
-289.6726976923077
+286.6312960000001
  31
 0.0
   0
@@ -13131,15 +13197,15 @@ LINE
   8
 0
  10
-445.50000000000006
+335.9828894305849
  20
-289.6726976923077
+286.6312960000001
  30
 0.0
  11
-445.50000000000006
+335.9828894305849
  21
-284.6726976923077
+286.1312960000001
  31
 0.0
   0
@@ -13149,15 +13215,15 @@ LINE
   8
 0
  10
-445.50000000000006
+335.9828894305849
  20
-313.51885153846155
+286.1312960000001
  30
 0.0
  11
-445.50000000000006
+344.4828894305849
  21
-308.51885153846155
+286.1312960000001
  31
 0.0
   0
@@ -13167,15 +13233,15 @@ LINE
   8
 0
  10
-445.50000000000006
+344.4828894305849
  20
-308.51885153846155
+286.1312960000001
  30
 0.0
  11
-450.5
+344.4828894305849
  21
-313.51885153846155
+286.6312960000001
  31
 0.0
   0
@@ -13185,15 +13251,15 @@ LINE
   8
 0
  10
-450.5
+335.9828894305849
  20
-313.51885153846155
+334.381296
  30
 0.0
  11
-450.5
+344.4828894305849
  21
-332.7496207692308
+334.381296
  31
 0.0
   0
@@ -13203,15 +13269,15 @@ LINE
   8
 0
  10
-450.5
+344.4828894305849
  20
-332.7496207692308
+334.381296
  30
 0.0
  11
-445.50000000000006
+344.4828894305849
  21
-337.7496207692308
+334.881296
  31
 0.0
   0
@@ -13221,15 +13287,15 @@ LINE
   8
 0
  10
-445.50000000000006
+344.4828894305849
  20
-337.7496207692308
+334.881296
  30
 0.0
  11
-445.50000000000006
+335.9828894305849
  21
-332.7496207692308
+334.881296
  31
 0.0
   0
@@ -13239,15 +13305,15 @@ LINE
   8
 0
  10
-535.2500000000001
+335.9828894305849
  20
-192.23039000000003
+334.881296
  30
 0.0
  11
-535.2500000000001
+335.9828894305849
  21
-181.73039
+334.381296
  31
 0.0
   0
@@ -13257,15 +13323,15 @@ LINE
   8
 0
  10
-535.2500000000001
+320.73288943058486
  20
-181.73039
+289.9722050909092
  30
 0.0
  11
-535.7500000000001
+325.73288943058486
  21
-181.73039
+289.9722050909092
  31
 0.0
   0
@@ -13275,15 +13341,15 @@ LINE
   8
 0
  10
-535.7500000000001
+325.73288943058486
  20
-181.73039
+289.9722050909092
  30
 0.0
  11
-535.7500000000001
+325.73288943058486
  21
-192.23039000000003
+301.0631141818182
  31
 0.0
   0
@@ -13293,15 +13359,15 @@ LINE
   8
 0
  10
-535.7500000000001
+325.73288943058486
  20
-192.23039000000003
+301.0631141818182
  30
 0.0
  11
-535.2500000000001
+320.73288943058486
  21
-192.23039000000003
+301.0631141818182
  31
 0.0
   0
@@ -13311,15 +13377,15 @@ LINE
   8
 0
  10
-475.50000000000006
+320.73288943058486
  20
-181.98038999999997
+317.6994778181819
  30
 0.0
  11
-480.50000000000006
+325.73288943058486
  21
-181.98038999999997
+317.6994778181819
  31
 0.0
   0
@@ -13329,15 +13395,15 @@ LINE
   8
 0
  10
-480.50000000000006
+325.73288943058486
  20
-181.98038999999997
+317.6994778181819
  30
 0.0
  11
-480.50000000000006
+325.73288943058486
  21
-191.98039
+328.790386909091
  31
 0.0
   0
@@ -13347,15 +13413,15 @@ LINE
   8
 0
  10
-480.50000000000006
+325.73288943058486
  20
-191.98039
+328.790386909091
  30
 0.0
  11
-475.50000000000006
+320.73288943058486
  21
-191.98039
+328.790386909091
  31
 0.0
   0
@@ -13365,15 +13431,15 @@ LINE
   8
 0
  10
-563.0
+345.9828894305849
  20
-194.48039000000003
+262.881296
  30
 0.0
  11
-563.0
+349.4828894305849
  21
-199.48039000000003
+262.881296
  31
 0.0
   0
@@ -13383,15 +13449,15 @@ LINE
   8
 0
  10
-563.0
+349.4828894305849
  20
-199.48039000000003
+262.881296
  30
 0.0
  11
-553.0000000000001
+349.4828894305849
  21
-199.48039000000003
+270.8812960000001
  31
 0.0
   0
@@ -13401,15 +13467,15 @@ LINE
   8
 0
  10
-553.0000000000001
+349.4828894305849
  20
-199.48039000000003
+270.8812960000001
  30
 0.0
  11
-553.0000000000001
+345.9828894305849
  21
-194.48039000000003
+270.8812960000001
  31
 0.0
   0
diff --git a/rocolib/output/HouseboatWithServoMountAndStack/graph-lasercutter.svg b/rocolib/output/HouseboatWithServoMountAndStack/graph-lasercutter.svg
index efd035c77c041c1cff0b5640f3411c19511d992d..a2e9ab7f0595bc6f73a12ab2827fab6982bede91 100644
--- a/rocolib/output/HouseboatWithServoMountAndStack/graph-lasercutter.svg
+++ b/rocolib/output/HouseboatWithServoMountAndStack/graph-lasercutter.svg
@@ -1,691 +1,694 @@
 <?xml version="1.0" encoding="utf-8" ?>
-<svg xmlns="http://www.w3.org/2000/svg" xmlns:ev="http://www.w3.org/2001/xml-events" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="full" height="383.996011mm" version="1.1" viewBox="0.000000 0.000000 677.690418 383.996011" width="677.690418mm">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:ev="http://www.w3.org/2001/xml-events" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="full" height="457.260639mm" version="1.1" viewBox="0.000000 0.000000 496.232889 457.260639" width="496.232889mm">
   <defs/>
-  <line stroke="#000000" x1="70.00000000000001" x2="34.0" y1="214.98039000000003" y2="214.98039000000003"/>
-  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="70.00000000000001" x2="70.00000000000001" y1="214.98039000000003" y2="238.98039000000003"/>
-  <line stroke="#000000" x1="34.0" x2="70.00000000000001" y1="238.98039000000003" y2="238.98039000000003"/>
-  <line stroke="#000000" x1="70.00000000000001" x2="115.00000000000001" y1="238.98039000000003" y2="238.98039000000003"/>
-  <line stroke="#000000" x1="115.00000000000001" x2="70.00000000000001" y1="214.98039000000003" y2="214.98039000000003"/>
-  <line stroke="#000000" x1="120.00000000000001" x2="115.00000000000001" y1="214.98039000000003" y2="214.98039000000003"/>
-  <line stroke="#000000" x1="120.00000000000001" x2="120.00000000000001" y1="238.98039000000003" y2="214.98039000000003"/>
-  <line stroke="#000000" x1="115.00000000000001" x2="120.00000000000001" y1="238.98039000000003" y2="238.98039000000003"/>
-  <line stroke="#000000" x1="0.0" x2="34.0" y1="238.98039000000003" y2="238.98039000000003"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="34.0" x2="0.0" y1="214.98039000000003" y2="214.98039000000003"/>
-  <line stroke="#000000" x1="0.0" x2="0.0" y1="214.98039000000003" y2="141.98039000000003"/>
-  <line stroke="#000000" x1="0.0" x2="0.0" y1="248.98039000000003" y2="238.98039000000003"/>
-  <line stroke="#000000" x1="0.0" x2="0.0" y1="309.98039000000006" y2="309.98039000000006"/>
-  <line stroke="#000000" x1="0.0" x2="0.0" y1="141.98039000000003" y2="309.98039000000006"/>
-  <line stroke="#000000" x1="0.0" x2="0.0" y1="141.98039000000003" y2="141.98039000000003"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="36.138621999185304" x2="36.138621999185304" y1="248.98039000000003" y2="309.98039000000006"/>
-  <line stroke="#000000" x1="0.0" x2="36.138621999185304" y1="309.98039000000006" y2="309.98039000000006"/>
-  <line stroke="#000000" x1="36.138621999185304" x2="0.0" y1="248.98039000000003" y2="248.98039000000003"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="60.13862199918531" x2="60.13862199918531" y1="309.98039000000006" y2="248.98039000000003"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="60.13862199918531" x2="36.138621999185304" y1="309.98039000000006" y2="309.98039000000006"/>
-  <line stroke="#000000" x1="96.27724399837062" x2="60.13862199918531" y1="248.98039000000003" y2="248.98039000000003"/>
-  <line stroke="#000000" x1="60.13862199918531" x2="96.27724399837062" y1="309.98039000000006" y2="309.98039000000006"/>
-  <line stroke="#000000" x1="106.27724399837062" x2="96.27724399837062" y1="248.98039000000003" y2="248.98039000000003"/>
-  <line stroke="#000000" x1="106.27724399837062" x2="106.27724399837062" y1="309.98039000000006" y2="248.98039000000003"/>
-  <line stroke="#000000" x1="96.27724399837062" x2="106.27724399837062" y1="309.98039000000006" y2="309.98039000000006"/>
-  <line stroke="#000000" x1="60.13862199918531" x2="60.13862199918531" y1="319.98039" y2="309.98039000000006"/>
-  <line stroke="#000000" x1="36.138621999185304" x2="60.13862199918531" y1="319.98039" y2="319.98039"/>
-  <line stroke="#000000" x1="36.138621999185304" x2="36.138621999185304" y1="309.98039000000006" y2="319.98039"/>
-  <line stroke="#000000" x1="36.138621999185304" x2="36.138621999185304" y1="238.98039000000003" y2="248.98039000000003"/>
-  <line stroke="#000000" x1="60.13862199918531" x2="36.138621999185304" y1="238.98039000000003" y2="238.98039000000003"/>
-  <line stroke="#000000" x1="60.13862199918531" x2="60.13862199918531" y1="248.98039000000003" y2="238.98039000000003"/>
-  <line stroke="#000000" x1="34.0" x2="34.0" y1="214.98039000000003" y2="194.98039000000003"/>
-  <line stroke="#000000" x1="0.0" x2="0.0" y1="194.98039000000003" y2="214.98039000000003"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="34.0" x2="0.0" y1="194.98039000000003" y2="194.98039000000003"/>
-  <line stroke="#000000" x1="34.0" x2="34.0" y1="194.98039000000003" y2="170.98039000000003"/>
-  <line stroke="#000000" x1="0.0" x2="0.0" y1="170.98039000000003" y2="194.98039000000003"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="34.0" x2="0.0" y1="170.98039000000003" y2="170.98039000000003"/>
-  <line stroke="#000000" x1="34.0" x2="34.0" y1="170.98039000000003" y2="150.98039000000003"/>
-  <line stroke="#000000" x1="0.0" x2="0.0" y1="150.98039000000003" y2="170.98039000000003"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="0.0" x2="34.0" y1="150.98039000000003" y2="150.98039000000003"/>
-  <line stroke="#000000" x1="0.0" x2="0.0" y1="140.98039" y2="150.98039000000003"/>
-  <line stroke="#000000" x1="34.0" x2="0.0" y1="140.98039" y2="140.98039"/>
-  <line stroke="#000000" x1="34.0" x2="34.0" y1="150.98039000000003" y2="140.98039"/>
-  <line stroke="#888888" x1="118.75000000000001" x2="118.75000000000001" y1="230.98039000000003" y2="233.48039000000003"/>
-  <line stroke="#888888" x1="118.75000000000001" x2="116.25000000000001" y1="233.48039000000003" y2="230.98039000000003"/>
-  <line stroke="#888888" x1="116.25000000000001" x2="116.25000000000001" y1="230.98039000000003" y2="222.98039000000003"/>
-  <line stroke="#888888" x1="116.25000000000001" x2="118.75000000000001" y1="222.98039000000003" y2="220.48039"/>
-  <line stroke="#888888" x1="118.75000000000001" x2="118.75000000000001" y1="220.48039" y2="222.98039000000003"/>
-  <line stroke="#888888" x1="11.08333333333333" x2="22.916666666666668" y1="231.23039000000003" y2="231.23039000000003"/>
-  <line stroke="#888888" x1="22.916666666666668" x2="22.916666666666668" y1="231.23039000000003" y2="231.73039000000003"/>
-  <line stroke="#888888" x1="22.916666666666668" x2="11.08333333333333" y1="231.73039000000003" y2="231.73039000000003"/>
-  <line stroke="#888888" x1="11.08333333333333" x2="11.08333333333333" y1="231.73039000000003" y2="231.23039000000003"/>
-  <line stroke="#888888" x1="54.63862199918531" x2="54.63862199918531" y1="266.98039" y2="277.98039000000006"/>
-  <line stroke="#888888" x1="54.63862199918531" x2="41.63862199918531" y1="277.98039000000006" y2="277.98039000000006"/>
-  <line stroke="#888888" x1="41.63862199918531" x2="41.63862199918531" y1="277.98039000000006" y2="266.98039"/>
-  <line stroke="#888888" x1="41.63862199918531" x2="54.63862199918531" y1="266.98039" y2="266.98039"/>
-  <line stroke="#888888" x1="53.13862199918531" x2="53.13862199918531" y1="298.48039" y2="304.48039000000006"/>
-  <line stroke="#888888" x1="53.13862199918531" x2="43.13862199918531" y1="304.48039000000006" y2="304.48039000000006"/>
-  <line stroke="#888888" x1="43.13862199918531" x2="43.13862199918531" y1="304.48039000000006" y2="298.48039"/>
-  <line stroke="#888888" x1="43.13862199918531" x2="53.13862199918531" y1="298.48039" y2="298.48039"/>
-  <line stroke="#888888" x1="103.77724399837062" x2="98.77724399837062" y1="298.88948090909093" y2="298.88948090909093"/>
-  <line stroke="#888888" x1="98.77724399837062" x2="98.77724399837062" y1="298.88948090909093" y2="287.79857181818187"/>
-  <line stroke="#888888" x1="98.77724399837062" x2="103.77724399837062" y1="287.79857181818187" y2="287.79857181818187"/>
-  <line stroke="#888888" x1="103.77724399837062" x2="98.77724399837062" y1="271.16220818181824" y2="271.16220818181824"/>
-  <line stroke="#888888" x1="98.77724399837062" x2="98.77724399837062" y1="271.16220818181824" y2="260.0712990909091"/>
-  <line stroke="#888888" x1="98.77724399837062" x2="103.77724399837062" y1="260.0712990909091" y2="260.0712990909091"/>
-  <line stroke="#888888" x1="44.138621999185304" x2="44.138621999185304" y1="317.48039000000006" y2="312.48039000000006"/>
-  <line stroke="#888888" x1="44.138621999185304" x2="52.13862199918531" y1="312.48039000000006" y2="312.48039000000006"/>
-  <line stroke="#888888" x1="52.13862199918531" x2="52.13862199918531" y1="312.48039000000006" y2="317.48039000000006"/>
-  <line stroke="#888888" x1="52.13862199918531" x2="52.13862199918531" y1="241.48039000000003" y2="246.48039000000003"/>
-  <line stroke="#888888" x1="52.13862199918531" x2="44.138621999185304" y1="246.48039000000003" y2="246.48039000000003"/>
-  <line stroke="#888888" x1="44.138621999185304" x2="44.138621999185304" y1="246.48039000000003" y2="241.48039000000003"/>
-  <line stroke="#888888" x1="23.000000000000004" x2="23.000000000000004" y1="195.98039000000003" y2="199.98039"/>
-  <line stroke="#888888" x1="23.000000000000004" x2="11.000000000000002" y1="199.98039" y2="199.98039"/>
-  <line stroke="#888888" x1="11.000000000000002" x2="11.000000000000002" y1="199.98039" y2="195.98039000000003"/>
-  <line stroke="#888888" x1="11.000000000000002" x2="23.000000000000004" y1="195.98039000000003" y2="195.98039000000003"/>
-  <line stroke="#888888" x1="21.500000000000004" x2="21.500000000000004" y1="207.98039000000003" y2="211.98039000000003"/>
-  <line stroke="#888888" x1="21.500000000000004" x2="12.5" y1="211.98039000000003" y2="211.98039000000003"/>
-  <line stroke="#888888" x1="12.5" x2="12.5" y1="211.98039000000003" y2="207.98039000000003"/>
-  <line stroke="#888888" x1="12.5" x2="21.500000000000004" y1="207.98039000000003" y2="207.98039000000003"/>
-  <line stroke="#888888" x1="23.000000000000004" x2="23.000000000000004" y1="171.48039000000003" y2="194.48039000000003"/>
-  <line stroke="#888888" x1="23.000000000000004" x2="11.000000000000002" y1="194.48039000000003" y2="194.48039000000003"/>
-  <line stroke="#888888" x1="11.000000000000002" x2="11.000000000000002" y1="194.48039000000003" y2="171.48039000000003"/>
-  <line stroke="#888888" x1="11.000000000000002" x2="23.000000000000004" y1="171.48039000000003" y2="171.48039000000003"/>
-  <line stroke="#888888" x1="23.000000000000004" x2="23.000000000000004" y1="165.98039" y2="169.98039000000003"/>
-  <line stroke="#888888" x1="23.000000000000004" x2="11.000000000000002" y1="169.98039000000003" y2="169.98039000000003"/>
-  <line stroke="#888888" x1="11.000000000000002" x2="11.000000000000002" y1="169.98039000000003" y2="165.98039"/>
-  <line stroke="#888888" x1="11.000000000000002" x2="23.000000000000004" y1="165.98039" y2="165.98039"/>
-  <line stroke="#888888" x1="22.666666666666668" x2="22.666666666666668" y1="143.48039" y2="148.48039000000003"/>
-  <line stroke="#888888" x1="22.666666666666668" x2="11.33333333333333" y1="148.48039000000003" y2="148.48039000000003"/>
-  <line stroke="#888888" x1="11.33333333333333" x2="11.33333333333333" y1="148.48039000000003" y2="143.48039"/>
-  <line stroke="#000000" x1="200.0" x2="164.0" y1="214.98039000000003" y2="214.98039000000003"/>
-  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="200.0" x2="200.0" y1="214.98039000000003" y2="238.98039000000003"/>
-  <line stroke="#000000" x1="164.0" x2="200.0" y1="238.98039000000003" y2="238.98039000000003"/>
-  <line stroke="#000000" x1="200.0" x2="245.00000000000003" y1="238.98039000000003" y2="238.98039000000003"/>
-  <line stroke="#000000" x1="245.00000000000003" x2="200.0" y1="214.98039000000003" y2="214.98039000000003"/>
-  <line stroke="#000000" x1="245.00000000000003" x2="245.00000000000003" y1="238.98039000000003" y2="214.98039000000003"/>
-  <line stroke="#000000" x1="164.0" x2="130.0" y1="214.98039000000003" y2="214.98039000000003"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="130.0" x2="164.0" y1="238.98039000000003" y2="238.98039000000003"/>
-  <line stroke="#000000" x1="130.0" x2="130.0" y1="204.98039000000003" y2="143.98039000000003"/>
-  <line stroke="#000000" x1="130.0" x2="130.0" y1="214.98039000000003" y2="204.98039000000003"/>
-  <line stroke="#000000" x1="130.0" x2="130.0" y1="311.98039" y2="238.98039000000003"/>
-  <line stroke="#000000" x1="130.0" x2="130.0" y1="311.98039" y2="311.98039"/>
-  <line stroke="#000000" x1="130.0" x2="130.0" y1="143.98039000000003" y2="311.98039"/>
-  <line stroke="#000000" x1="130.0" x2="130.0" y1="143.98039000000003" y2="143.98039000000003"/>
-  <line stroke="#000000" x1="130.0" x2="130.0" y1="238.98039000000003" y2="258.98039000000006"/>
-  <line stroke="#000000" x1="164.0" x2="164.0" y1="258.98039000000006" y2="238.98039000000003"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="130.0" x2="164.0" y1="258.98039000000006" y2="258.98039000000006"/>
-  <line stroke="#000000" x1="130.0" x2="130.0" y1="258.98039000000006" y2="282.98039000000006"/>
-  <line stroke="#000000" x1="164.0" x2="164.0" y1="282.98039000000006" y2="258.98039000000006"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="130.0" x2="164.0" y1="282.98039000000006" y2="282.98039000000006"/>
-  <line stroke="#000000" x1="130.0" x2="130.0" y1="282.98039000000006" y2="302.98039"/>
-  <line stroke="#000000" x1="164.0" x2="164.0" y1="302.98039" y2="282.98039000000006"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="164.0" x2="130.0" y1="302.98039" y2="302.98039"/>
-  <line stroke="#000000" x1="164.0" x2="164.0" y1="312.98039000000006" y2="302.98039"/>
-  <line stroke="#000000" x1="130.0" x2="164.0" y1="312.98039000000006" y2="312.98039000000006"/>
-  <line stroke="#000000" x1="130.0" x2="130.0" y1="302.98039" y2="312.98039000000006"/>
-  <line stroke="#888888" x1="241.00000000000003" x2="241.00000000000003" y1="231.23039000000003" y2="222.73039"/>
-  <line stroke="#888888" x1="241.00000000000003" x2="241.50000000000003" y1="222.73039" y2="222.73039"/>
-  <line stroke="#888888" x1="241.50000000000003" x2="241.50000000000003" y1="222.73039" y2="231.23039000000003"/>
-  <line stroke="#888888" x1="241.50000000000003" x2="241.00000000000003" y1="231.23039000000003" y2="231.23039000000003"/>
-  <line stroke="#888888" x1="152.91666666666669" x2="141.08333333333334" y1="222.73039" y2="222.73039"/>
-  <line stroke="#888888" x1="141.08333333333334" x2="141.08333333333334" y1="222.73039" y2="222.23039000000003"/>
-  <line stroke="#888888" x1="141.08333333333334" x2="152.91666666666669" y1="222.23039000000003" y2="222.23039000000003"/>
-  <line stroke="#888888" x1="152.91666666666669" x2="152.91666666666669" y1="222.23039000000003" y2="222.73039"/>
-  <line stroke="#888888" x1="122.25000000000001" x2="122.25000000000001" y1="166.41220818181822" y2="154.82129909090912"/>
-  <line stroke="#888888" x1="122.25000000000001" x2="122.75000000000001" y1="154.82129909090912" y2="154.82129909090912"/>
-  <line stroke="#888888" x1="122.75000000000001" x2="122.75000000000001" y1="154.82129909090912" y2="166.41220818181822"/>
-  <line stroke="#888888" x1="122.75000000000001" x2="122.25000000000001" y1="166.41220818181822" y2="166.41220818181822"/>
-  <line stroke="#888888" x1="122.25000000000001" x2="122.25000000000001" y1="194.13948090909093" y2="182.54857181818184"/>
-  <line stroke="#888888" x1="122.25000000000001" x2="122.75000000000001" y1="182.54857181818184" y2="182.54857181818184"/>
-  <line stroke="#888888" x1="122.75000000000001" x2="122.75000000000001" y1="182.54857181818184" y2="194.13948090909093"/>
-  <line stroke="#888888" x1="122.75000000000001" x2="122.25000000000001" y1="194.13948090909093" y2="194.13948090909093"/>
-  <line stroke="#888888" x1="141.0" x2="141.0" y1="257.98039000000006" y2="253.98039000000003"/>
-  <line stroke="#888888" x1="141.0" x2="153.00000000000003" y1="253.98039000000003" y2="253.98039000000003"/>
-  <line stroke="#888888" x1="153.00000000000003" x2="153.00000000000003" y1="253.98039000000003" y2="257.98039000000006"/>
-  <line stroke="#888888" x1="153.00000000000003" x2="141.0" y1="257.98039000000006" y2="257.98039000000006"/>
-  <line stroke="#888888" x1="142.50000000000003" x2="142.50000000000003" y1="245.98039000000003" y2="241.98039000000003"/>
-  <line stroke="#888888" x1="142.50000000000003" x2="151.50000000000003" y1="241.98039000000003" y2="241.98039000000003"/>
-  <line stroke="#888888" x1="151.50000000000003" x2="151.50000000000003" y1="241.98039000000003" y2="245.98039000000003"/>
-  <line stroke="#888888" x1="151.50000000000003" x2="142.50000000000003" y1="245.98039000000003" y2="245.98039000000003"/>
-  <line stroke="#888888" x1="141.0" x2="141.0" y1="282.48039000000006" y2="259.48039"/>
-  <line stroke="#888888" x1="141.0" x2="153.00000000000003" y1="259.48039" y2="259.48039"/>
-  <line stroke="#888888" x1="153.00000000000003" x2="153.00000000000003" y1="259.48039" y2="282.48039000000006"/>
-  <line stroke="#888888" x1="153.00000000000003" x2="141.0" y1="282.48039000000006" y2="282.48039000000006"/>
-  <line stroke="#888888" x1="141.0" x2="141.0" y1="287.98039" y2="283.98039"/>
-  <line stroke="#888888" x1="141.0" x2="153.00000000000003" y1="283.98039" y2="283.98039"/>
-  <line stroke="#888888" x1="153.00000000000003" x2="153.00000000000003" y1="283.98039" y2="287.98039"/>
-  <line stroke="#888888" x1="153.00000000000003" x2="141.0" y1="287.98039" y2="287.98039"/>
-  <line stroke="#888888" x1="141.33333333333334" x2="141.33333333333334" y1="310.48039000000006" y2="305.48039000000006"/>
-  <line stroke="#888888" x1="141.33333333333334" x2="152.66666666666666" y1="305.48039000000006" y2="305.48039000000006"/>
-  <line stroke="#888888" x1="152.66666666666666" x2="152.66666666666666" y1="305.48039000000006" y2="310.48039000000006"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="288.00000000000006" x2="349.00000000000006" y1="214.98039000000003" y2="214.98039000000003"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="349.00000000000006" x2="349.00000000000006" y1="214.98039000000003" y2="238.98039000000003"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="349.00000000000006" x2="288.00000000000006" y1="238.98039000000003" y2="238.98039000000003"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="288.00000000000006" x2="288.00000000000006" y1="238.98039000000003" y2="214.98039000000003"/>
-  <line stroke="#000000" x1="288.00000000000006" x2="288.00000000000006" y1="207.98039000000003" y2="214.98039000000003"/>
-  <line stroke="#000000" x1="348.00000000000006" x2="288.00000000000006" y1="207.98039000000003" y2="207.98039000000003"/>
-  <line stroke="#000000" x1="348.00000000000006" x2="348.00000000000006" y1="214.98039000000003" y2="207.98039000000003"/>
-  <line stroke="#000000" x1="356.00000000000006" x2="349.00000000000006" y1="214.98039000000003" y2="214.98039000000003"/>
-  <line stroke="#000000" x1="356.00000000000006" x2="356.00000000000006" y1="238.98039000000003" y2="214.98039000000003"/>
-  <line stroke="#000000" x1="349.00000000000006" x2="356.00000000000006" y1="238.98039000000003" y2="238.98039000000003"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="349.00000000000006" x2="349.00000000000006" y1="238.98039000000003" y2="299.98039000000006"/>
-  <line stroke="#000000" x1="289.00000000000006" x2="349.00000000000006" y1="299.98039000000006" y2="299.98039000000006"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="289.00000000000006" x2="289.00000000000006" y1="238.98039000000003" y2="299.98039000000006"/>
-  <line stroke="#000000" x1="373.0" x2="349.00000000000006" y1="238.98039000000003" y2="238.98039000000003"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="373.0" x2="373.0" y1="238.98039000000003" y2="299.98039000000006"/>
-  <line stroke="#000000" x1="349.00000000000006" x2="373.0" y1="299.98039000000006" y2="299.98039000000006"/>
-  <line stroke="#000000" x1="433.00000000000006" x2="373.0" y1="238.98039000000003" y2="238.98039000000003"/>
-  <line stroke="#000000" x1="433.00000000000006" x2="433.00000000000006" y1="299.98039000000006" y2="238.98039000000003"/>
-  <line stroke="#000000" x1="373.0" x2="433.00000000000006" y1="299.98039000000006" y2="299.98039000000006"/>
-  <line stroke="#000000" x1="289.00000000000006" x2="265.00000000000006" y1="238.98039000000003" y2="238.98039000000003"/>
-  <line stroke="#000000" x1="265.00000000000006" x2="289.00000000000006" y1="299.98039000000006" y2="299.98039000000006"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="265.00000000000006" x2="265.00000000000006" y1="299.98039000000006" y2="238.98039000000003"/>
-  <line stroke="#000000" x1="255.00000000000003" x2="265.00000000000006" y1="299.98039000000006" y2="299.98039000000006"/>
-  <line stroke="#000000" x1="255.00000000000003" x2="255.00000000000003" y1="238.98039000000003" y2="299.98039000000006"/>
-  <line stroke="#000000" x1="265.00000000000006" x2="255.00000000000003" y1="238.98039000000003" y2="238.98039000000003"/>
-  <line stroke="#000000" x1="281.00000000000006" x2="288.00000000000006" y1="238.98039000000003" y2="238.98039000000003"/>
-  <line stroke="#000000" x1="281.00000000000006" x2="281.00000000000006" y1="214.98039000000003" y2="238.98039000000003"/>
-  <line stroke="#000000" x1="288.00000000000006" x2="281.00000000000006" y1="214.98039000000003" y2="214.98039000000003"/>
-  <line stroke="#888888" x1="337.0909090909092" x2="340.59090909090907" y1="209.73039000000003" y2="209.73039000000003"/>
-  <line stroke="#888888" x1="340.59090909090907" x2="337.0909090909092" y1="209.73039000000003" y2="213.23039000000003"/>
-  <line stroke="#888888" x1="337.0909090909092" x2="326.18181818181824" y1="213.23039000000003" y2="213.23039000000003"/>
-  <line stroke="#888888" x1="326.18181818181824" x2="322.68181818181824" y1="213.23039000000003" y2="209.73039000000003"/>
-  <line stroke="#888888" x1="322.68181818181824" x2="326.18181818181824" y1="209.73039000000003" y2="209.73039000000003"/>
-  <line stroke="#888888" x1="309.81818181818187" x2="313.31818181818187" y1="209.73039000000003" y2="209.73039000000003"/>
-  <line stroke="#888888" x1="313.31818181818187" x2="309.81818181818187" y1="209.73039000000003" y2="213.23039000000003"/>
-  <line stroke="#888888" x1="309.81818181818187" x2="298.909090909091" y1="213.23039000000003" y2="213.23039000000003"/>
-  <line stroke="#888888" x1="298.909090909091" x2="295.409090909091" y1="213.23039000000003" y2="209.73039000000003"/>
-  <line stroke="#888888" x1="295.409090909091" x2="298.909090909091" y1="209.73039000000003" y2="209.73039000000003"/>
-  <line stroke="#888888" x1="354.25000000000006" x2="350.75" y1="230.98039000000003" y2="230.98039000000003"/>
-  <line stroke="#888888" x1="350.75" x2="350.75" y1="230.98039000000003" y2="222.98039000000003"/>
-  <line stroke="#888888" x1="350.75" x2="354.25000000000006" y1="222.98039000000003" y2="222.98039000000003"/>
-  <line stroke="#888888" x1="296.5" x2="296.5" y1="290.48039000000006" y2="272.48039000000006"/>
-  <line stroke="#888888" x1="296.5" x2="331.5" y1="272.48039000000006" y2="272.48039000000006"/>
-  <line stroke="#888888" x1="331.5" x2="331.5" y1="272.48039000000006" y2="290.48039000000006"/>
-  <line stroke="#888888" x1="331.5" x2="296.5" y1="290.48039000000006" y2="290.48039000000006"/>
-  <line stroke="#888888" x1="349.50000000000006" x2="349.50000000000006" y1="252.23039000000003" y2="249.23039000000003"/>
-  <line stroke="#888888" x1="349.50000000000006" x2="352.50000000000006" y1="249.23039000000003" y2="249.23039000000003"/>
-  <line stroke="#888888" x1="352.50000000000006" x2="352.50000000000006" y1="249.23039000000003" y2="252.23039000000003"/>
-  <line stroke="#888888" x1="352.50000000000006" x2="349.50000000000006" y1="252.23039000000003" y2="252.23039000000003"/>
-  <line stroke="#888888" x1="370.50000000000006" x2="370.50000000000006" y1="251.23039000000003" y2="250.23039000000003"/>
-  <line stroke="#888888" x1="370.50000000000006" x2="371.50000000000006" y1="250.23039000000003" y2="250.23039000000003"/>
-  <line stroke="#888888" x1="371.50000000000006" x2="371.50000000000006" y1="250.23039000000003" y2="251.23039000000003"/>
-  <line stroke="#888888" x1="371.50000000000006" x2="370.50000000000006" y1="251.23039000000003" y2="251.23039000000003"/>
-  <line stroke="#888888" x1="350.5" x2="350.5" y1="253.73039000000003" y2="252.73039000000003"/>
-  <line stroke="#888888" x1="350.5" x2="351.50000000000006" y1="252.73039000000003" y2="252.73039000000003"/>
-  <line stroke="#888888" x1="351.50000000000006" x2="351.50000000000006" y1="252.73039000000003" y2="253.73039000000003"/>
-  <line stroke="#888888" x1="351.50000000000006" x2="350.5" y1="253.73039000000003" y2="253.73039000000003"/>
-  <line stroke="#888888" x1="370.50000000000006" x2="370.50000000000006" y1="253.73039000000003" y2="252.73039000000003"/>
-  <line stroke="#888888" x1="370.50000000000006" x2="371.50000000000006" y1="252.73039000000003" y2="252.73039000000003"/>
-  <line stroke="#888888" x1="371.50000000000006" x2="371.50000000000006" y1="252.73039000000003" y2="253.73039000000003"/>
-  <line stroke="#888888" x1="371.50000000000006" x2="370.50000000000006" y1="253.73039000000003" y2="253.73039000000003"/>
-  <line stroke="#888888" x1="350.5" x2="350.5" y1="256.23039000000006" y2="255.23039000000003"/>
-  <line stroke="#888888" x1="350.5" x2="351.50000000000006" y1="255.23039000000003" y2="255.23039000000003"/>
-  <line stroke="#888888" x1="351.50000000000006" x2="351.50000000000006" y1="255.23039000000003" y2="256.23039000000006"/>
-  <line stroke="#888888" x1="351.50000000000006" x2="350.5" y1="256.23039000000006" y2="256.23039000000006"/>
-  <line stroke="#888888" x1="370.50000000000006" x2="370.50000000000006" y1="256.23039000000006" y2="255.23039000000003"/>
-  <line stroke="#888888" x1="370.50000000000006" x2="371.50000000000006" y1="255.23039000000003" y2="255.23039000000003"/>
-  <line stroke="#888888" x1="371.50000000000006" x2="371.50000000000006" y1="255.23039000000003" y2="256.23039000000006"/>
-  <line stroke="#888888" x1="371.50000000000006" x2="370.50000000000006" y1="256.23039000000006" y2="256.23039000000006"/>
-  <line stroke="#888888" x1="350.5" x2="350.5" y1="258.73039000000006" y2="257.73039"/>
-  <line stroke="#888888" x1="350.5" x2="351.50000000000006" y1="257.73039" y2="257.73039"/>
-  <line stroke="#888888" x1="351.50000000000006" x2="351.50000000000006" y1="257.73039" y2="258.73039000000006"/>
-  <line stroke="#888888" x1="351.50000000000006" x2="350.5" y1="258.73039000000006" y2="258.73039000000006"/>
-  <line stroke="#888888" x1="370.50000000000006" x2="370.50000000000006" y1="258.73039000000006" y2="257.73039"/>
-  <line stroke="#888888" x1="370.50000000000006" x2="371.50000000000006" y1="257.73039" y2="257.73039"/>
-  <line stroke="#888888" x1="371.50000000000006" x2="371.50000000000006" y1="257.73039" y2="258.73039000000006"/>
-  <line stroke="#888888" x1="371.50000000000006" x2="370.50000000000006" y1="258.73039000000006" y2="258.73039000000006"/>
-  <line stroke="#888888" x1="350.5" x2="350.5" y1="261.23039000000006" y2="260.23039000000006"/>
-  <line stroke="#888888" x1="350.5" x2="351.50000000000006" y1="260.23039000000006" y2="260.23039000000006"/>
-  <line stroke="#888888" x1="351.50000000000006" x2="351.50000000000006" y1="260.23039000000006" y2="261.23039000000006"/>
-  <line stroke="#888888" x1="351.50000000000006" x2="350.5" y1="261.23039000000006" y2="261.23039000000006"/>
-  <line stroke="#888888" x1="370.50000000000006" x2="370.50000000000006" y1="261.23039000000006" y2="260.23039000000006"/>
-  <line stroke="#888888" x1="370.50000000000006" x2="371.50000000000006" y1="260.23039000000006" y2="260.23039000000006"/>
-  <line stroke="#888888" x1="371.50000000000006" x2="371.50000000000006" y1="260.23039000000006" y2="261.23039000000006"/>
-  <line stroke="#888888" x1="371.50000000000006" x2="370.50000000000006" y1="261.23039000000006" y2="261.23039000000006"/>
-  <line stroke="#888888" x1="350.5" x2="350.5" y1="263.73039000000006" y2="262.73039000000006"/>
-  <line stroke="#888888" x1="350.5" x2="351.50000000000006" y1="262.73039000000006" y2="262.73039000000006"/>
-  <line stroke="#888888" x1="351.50000000000006" x2="351.50000000000006" y1="262.73039000000006" y2="263.73039000000006"/>
-  <line stroke="#888888" x1="351.50000000000006" x2="350.5" y1="263.73039000000006" y2="263.73039000000006"/>
-  <line stroke="#888888" x1="370.50000000000006" x2="370.50000000000006" y1="263.73039000000006" y2="262.73039000000006"/>
-  <line stroke="#888888" x1="370.50000000000006" x2="371.50000000000006" y1="262.73039000000006" y2="262.73039000000006"/>
-  <line stroke="#888888" x1="371.50000000000006" x2="371.50000000000006" y1="262.73039000000006" y2="263.73039000000006"/>
-  <line stroke="#888888" x1="371.50000000000006" x2="370.50000000000006" y1="263.73039000000006" y2="263.73039000000006"/>
-  <line stroke="#888888" x1="350.5" x2="350.5" y1="266.23039" y2="265.23039000000006"/>
-  <line stroke="#888888" x1="350.5" x2="351.50000000000006" y1="265.23039000000006" y2="265.23039000000006"/>
-  <line stroke="#888888" x1="351.50000000000006" x2="351.50000000000006" y1="265.23039000000006" y2="266.23039"/>
-  <line stroke="#888888" x1="351.50000000000006" x2="350.5" y1="266.23039" y2="266.23039"/>
-  <line stroke="#888888" x1="370.50000000000006" x2="370.50000000000006" y1="266.23039" y2="265.23039000000006"/>
-  <line stroke="#888888" x1="370.50000000000006" x2="371.50000000000006" y1="265.23039000000006" y2="265.23039000000006"/>
-  <line stroke="#888888" x1="371.50000000000006" x2="371.50000000000006" y1="265.23039000000006" y2="266.23039"/>
-  <line stroke="#888888" x1="371.50000000000006" x2="370.50000000000006" y1="266.23039" y2="266.23039"/>
-  <line stroke="#888888" x1="350.5" x2="350.5" y1="268.73039" y2="267.73039000000006"/>
-  <line stroke="#888888" x1="350.5" x2="351.50000000000006" y1="267.73039000000006" y2="267.73039000000006"/>
-  <line stroke="#888888" x1="351.50000000000006" x2="351.50000000000006" y1="267.73039000000006" y2="268.73039"/>
-  <line stroke="#888888" x1="351.50000000000006" x2="350.5" y1="268.73039" y2="268.73039"/>
-  <line stroke="#888888" x1="370.50000000000006" x2="370.50000000000006" y1="268.73039" y2="267.73039000000006"/>
-  <line stroke="#888888" x1="370.50000000000006" x2="371.50000000000006" y1="267.73039000000006" y2="267.73039000000006"/>
-  <line stroke="#888888" x1="371.50000000000006" x2="371.50000000000006" y1="267.73039000000006" y2="268.73039"/>
-  <line stroke="#888888" x1="371.50000000000006" x2="370.50000000000006" y1="268.73039" y2="268.73039"/>
-  <line stroke="#888888" x1="350.5" x2="350.5" y1="271.23039" y2="270.23039000000006"/>
-  <line stroke="#888888" x1="350.5" x2="351.50000000000006" y1="270.23039000000006" y2="270.23039000000006"/>
-  <line stroke="#888888" x1="351.50000000000006" x2="351.50000000000006" y1="270.23039000000006" y2="271.23039"/>
-  <line stroke="#888888" x1="351.50000000000006" x2="350.5" y1="271.23039" y2="271.23039"/>
-  <line stroke="#888888" x1="370.50000000000006" x2="370.50000000000006" y1="271.23039" y2="270.23039000000006"/>
-  <line stroke="#888888" x1="370.50000000000006" x2="371.50000000000006" y1="270.23039000000006" y2="270.23039000000006"/>
-  <line stroke="#888888" x1="371.50000000000006" x2="371.50000000000006" y1="270.23039000000006" y2="271.23039"/>
-  <line stroke="#888888" x1="371.50000000000006" x2="370.50000000000006" y1="271.23039" y2="271.23039"/>
-  <line stroke="#888888" x1="350.5" x2="350.5" y1="273.73039000000006" y2="272.73039000000006"/>
-  <line stroke="#888888" x1="350.5" x2="351.50000000000006" y1="272.73039000000006" y2="272.73039000000006"/>
-  <line stroke="#888888" x1="351.50000000000006" x2="351.50000000000006" y1="272.73039000000006" y2="273.73039000000006"/>
-  <line stroke="#888888" x1="351.50000000000006" x2="350.5" y1="273.73039000000006" y2="273.73039000000006"/>
-  <line stroke="#888888" x1="370.50000000000006" x2="370.50000000000006" y1="273.73039000000006" y2="272.73039000000006"/>
-  <line stroke="#888888" x1="370.50000000000006" x2="371.50000000000006" y1="272.73039000000006" y2="272.73039000000006"/>
-  <line stroke="#888888" x1="371.50000000000006" x2="371.50000000000006" y1="272.73039000000006" y2="273.73039000000006"/>
-  <line stroke="#888888" x1="371.50000000000006" x2="370.50000000000006" y1="273.73039000000006" y2="273.73039000000006"/>
-  <line stroke="#888888" x1="350.5" x2="350.5" y1="276.23039000000006" y2="275.23039"/>
-  <line stroke="#888888" x1="350.5" x2="351.50000000000006" y1="275.23039" y2="275.23039"/>
-  <line stroke="#888888" x1="351.50000000000006" x2="351.50000000000006" y1="275.23039" y2="276.23039000000006"/>
-  <line stroke="#888888" x1="351.50000000000006" x2="350.5" y1="276.23039000000006" y2="276.23039000000006"/>
-  <line stroke="#888888" x1="370.50000000000006" x2="370.50000000000006" y1="276.23039000000006" y2="275.23039"/>
-  <line stroke="#888888" x1="370.50000000000006" x2="371.50000000000006" y1="275.23039" y2="275.23039"/>
-  <line stroke="#888888" x1="371.50000000000006" x2="371.50000000000006" y1="275.23039" y2="276.23039000000006"/>
-  <line stroke="#888888" x1="371.50000000000006" x2="370.50000000000006" y1="276.23039000000006" y2="276.23039000000006"/>
-  <line stroke="#888888" x1="350.5" x2="350.5" y1="278.73039" y2="277.73039000000006"/>
-  <line stroke="#888888" x1="350.5" x2="351.50000000000006" y1="277.73039000000006" y2="277.73039000000006"/>
-  <line stroke="#888888" x1="351.50000000000006" x2="351.50000000000006" y1="277.73039000000006" y2="278.73039"/>
-  <line stroke="#888888" x1="351.50000000000006" x2="350.5" y1="278.73039" y2="278.73039"/>
-  <line stroke="#888888" x1="370.50000000000006" x2="370.50000000000006" y1="278.73039" y2="277.73039000000006"/>
-  <line stroke="#888888" x1="370.50000000000006" x2="371.50000000000006" y1="277.73039000000006" y2="277.73039000000006"/>
-  <line stroke="#888888" x1="371.50000000000006" x2="371.50000000000006" y1="277.73039000000006" y2="278.73039"/>
-  <line stroke="#888888" x1="371.50000000000006" x2="370.50000000000006" y1="278.73039" y2="278.73039"/>
-  <line stroke="#888888" x1="350.5" x2="350.5" y1="281.23039000000006" y2="280.23039"/>
-  <line stroke="#888888" x1="350.5" x2="351.50000000000006" y1="280.23039" y2="280.23039"/>
-  <line stroke="#888888" x1="351.50000000000006" x2="351.50000000000006" y1="280.23039" y2="281.23039000000006"/>
-  <line stroke="#888888" x1="351.50000000000006" x2="350.5" y1="281.23039000000006" y2="281.23039000000006"/>
-  <line stroke="#888888" x1="370.50000000000006" x2="370.50000000000006" y1="281.23039000000006" y2="280.23039"/>
-  <line stroke="#888888" x1="370.50000000000006" x2="371.50000000000006" y1="280.23039" y2="280.23039"/>
-  <line stroke="#888888" x1="371.50000000000006" x2="371.50000000000006" y1="280.23039" y2="281.23039000000006"/>
-  <line stroke="#888888" x1="371.50000000000006" x2="370.50000000000006" y1="281.23039000000006" y2="281.23039000000006"/>
-  <line stroke="#888888" x1="350.5" x2="350.5" y1="283.73039" y2="282.73039000000006"/>
-  <line stroke="#888888" x1="350.5" x2="351.50000000000006" y1="282.73039000000006" y2="282.73039000000006"/>
-  <line stroke="#888888" x1="351.50000000000006" x2="351.50000000000006" y1="282.73039000000006" y2="283.73039"/>
-  <line stroke="#888888" x1="351.50000000000006" x2="350.5" y1="283.73039" y2="283.73039"/>
-  <line stroke="#888888" x1="370.50000000000006" x2="370.50000000000006" y1="283.73039" y2="282.73039000000006"/>
-  <line stroke="#888888" x1="370.50000000000006" x2="371.50000000000006" y1="282.73039000000006" y2="282.73039000000006"/>
-  <line stroke="#888888" x1="371.50000000000006" x2="371.50000000000006" y1="282.73039000000006" y2="283.73039"/>
-  <line stroke="#888888" x1="371.50000000000006" x2="370.50000000000006" y1="283.73039" y2="283.73039"/>
-  <line stroke="#888888" x1="350.5" x2="350.5" y1="286.23039000000006" y2="285.23039000000006"/>
-  <line stroke="#888888" x1="350.5" x2="351.50000000000006" y1="285.23039000000006" y2="285.23039000000006"/>
-  <line stroke="#888888" x1="351.50000000000006" x2="351.50000000000006" y1="285.23039000000006" y2="286.23039000000006"/>
-  <line stroke="#888888" x1="351.50000000000006" x2="350.5" y1="286.23039000000006" y2="286.23039000000006"/>
-  <line stroke="#888888" x1="370.50000000000006" x2="370.50000000000006" y1="286.23039000000006" y2="285.23039000000006"/>
-  <line stroke="#888888" x1="370.50000000000006" x2="371.50000000000006" y1="285.23039000000006" y2="285.23039000000006"/>
-  <line stroke="#888888" x1="371.50000000000006" x2="371.50000000000006" y1="285.23039000000006" y2="286.23039000000006"/>
-  <line stroke="#888888" x1="371.50000000000006" x2="370.50000000000006" y1="286.23039000000006" y2="286.23039000000006"/>
-  <line stroke="#888888" x1="350.5" x2="350.5" y1="288.73039" y2="287.73039000000006"/>
-  <line stroke="#888888" x1="350.5" x2="351.50000000000006" y1="287.73039000000006" y2="287.73039000000006"/>
-  <line stroke="#888888" x1="351.50000000000006" x2="351.50000000000006" y1="287.73039000000006" y2="288.73039"/>
-  <line stroke="#888888" x1="351.50000000000006" x2="350.5" y1="288.73039" y2="288.73039"/>
-  <line stroke="#888888" x1="369.50000000000006" x2="369.50000000000006" y1="289.73039000000006" y2="286.73039000000006"/>
-  <line stroke="#888888" x1="369.50000000000006" x2="372.50000000000006" y1="286.73039000000006" y2="286.73039000000006"/>
-  <line stroke="#888888" x1="372.50000000000006" x2="372.50000000000006" y1="286.73039000000006" y2="289.73039000000006"/>
-  <line stroke="#888888" x1="372.50000000000006" x2="369.50000000000006" y1="289.73039000000006" y2="289.73039000000006"/>
-  <line stroke="#888888" x1="365.25000000000006" x2="356.75000000000006" y1="246.73039000000003" y2="246.73039000000003"/>
-  <line stroke="#888888" x1="356.75000000000006" x2="356.75000000000006" y1="246.73039000000003" y2="246.23039000000003"/>
-  <line stroke="#888888" x1="356.75000000000006" x2="365.25000000000006" y1="246.23039000000003" y2="246.23039000000003"/>
-  <line stroke="#888888" x1="365.25000000000006" x2="365.25000000000006" y1="246.23039000000003" y2="246.73039000000003"/>
-  <line stroke="#888888" x1="356.75000000000006" x2="365.25000000000006" y1="294.48039000000006" y2="294.48039000000006"/>
-  <line stroke="#888888" x1="365.25000000000006" x2="365.25000000000006" y1="294.48039000000006" y2="294.98039000000006"/>
-  <line stroke="#888888" x1="365.25000000000006" x2="356.75000000000006" y1="294.98039000000006" y2="294.98039000000006"/>
-  <line stroke="#888888" x1="356.75000000000006" x2="356.75000000000006" y1="294.98039000000006" y2="294.48039000000006"/>
-  <line stroke="#888888" x1="388.00000000000006" x2="388.00000000000006" y1="289.98039000000006" y2="276.98039000000006"/>
-  <line stroke="#888888" x1="388.00000000000006" x2="418.00000000000006" y1="276.98039000000006" y2="276.98039000000006"/>
-  <line stroke="#888888" x1="418.00000000000006" x2="418.00000000000006" y1="276.98039000000006" y2="289.98039000000006"/>
-  <line stroke="#888888" x1="418.00000000000006" x2="388.00000000000006" y1="289.98039000000006" y2="289.98039000000006"/>
-  <line stroke="#888888" x1="395.06818181818187" x2="383.6590909090909" y1="244.48039000000003" y2="244.48039000000003"/>
-  <line stroke="#888888" x1="383.6590909090909" x2="383.6590909090909" y1="244.48039000000003" y2="243.98039000000003"/>
-  <line stroke="#888888" x1="383.6590909090909" x2="395.06818181818187" y1="243.98039000000003" y2="243.98039000000003"/>
-  <line stroke="#888888" x1="395.06818181818187" x2="395.06818181818187" y1="243.98039000000003" y2="244.48039000000003"/>
-  <line stroke="#888888" x1="422.3409090909092" x2="410.93181818181824" y1="244.48039000000003" y2="244.48039000000003"/>
-  <line stroke="#888888" x1="410.93181818181824" x2="410.93181818181824" y1="244.48039000000003" y2="243.98039000000003"/>
-  <line stroke="#888888" x1="410.93181818181824" x2="422.3409090909092" y1="243.98039000000003" y2="243.98039000000003"/>
-  <line stroke="#888888" x1="422.3409090909092" x2="422.3409090909092" y1="243.98039000000003" y2="244.48039000000003"/>
-  <line stroke="#888888" x1="425.25000000000006" x2="425.25000000000006" y1="261.4122081818182" y2="249.82129909090912"/>
-  <line stroke="#888888" x1="425.25000000000006" x2="425.75000000000006" y1="249.82129909090912" y2="249.82129909090912"/>
-  <line stroke="#888888" x1="425.75000000000006" x2="425.75000000000006" y1="249.82129909090912" y2="261.4122081818182"/>
-  <line stroke="#888888" x1="425.75000000000006" x2="425.25000000000006" y1="261.4122081818182" y2="261.4122081818182"/>
-  <line stroke="#888888" x1="425.25000000000006" x2="425.25000000000006" y1="289.13948090909093" y2="277.5485718181818"/>
-  <line stroke="#888888" x1="425.25000000000006" x2="425.75000000000006" y1="277.5485718181818" y2="277.5485718181818"/>
-  <line stroke="#888888" x1="425.75000000000006" x2="425.75000000000006" y1="277.5485718181818" y2="289.13948090909093"/>
-  <line stroke="#888888" x1="425.75000000000006" x2="425.25000000000006" y1="289.13948090909093" y2="289.13948090909093"/>
-  <line stroke="#888888" x1="265.50000000000006" x2="265.50000000000006" y1="252.23039000000003" y2="249.23039000000003"/>
-  <line stroke="#888888" x1="265.50000000000006" x2="268.50000000000006" y1="249.23039000000003" y2="249.23039000000003"/>
-  <line stroke="#888888" x1="268.50000000000006" x2="268.50000000000006" y1="249.23039000000003" y2="252.23039000000003"/>
-  <line stroke="#888888" x1="268.50000000000006" x2="265.50000000000006" y1="252.23039000000003" y2="252.23039000000003"/>
-  <line stroke="#888888" x1="286.5" x2="286.5" y1="251.23039000000003" y2="250.23039000000003"/>
-  <line stroke="#888888" x1="286.5" x2="287.5" y1="250.23039000000003" y2="250.23039000000003"/>
-  <line stroke="#888888" x1="287.5" x2="287.5" y1="250.23039000000003" y2="251.23039000000003"/>
-  <line stroke="#888888" x1="287.5" x2="286.5" y1="251.23039000000003" y2="251.23039000000003"/>
-  <line stroke="#888888" x1="266.5" x2="266.5" y1="253.73039000000003" y2="252.73039000000003"/>
-  <line stroke="#888888" x1="266.5" x2="267.50000000000006" y1="252.73039000000003" y2="252.73039000000003"/>
-  <line stroke="#888888" x1="267.50000000000006" x2="267.50000000000006" y1="252.73039000000003" y2="253.73039000000003"/>
-  <line stroke="#888888" x1="267.50000000000006" x2="266.5" y1="253.73039000000003" y2="253.73039000000003"/>
-  <line stroke="#888888" x1="286.5" x2="286.5" y1="253.73039000000003" y2="252.73039000000003"/>
-  <line stroke="#888888" x1="286.5" x2="287.5" y1="252.73039000000003" y2="252.73039000000003"/>
-  <line stroke="#888888" x1="287.5" x2="287.5" y1="252.73039000000003" y2="253.73039000000003"/>
-  <line stroke="#888888" x1="287.5" x2="286.5" y1="253.73039000000003" y2="253.73039000000003"/>
-  <line stroke="#888888" x1="266.5" x2="266.5" y1="256.23039000000006" y2="255.23039000000003"/>
-  <line stroke="#888888" x1="266.5" x2="267.50000000000006" y1="255.23039000000003" y2="255.23039000000003"/>
-  <line stroke="#888888" x1="267.50000000000006" x2="267.50000000000006" y1="255.23039000000003" y2="256.23039000000006"/>
-  <line stroke="#888888" x1="267.50000000000006" x2="266.5" y1="256.23039000000006" y2="256.23039000000006"/>
-  <line stroke="#888888" x1="286.5" x2="286.5" y1="256.23039000000006" y2="255.23039000000003"/>
-  <line stroke="#888888" x1="286.5" x2="287.5" y1="255.23039000000003" y2="255.23039000000003"/>
-  <line stroke="#888888" x1="287.5" x2="287.5" y1="255.23039000000003" y2="256.23039000000006"/>
-  <line stroke="#888888" x1="287.5" x2="286.5" y1="256.23039000000006" y2="256.23039000000006"/>
-  <line stroke="#888888" x1="266.5" x2="266.5" y1="258.73039000000006" y2="257.73039"/>
-  <line stroke="#888888" x1="266.5" x2="267.50000000000006" y1="257.73039" y2="257.73039"/>
-  <line stroke="#888888" x1="267.50000000000006" x2="267.50000000000006" y1="257.73039" y2="258.73039000000006"/>
-  <line stroke="#888888" x1="267.50000000000006" x2="266.5" y1="258.73039000000006" y2="258.73039000000006"/>
-  <line stroke="#888888" x1="286.5" x2="286.5" y1="258.73039000000006" y2="257.73039"/>
-  <line stroke="#888888" x1="286.5" x2="287.5" y1="257.73039" y2="257.73039"/>
-  <line stroke="#888888" x1="287.5" x2="287.5" y1="257.73039" y2="258.73039000000006"/>
-  <line stroke="#888888" x1="287.5" x2="286.5" y1="258.73039000000006" y2="258.73039000000006"/>
-  <line stroke="#888888" x1="266.5" x2="266.5" y1="261.23039000000006" y2="260.23039000000006"/>
-  <line stroke="#888888" x1="266.5" x2="267.50000000000006" y1="260.23039000000006" y2="260.23039000000006"/>
-  <line stroke="#888888" x1="267.50000000000006" x2="267.50000000000006" y1="260.23039000000006" y2="261.23039000000006"/>
-  <line stroke="#888888" x1="267.50000000000006" x2="266.5" y1="261.23039000000006" y2="261.23039000000006"/>
-  <line stroke="#888888" x1="286.5" x2="286.5" y1="261.23039000000006" y2="260.23039000000006"/>
-  <line stroke="#888888" x1="286.5" x2="287.5" y1="260.23039000000006" y2="260.23039000000006"/>
-  <line stroke="#888888" x1="287.5" x2="287.5" y1="260.23039000000006" y2="261.23039000000006"/>
-  <line stroke="#888888" x1="287.5" x2="286.5" y1="261.23039000000006" y2="261.23039000000006"/>
-  <line stroke="#888888" x1="266.5" x2="266.5" y1="263.73039000000006" y2="262.73039000000006"/>
-  <line stroke="#888888" x1="266.5" x2="267.50000000000006" y1="262.73039000000006" y2="262.73039000000006"/>
-  <line stroke="#888888" x1="267.50000000000006" x2="267.50000000000006" y1="262.73039000000006" y2="263.73039000000006"/>
-  <line stroke="#888888" x1="267.50000000000006" x2="266.5" y1="263.73039000000006" y2="263.73039000000006"/>
-  <line stroke="#888888" x1="286.5" x2="286.5" y1="263.73039000000006" y2="262.73039000000006"/>
-  <line stroke="#888888" x1="286.5" x2="287.5" y1="262.73039000000006" y2="262.73039000000006"/>
-  <line stroke="#888888" x1="287.5" x2="287.5" y1="262.73039000000006" y2="263.73039000000006"/>
-  <line stroke="#888888" x1="287.5" x2="286.5" y1="263.73039000000006" y2="263.73039000000006"/>
-  <line stroke="#888888" x1="266.5" x2="266.5" y1="266.23039" y2="265.23039000000006"/>
-  <line stroke="#888888" x1="266.5" x2="267.50000000000006" y1="265.23039000000006" y2="265.23039000000006"/>
-  <line stroke="#888888" x1="267.50000000000006" x2="267.50000000000006" y1="265.23039000000006" y2="266.23039"/>
-  <line stroke="#888888" x1="267.50000000000006" x2="266.5" y1="266.23039" y2="266.23039"/>
-  <line stroke="#888888" x1="286.5" x2="286.5" y1="266.23039" y2="265.23039000000006"/>
-  <line stroke="#888888" x1="286.5" x2="287.5" y1="265.23039000000006" y2="265.23039000000006"/>
-  <line stroke="#888888" x1="287.5" x2="287.5" y1="265.23039000000006" y2="266.23039"/>
-  <line stroke="#888888" x1="287.5" x2="286.5" y1="266.23039" y2="266.23039"/>
-  <line stroke="#888888" x1="266.5" x2="266.5" y1="268.73039" y2="267.73039000000006"/>
-  <line stroke="#888888" x1="266.5" x2="267.50000000000006" y1="267.73039000000006" y2="267.73039000000006"/>
-  <line stroke="#888888" x1="267.50000000000006" x2="267.50000000000006" y1="267.73039000000006" y2="268.73039"/>
-  <line stroke="#888888" x1="267.50000000000006" x2="266.5" y1="268.73039" y2="268.73039"/>
-  <line stroke="#888888" x1="286.5" x2="286.5" y1="268.73039" y2="267.73039000000006"/>
-  <line stroke="#888888" x1="286.5" x2="287.5" y1="267.73039000000006" y2="267.73039000000006"/>
-  <line stroke="#888888" x1="287.5" x2="287.5" y1="267.73039000000006" y2="268.73039"/>
-  <line stroke="#888888" x1="287.5" x2="286.5" y1="268.73039" y2="268.73039"/>
-  <line stroke="#888888" x1="266.5" x2="266.5" y1="271.23039" y2="270.23039000000006"/>
-  <line stroke="#888888" x1="266.5" x2="267.50000000000006" y1="270.23039000000006" y2="270.23039000000006"/>
-  <line stroke="#888888" x1="267.50000000000006" x2="267.50000000000006" y1="270.23039000000006" y2="271.23039"/>
-  <line stroke="#888888" x1="267.50000000000006" x2="266.5" y1="271.23039" y2="271.23039"/>
-  <line stroke="#888888" x1="286.5" x2="286.5" y1="271.23039" y2="270.23039000000006"/>
-  <line stroke="#888888" x1="286.5" x2="287.5" y1="270.23039000000006" y2="270.23039000000006"/>
-  <line stroke="#888888" x1="287.5" x2="287.5" y1="270.23039000000006" y2="271.23039"/>
-  <line stroke="#888888" x1="287.5" x2="286.5" y1="271.23039" y2="271.23039"/>
-  <line stroke="#888888" x1="266.5" x2="266.5" y1="273.73039000000006" y2="272.73039000000006"/>
-  <line stroke="#888888" x1="266.5" x2="267.50000000000006" y1="272.73039000000006" y2="272.73039000000006"/>
-  <line stroke="#888888" x1="267.50000000000006" x2="267.50000000000006" y1="272.73039000000006" y2="273.73039000000006"/>
-  <line stroke="#888888" x1="267.50000000000006" x2="266.5" y1="273.73039000000006" y2="273.73039000000006"/>
-  <line stroke="#888888" x1="286.5" x2="286.5" y1="273.73039000000006" y2="272.73039000000006"/>
-  <line stroke="#888888" x1="286.5" x2="287.5" y1="272.73039000000006" y2="272.73039000000006"/>
-  <line stroke="#888888" x1="287.5" x2="287.5" y1="272.73039000000006" y2="273.73039000000006"/>
-  <line stroke="#888888" x1="287.5" x2="286.5" y1="273.73039000000006" y2="273.73039000000006"/>
-  <line stroke="#888888" x1="266.5" x2="266.5" y1="276.23039000000006" y2="275.23039"/>
-  <line stroke="#888888" x1="266.5" x2="267.50000000000006" y1="275.23039" y2="275.23039"/>
-  <line stroke="#888888" x1="267.50000000000006" x2="267.50000000000006" y1="275.23039" y2="276.23039000000006"/>
-  <line stroke="#888888" x1="267.50000000000006" x2="266.5" y1="276.23039000000006" y2="276.23039000000006"/>
-  <line stroke="#888888" x1="286.5" x2="286.5" y1="276.23039000000006" y2="275.23039"/>
-  <line stroke="#888888" x1="286.5" x2="287.5" y1="275.23039" y2="275.23039"/>
-  <line stroke="#888888" x1="287.5" x2="287.5" y1="275.23039" y2="276.23039000000006"/>
-  <line stroke="#888888" x1="287.5" x2="286.5" y1="276.23039000000006" y2="276.23039000000006"/>
-  <line stroke="#888888" x1="266.5" x2="266.5" y1="278.73039" y2="277.73039000000006"/>
-  <line stroke="#888888" x1="266.5" x2="267.50000000000006" y1="277.73039000000006" y2="277.73039000000006"/>
-  <line stroke="#888888" x1="267.50000000000006" x2="267.50000000000006" y1="277.73039000000006" y2="278.73039"/>
-  <line stroke="#888888" x1="267.50000000000006" x2="266.5" y1="278.73039" y2="278.73039"/>
-  <line stroke="#888888" x1="286.5" x2="286.5" y1="278.73039" y2="277.73039000000006"/>
-  <line stroke="#888888" x1="286.5" x2="287.5" y1="277.73039000000006" y2="277.73039000000006"/>
-  <line stroke="#888888" x1="287.5" x2="287.5" y1="277.73039000000006" y2="278.73039"/>
-  <line stroke="#888888" x1="287.5" x2="286.5" y1="278.73039" y2="278.73039"/>
-  <line stroke="#888888" x1="266.5" x2="266.5" y1="281.23039000000006" y2="280.23039"/>
-  <line stroke="#888888" x1="266.5" x2="267.50000000000006" y1="280.23039" y2="280.23039"/>
-  <line stroke="#888888" x1="267.50000000000006" x2="267.50000000000006" y1="280.23039" y2="281.23039000000006"/>
-  <line stroke="#888888" x1="267.50000000000006" x2="266.5" y1="281.23039000000006" y2="281.23039000000006"/>
-  <line stroke="#888888" x1="286.5" x2="286.5" y1="281.23039000000006" y2="280.23039"/>
-  <line stroke="#888888" x1="286.5" x2="287.5" y1="280.23039" y2="280.23039"/>
-  <line stroke="#888888" x1="287.5" x2="287.5" y1="280.23039" y2="281.23039000000006"/>
-  <line stroke="#888888" x1="287.5" x2="286.5" y1="281.23039000000006" y2="281.23039000000006"/>
-  <line stroke="#888888" x1="266.5" x2="266.5" y1="283.73039" y2="282.73039000000006"/>
-  <line stroke="#888888" x1="266.5" x2="267.50000000000006" y1="282.73039000000006" y2="282.73039000000006"/>
-  <line stroke="#888888" x1="267.50000000000006" x2="267.50000000000006" y1="282.73039000000006" y2="283.73039"/>
-  <line stroke="#888888" x1="267.50000000000006" x2="266.5" y1="283.73039" y2="283.73039"/>
-  <line stroke="#888888" x1="286.5" x2="286.5" y1="283.73039" y2="282.73039000000006"/>
-  <line stroke="#888888" x1="286.5" x2="287.5" y1="282.73039000000006" y2="282.73039000000006"/>
-  <line stroke="#888888" x1="287.5" x2="287.5" y1="282.73039000000006" y2="283.73039"/>
-  <line stroke="#888888" x1="287.5" x2="286.5" y1="283.73039" y2="283.73039"/>
-  <line stroke="#888888" x1="266.5" x2="266.5" y1="286.23039000000006" y2="285.23039000000006"/>
-  <line stroke="#888888" x1="266.5" x2="267.50000000000006" y1="285.23039000000006" y2="285.23039000000006"/>
-  <line stroke="#888888" x1="267.50000000000006" x2="267.50000000000006" y1="285.23039000000006" y2="286.23039000000006"/>
-  <line stroke="#888888" x1="267.50000000000006" x2="266.5" y1="286.23039000000006" y2="286.23039000000006"/>
-  <line stroke="#888888" x1="286.5" x2="286.5" y1="286.23039000000006" y2="285.23039000000006"/>
-  <line stroke="#888888" x1="286.5" x2="287.5" y1="285.23039000000006" y2="285.23039000000006"/>
-  <line stroke="#888888" x1="287.5" x2="287.5" y1="285.23039000000006" y2="286.23039000000006"/>
-  <line stroke="#888888" x1="287.5" x2="286.5" y1="286.23039000000006" y2="286.23039000000006"/>
-  <line stroke="#888888" x1="266.5" x2="266.5" y1="288.73039" y2="287.73039000000006"/>
-  <line stroke="#888888" x1="266.5" x2="267.50000000000006" y1="287.73039000000006" y2="287.73039000000006"/>
-  <line stroke="#888888" x1="267.50000000000006" x2="267.50000000000006" y1="287.73039000000006" y2="288.73039"/>
-  <line stroke="#888888" x1="267.50000000000006" x2="266.5" y1="288.73039" y2="288.73039"/>
-  <line stroke="#888888" x1="285.50000000000006" x2="285.50000000000006" y1="289.73039000000006" y2="286.73039000000006"/>
-  <line stroke="#888888" x1="285.50000000000006" x2="288.50000000000006" y1="286.73039000000006" y2="286.73039000000006"/>
-  <line stroke="#888888" x1="288.50000000000006" x2="288.50000000000006" y1="286.73039000000006" y2="289.73039000000006"/>
-  <line stroke="#888888" x1="288.50000000000006" x2="285.50000000000006" y1="289.73039000000006" y2="289.73039000000006"/>
-  <line stroke="#888888" x1="281.25" x2="272.75" y1="246.73039000000003" y2="246.73039000000003"/>
-  <line stroke="#888888" x1="272.75" x2="272.75" y1="246.73039000000003" y2="246.23039000000003"/>
-  <line stroke="#888888" x1="272.75" x2="281.25" y1="246.23039000000003" y2="246.23039000000003"/>
-  <line stroke="#888888" x1="281.25" x2="281.25" y1="246.23039000000003" y2="246.73039000000003"/>
-  <line stroke="#888888" x1="272.75" x2="281.25" y1="294.48039000000006" y2="294.48039000000006"/>
-  <line stroke="#888888" x1="281.25" x2="281.25" y1="294.48039000000006" y2="294.98039000000006"/>
-  <line stroke="#888888" x1="281.25" x2="272.75" y1="294.98039000000006" y2="294.98039000000006"/>
-  <line stroke="#888888" x1="272.75" x2="272.75" y1="294.98039000000006" y2="294.48039000000006"/>
-  <line stroke="#888888" x1="257.5" x2="262.5" y1="250.07129909090912" y2="250.07129909090912"/>
-  <line stroke="#888888" x1="262.5" x2="262.5" y1="250.07129909090912" y2="261.16220818181824"/>
-  <line stroke="#888888" x1="262.5" x2="257.5" y1="261.16220818181824" y2="261.16220818181824"/>
-  <line stroke="#888888" x1="257.5" x2="262.5" y1="277.7985718181818" y2="277.7985718181818"/>
-  <line stroke="#888888" x1="262.5" x2="262.5" y1="277.7985718181818" y2="288.889480909091"/>
-  <line stroke="#888888" x1="262.5" x2="257.5" y1="288.889480909091" y2="288.889480909091"/>
-  <line stroke="#888888" x1="282.75" x2="286.25" y1="222.98039000000003" y2="222.98039000000003"/>
-  <line stroke="#888888" x1="286.25" x2="286.25" y1="222.98039000000003" y2="230.98039000000003"/>
-  <line stroke="#888888" x1="286.25" x2="282.75" y1="230.98039000000003" y2="230.98039000000003"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="653.0000000000001" x2="653.0000000000001" y1="101.98039000000001" y2="351.98039"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="593.0" x2="593.0" y1="101.98039000000001" y2="351.98039"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="623.0000000000001" x2="593.0" y1="101.98039000000001" y2="101.98039000000001"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="653.0000000000001" x2="623.0000000000001" y1="101.98039000000001" y2="101.98039000000001"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="623.0000000000001" x2="593.0" y1="-2.718556970648933e-07" y2="101.98039000000003"/>
-  <line stroke="#000000" x1="577.4351669969384" x2="575.2175834984691" y1="88.51883783587918" y2="92.82693910068978"/>
-  <line stroke="#000000" x1="623.0000000000001" x2="577.4351669969384" y1="-2.718556970648933e-07" y2="88.51883783587918"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="593.0" x2="575.2175834984691" y1="101.98039000000001" y2="92.82693910068978"/>
-  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="593.0" x2="573.0" y1="101.98039000000001" y2="97.13504036550037"/>
-  <line stroke="#000000" x1="575.2175834984691" x2="573.0" y1="92.82693910068978" y2="97.13504036550037"/>
-  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="573.0" x2="573.0" y1="101.98039000000001" y2="97.1350403655004"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="593.0" x2="573.0" y1="101.98039000000001" y2="101.98039000000001"/>
-  <line stroke="#000000" x1="571.3848834551669" x2="573.0" y1="101.98039000000001" y2="101.98039000000001"/>
-  <line stroke="#000000" x1="571.3848834551669" x2="571.3848834551669" y1="97.1350403655004" y2="101.98039000000001"/>
-  <line stroke="#000000" x1="573.0" x2="571.3848834551669" y1="97.1350403655004" y2="97.1350403655004"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="573.0" x2="593.0" y1="351.98039" y2="351.98039"/>
-  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="573.0" x2="593.0" y1="366.05164438473815" y2="351.98039"/>
-  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="573.0" x2="573.0" y1="366.05164438473815" y2="351.98039"/>
-  <line stroke="#000000" x1="573.0" x2="586.2441561038441" y1="366.0516443847381" y2="370.80480428705755"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="586.2441561038441" x2="593.0" y1="370.80480428705755" y2="351.98039"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="623.0000000000001" x2="593.0" y1="383.99601118716436" y2="351.98039"/>
-  <line stroke="#000000" x1="599.4883122076884" x2="623.0000000000001" y1="375.55796418937695" y2="383.99601118716436"/>
-  <line stroke="#000000" x1="586.2441561038441" x2="599.4883122076884" y1="370.80480428705755" y2="375.55796418937695"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="593.0" x2="623.0000000000001" y1="351.98039" y2="351.98039"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="623.0000000000001" x2="653.0000000000001" y1="351.98039" y2="351.98039"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="623.0000000000001" x2="653.0000000000001" y1="383.99601118716436" y2="351.98039"/>
-  <line stroke="#000000" x1="646.5116877923116" x2="659.7558438961557" y1="375.55796418937695" y2="370.80480428705755"/>
-  <line stroke="#000000" x1="623.0000000000001" x2="646.5116877923116" y1="383.9960111871643" y2="375.55796418937695"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="653.0000000000001" x2="659.7558438961557" y1="351.98039" y2="370.80480428705755"/>
-  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="653.0000000000001" x2="673.0" y1="351.98039000000006" y2="366.05164438473815"/>
-  <line stroke="#000000" x1="659.7558438961557" x2="673.0" y1="370.8048042870576" y2="366.05164438473815"/>
-  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="673.0" x2="673.0" y1="351.98039000000006" y2="366.05164438473815"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="653.0000000000001" x2="673.0" y1="351.98039000000006" y2="351.98039000000006"/>
-  <line stroke="#000000" x1="677.690418128246" x2="673.0" y1="351.98039000000006" y2="351.98039000000006"/>
-  <line stroke="#000000" x1="677.690418128246" x2="677.690418128246" y1="366.05164438473815" y2="351.98039000000006"/>
-  <line stroke="#000000" x1="673.0" x2="677.690418128246" y1="366.05164438473815" y2="366.05164438473815"/>
-  <line stroke="#000000" x1="673.0" x2="673.0000000000001" y1="351.98039" y2="101.98038999999997"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="673.0000000000001" x2="653.0000000000001" y1="101.98038999999999" y2="101.98038999999997"/>
-  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="673.0000000000001" x2="653.0000000000001" y1="97.13504036550036" y2="101.98038999999997"/>
-  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="673.0000000000001" x2="673.0000000000001" y1="97.13504036550036" y2="101.98038999999997"/>
-  <line stroke="#000000" x1="673.0000000000001" x2="670.782416501531" y1="97.13504036550036" y2="92.82693910068974"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="670.782416501531" x2="653.0000000000001" y1="92.82693910068974" y2="101.98038999999997"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="623.0000000000002" x2="653.0000000000001" y1="-2.7185575390831223e-07" y2="101.98038999999997"/>
-  <line stroke="#000000" x1="668.5648330030618" x2="623.0000000000002" y1="88.51883783587913" y2="-2.7185575390831223e-07"/>
-  <line stroke="#000000" x1="670.782416501531" x2="668.5648330030618" y1="92.82693910068974" y2="88.51883783587913"/>
-  <line stroke="#000000" x1="674.6151165448334" x2="673.0000000000001" y1="97.13504036550036" y2="97.13504036550036"/>
-  <line stroke="#000000" x1="674.6151165448334" x2="674.6151165448334" y1="101.98038999999997" y2="97.13504036550036"/>
-  <line stroke="#000000" x1="673.0000000000001" x2="674.6151165448334" y1="101.98038999999997" y2="101.98038999999997"/>
-  <line stroke="#000000" x1="568.3095818717541" x2="573.0" y1="366.0516443847381" y2="366.0516443847381"/>
-  <line stroke="#000000" x1="568.3095818717541" x2="568.3095818717541" y1="351.98039" y2="366.0516443847381"/>
-  <line stroke="#000000" x1="573.0" x2="568.3095818717541" y1="351.98039" y2="351.98039"/>
-  <line stroke="#000000" x1="573.0" x2="573.0" y1="351.98039" y2="351.98039"/>
-  <line stroke="#000000" x1="573.0" x2="573.0" y1="251.98039000000003" y2="351.98039"/>
-  <line stroke="#000000" x1="573.0" x2="573.0" y1="101.98039000000001" y2="201.98039000000003"/>
-  <line stroke="#000000" x1="573.0" x2="573.0" y1="101.98039000000001" y2="101.98039000000001"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="573.0" x2="543.0000000000001" y1="251.98039000000003" y2="251.98039000000003"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="543.0000000000001" x2="543.0000000000001" y1="201.98039000000003" y2="251.98039000000003"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="543.0000000000001" x2="573.0" y1="201.98039000000003" y2="201.98039000000003"/>
-  <line stroke="#000000" x1="573.0" x2="573.0" y1="261.98039" y2="251.98039000000003"/>
-  <line stroke="#000000" x1="543.0000000000001" x2="573.0" y1="261.98039" y2="261.98039"/>
-  <line stroke="#000000" x1="543.0000000000001" x2="543.0000000000001" y1="251.98039000000003" y2="261.98039"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="543.0000000000001" x2="483.00000000000006" y1="251.98039000000003" y2="251.98039"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="483.00000000000006" x2="483.00000000000006" y1="251.98039" y2="201.98039"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="483.00000000000006" x2="543.0000000000001" y1="201.98039" y2="201.98039000000003"/>
-  <line stroke="#000000" x1="483.00000000000006" x2="543.0000000000001" y1="281.98039000000006" y2="281.98039000000006"/>
-  <line stroke="#000000" x1="483.00000000000006" x2="483.00000000000006" y1="251.98039" y2="281.98039000000006"/>
-  <line stroke="#000000" x1="543.0000000000001" x2="543.0000000000001" y1="281.98039000000006" y2="251.98039000000003"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="483.00000000000006" x2="453.00000000000006" y1="251.98039" y2="251.98039"/>
-  <line stroke="#000000" x1="483.00000000000006" x2="453.00000000000006" y1="201.98039" y2="201.98039"/>
-  <line stroke="#000000" x1="483.00000000000006" x2="483.00000000000006" y1="261.98039" y2="251.98039"/>
-  <line stroke="#000000" x1="453.00000000000006" x2="483.00000000000006" y1="261.98038999999994" y2="261.98039"/>
-  <line stroke="#000000" x1="453.00000000000006" x2="453.00000000000006" y1="251.98039" y2="261.98038999999994"/>
-  <line stroke="#000000" x1="453.00000000000006" x2="453.00000000000006" y1="101.98038999999999" y2="101.98038999999999"/>
-  <line stroke="#000000" x1="453.00000000000006" x2="453.00000000000006" y1="201.98039" y2="101.98038999999999"/>
-  <line stroke="#000000" x1="453.0" x2="453.00000000000006" y1="351.98039" y2="251.98039"/>
-  <line stroke="#000000" x1="453.0" x2="453.0" y1="351.98039" y2="351.98039"/>
-  <line stroke="#000000" x1="443.0" x2="453.0" y1="351.98039" y2="351.98039"/>
-  <line stroke="#000000" x1="443.00000000000006" x2="443.0" y1="101.98038999999999" y2="351.98039"/>
-  <line stroke="#000000" x1="453.00000000000006" x2="443.00000000000006" y1="101.98038999999999" y2="101.98038999999999"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="483.00000000000006" x2="483.00000000000006" y1="201.98039" y2="171.98039"/>
-  <line stroke="#000000" x1="543.0000000000001" x2="483.00000000000006" y1="171.98039000000003" y2="171.98039"/>
-  <line stroke="#000000" x1="543.0000000000001" x2="543.0000000000001" y1="201.98039000000003" y2="171.98039000000003"/>
-  <line stroke="#000000" x1="473.00000000000006" x2="483.00000000000006" y1="201.98039" y2="201.98039"/>
-  <line stroke="#000000" x1="473.00000000000006" x2="473.00000000000006" y1="171.98039" y2="201.98039"/>
-  <line stroke="#000000" x1="483.00000000000006" x2="473.00000000000006" y1="171.98039" y2="171.98039"/>
-  <line stroke="#000000" x1="543.0000000000001" x2="543.0000000000001" y1="191.98039000000003" y2="201.98039000000003"/>
-  <line stroke="#000000" x1="573.0" x2="543.0000000000001" y1="191.98039000000003" y2="191.98039000000003"/>
-  <line stroke="#000000" x1="573.0" x2="573.0" y1="201.98039000000003" y2="191.98039000000003"/>
-  <line stroke="#888888" x1="578.1096961561617" x2="577.1416653841894" y1="90.40140539540558" y2="92.28199956288073"/>
-  <line stroke="#888888" x1="577.1416653841894" x2="576.6971049716511" y1="92.28199956288073" y2="92.05316329039796"/>
-  <line stroke="#888888" x1="576.6971049716511" x2="577.6651357436235" y1="92.05316329039796" y2="90.17256912292281"/>
-  <line stroke="#888888" x1="577.6651357436235" x2="578.1096961561617" y1="90.17256912292281" y2="90.40140539540558"/>
-  <line stroke="#888888" x1="571.7886625913752" x2="572.5962208637918" y1="98.75015691033362" y2="98.75015691033362"/>
-  <line stroke="#888888" x1="572.5962208637918" x2="572.5962208637918" y1="98.75015691033362" y2="100.36527345516681"/>
-  <line stroke="#888888" x1="572.5962208637918" x2="571.7886625913752" y1="100.36527345516681" y2="100.36527345516681"/>
-  <line stroke="#888888" x1="591.6963076508192" x2="596.5816367092771" y1="368.7583986679128" y2="370.5116813994232"/>
-  <line stroke="#888888" x1="596.5816367092771" x2="596.4127406118731" y1="370.5116813994232" y2="370.98229175659964"/>
-  <line stroke="#888888" x1="596.4127406118731" x2="591.5274115534152" y1="370.98229175659964" y2="369.2290090250893"/>
-  <line stroke="#888888" x1="591.5274115534152" x2="591.6963076508192" y1="369.2290090250893" y2="368.7583986679128"/>
-  <line stroke="#888888" x1="649.418363290723" x2="654.3036923491809" y1="370.5116813994232" y2="368.7583986679128"/>
-  <line stroke="#888888" x1="654.3036923491809" x2="654.4725884465847" y1="368.7583986679128" y2="369.2290090250893"/>
-  <line stroke="#888888" x1="654.4725884465847" x2="649.587259388127" y1="369.2290090250893" y2="370.98229175659964"/>
-  <line stroke="#888888" x1="649.587259388127" x2="649.418363290723" y1="370.98229175659964" y2="370.5116813994232"/>
-  <line stroke="#888888" x1="676.5178135961846" x2="674.1726045320615" y1="361.3612262564921" y2="361.3612262564921"/>
-  <line stroke="#888888" x1="674.1726045320615" x2="674.1726045320615" y1="361.3612262564921" y2="356.6708081282461"/>
-  <line stroke="#888888" x1="674.1726045320615" x2="676.5178135961846" y1="356.6708081282461" y2="356.6708081282461"/>
-  <line stroke="#888888" x1="665.2500000000001" x2="665.2500000000001" y1="140.69192846153842" y2="120.9611592307692"/>
-  <line stroke="#888888" x1="665.2500000000001" x2="665.7500000000001" y1="120.9611592307692" y2="120.9611592307692"/>
-  <line stroke="#888888" x1="665.7500000000001" x2="665.7500000000001" y1="120.9611592307692" y2="140.69192846153842"/>
-  <line stroke="#888888" x1="665.7500000000001" x2="665.2500000000001" y1="140.69192846153842" y2="140.69192846153842"/>
-  <line stroke="#888888" x1="665.2500000000001" x2="665.2500000000001" y1="188.76885153846155" y2="169.0380823076923"/>
-  <line stroke="#888888" x1="665.2500000000001" x2="665.7500000000001" y1="169.0380823076923" y2="169.0380823076923"/>
-  <line stroke="#888888" x1="665.7500000000001" x2="665.7500000000001" y1="169.0380823076923" y2="188.76885153846155"/>
-  <line stroke="#888888" x1="665.7500000000001" x2="665.2500000000001" y1="188.76885153846155" y2="188.76885153846155"/>
-  <line stroke="#888888" x1="665.2500000000001" x2="665.2500000000001" y1="236.84577461538464" y2="217.11500538461536"/>
-  <line stroke="#888888" x1="665.2500000000001" x2="665.7500000000001" y1="217.11500538461536" y2="217.1150053846154"/>
-  <line stroke="#888888" x1="665.7500000000001" x2="665.7500000000001" y1="217.1150053846154" y2="236.84577461538464"/>
-  <line stroke="#888888" x1="665.7500000000001" x2="665.2500000000001" y1="236.84577461538464" y2="236.84577461538464"/>
-  <line stroke="#888888" x1="665.2500000000001" x2="665.2500000000001" y1="284.9226976923077" y2="265.19192846153845"/>
-  <line stroke="#888888" x1="665.2500000000001" x2="665.7500000000001" y1="265.19192846153845" y2="265.19192846153845"/>
-  <line stroke="#888888" x1="665.7500000000001" x2="665.7500000000001" y1="265.19192846153845" y2="284.9226976923077"/>
-  <line stroke="#888888" x1="665.7500000000001" x2="665.2500000000001" y1="284.9226976923077" y2="284.9226976923077"/>
-  <line stroke="#888888" x1="665.2500000000001" x2="665.2500000000001" y1="332.99962076923083" y2="313.26885153846155"/>
-  <line stroke="#888888" x1="665.2500000000001" x2="665.7500000000001" y1="313.26885153846155" y2="313.26885153846155"/>
-  <line stroke="#888888" x1="665.7500000000001" x2="665.7500000000001" y1="313.26885153846155" y2="332.99962076923083"/>
-  <line stroke="#888888" x1="665.7500000000001" x2="665.2500000000001" y1="332.99962076923083" y2="332.99962076923083"/>
-  <line stroke="#888888" x1="668.8583346158109" x2="667.8903038438383" y1="92.2819995628807" y2="90.40140539540555"/>
-  <line stroke="#888888" x1="667.8903038438383" x2="668.3348642563766" y1="90.40140539540555" y2="90.17256912292278"/>
-  <line stroke="#888888" x1="668.3348642563766" x2="669.3028950283492" y1="90.17256912292278" y2="92.05316329039792"/>
-  <line stroke="#888888" x1="669.3028950283492" x2="668.8583346158109" y1="92.05316329039792" y2="92.2819995628807"/>
-  <line stroke="#888888" x1="674.2113374086251" x2="673.4037791362085" y1="100.36527345516676" y2="100.36527345516676"/>
-  <line stroke="#888888" x1="673.4037791362085" x2="673.4037791362085" y1="100.36527345516676" y2="98.75015691033356"/>
-  <line stroke="#888888" x1="673.4037791362085" x2="674.2113374086251" y1="98.75015691033356" y2="98.75015691033356"/>
-  <line stroke="#888888" x1="569.4821864038155" x2="571.8273954679385" y1="356.67080812824605" y2="356.67080812824605"/>
-  <line stroke="#888888" x1="571.8273954679385" x2="571.8273954679385" y1="356.67080812824605" y2="361.3612262564921"/>
-  <line stroke="#888888" x1="571.8273954679385" x2="569.4821864038155" y1="361.3612262564921" y2="361.3612262564921"/>
-  <line stroke="#888888" x1="553.0000000000001" x2="553.0000000000001" y1="259.48039" y2="254.48039000000003"/>
-  <line stroke="#888888" x1="553.0000000000001" x2="563.0" y1="254.48039000000003" y2="254.48039000000003"/>
-  <line stroke="#888888" x1="563.0" x2="563.0" y1="254.48039000000003" y2="259.48039"/>
-  <line stroke="#888888" x1="490.75000000000006" x2="490.75000000000006" y1="261.73039" y2="272.23039000000006"/>
-  <line stroke="#888888" x1="490.75000000000006" x2="490.25000000000006" y1="272.23039000000006" y2="272.23039000000006"/>
-  <line stroke="#888888" x1="490.25000000000006" x2="490.25000000000006" y1="272.23039000000006" y2="261.73039"/>
-  <line stroke="#888888" x1="490.25000000000006" x2="490.75000000000006" y1="261.73039" y2="261.73039"/>
-  <line stroke="#888888" x1="535.2500000000001" x2="535.2500000000001" y1="272.23039000000006" y2="261.73039"/>
-  <line stroke="#888888" x1="535.2500000000001" x2="535.7500000000001" y1="261.73039" y2="261.73039"/>
-  <line stroke="#888888" x1="535.7500000000001" x2="535.7500000000001" y1="261.73039" y2="272.23039000000006"/>
-  <line stroke="#888888" x1="535.7500000000001" x2="535.2500000000001" y1="272.23039000000006" y2="272.23039000000006"/>
-  <line stroke="#888888" x1="473.25" x2="462.75000000000006" y1="209.73039" y2="209.73039"/>
-  <line stroke="#888888" x1="462.75000000000006" x2="462.75000000000006" y1="209.73039" y2="209.23038999999997"/>
-  <line stroke="#888888" x1="462.75000000000006" x2="473.25" y1="209.23038999999997" y2="209.23038999999997"/>
-  <line stroke="#888888" x1="473.25" x2="473.25" y1="209.23038999999997" y2="209.73039"/>
-  <line stroke="#888888" x1="463.00000000000006" x2="463.00000000000006" y1="259.48039" y2="254.48039"/>
-  <line stroke="#888888" x1="463.00000000000006" x2="473.00000000000006" y1="254.48039" y2="254.48039"/>
-  <line stroke="#888888" x1="473.00000000000006" x2="473.00000000000006" y1="254.48039" y2="259.48039"/>
-  <line stroke="#888888" x1="445.50000000000006" x2="445.50000000000006" y1="121.21115923076921" y2="116.21115923076921"/>
-  <line stroke="#888888" x1="445.50000000000006" x2="450.5" y1="116.21115923076921" y2="121.21115923076921"/>
-  <line stroke="#888888" x1="450.5" x2="450.5" y1="121.21115923076921" y2="140.44192846153842"/>
-  <line stroke="#888888" x1="450.5" x2="445.50000000000006" y1="140.44192846153842" y2="145.44192846153842"/>
-  <line stroke="#888888" x1="445.50000000000006" x2="445.50000000000006" y1="145.44192846153842" y2="140.44192846153842"/>
-  <line stroke="#888888" x1="445.50000000000006" x2="445.50000000000006" y1="169.2880823076923" y2="164.2880823076923"/>
-  <line stroke="#888888" x1="445.50000000000006" x2="450.5" y1="164.2880823076923" y2="169.2880823076923"/>
-  <line stroke="#888888" x1="450.5" x2="450.5" y1="169.2880823076923" y2="188.51885153846152"/>
-  <line stroke="#888888" x1="450.5" x2="445.50000000000006" y1="188.51885153846152" y2="193.51885153846152"/>
-  <line stroke="#888888" x1="445.50000000000006" x2="445.50000000000006" y1="193.51885153846152" y2="188.51885153846152"/>
-  <line stroke="#888888" x1="445.50000000000006" x2="445.50000000000006" y1="217.36500538461536" y2="212.36500538461536"/>
-  <line stroke="#888888" x1="445.50000000000006" x2="450.5" y1="212.36500538461536" y2="217.36500538461536"/>
-  <line stroke="#888888" x1="450.5" x2="450.5" y1="217.36500538461536" y2="236.5957746153846"/>
-  <line stroke="#888888" x1="450.5" x2="445.50000000000006" y1="236.5957746153846" y2="241.5957746153846"/>
-  <line stroke="#888888" x1="445.50000000000006" x2="445.50000000000006" y1="241.5957746153846" y2="236.5957746153846"/>
-  <line stroke="#888888" x1="445.50000000000006" x2="445.50000000000006" y1="265.44192846153845" y2="260.44192846153845"/>
-  <line stroke="#888888" x1="445.50000000000006" x2="450.5" y1="260.44192846153845" y2="265.44192846153845"/>
-  <line stroke="#888888" x1="450.5" x2="450.5" y1="265.44192846153845" y2="284.6726976923077"/>
-  <line stroke="#888888" x1="450.5" x2="445.50000000000006" y1="284.6726976923077" y2="289.6726976923077"/>
-  <line stroke="#888888" x1="445.50000000000006" x2="445.50000000000006" y1="289.6726976923077" y2="284.6726976923077"/>
-  <line stroke="#888888" x1="445.50000000000006" x2="445.50000000000006" y1="313.51885153846155" y2="308.51885153846155"/>
-  <line stroke="#888888" x1="445.50000000000006" x2="450.5" y1="308.51885153846155" y2="313.51885153846155"/>
-  <line stroke="#888888" x1="450.5" x2="450.5" y1="313.51885153846155" y2="332.7496207692308"/>
-  <line stroke="#888888" x1="450.5" x2="445.50000000000006" y1="332.7496207692308" y2="337.7496207692308"/>
-  <line stroke="#888888" x1="445.50000000000006" x2="445.50000000000006" y1="337.7496207692308" y2="332.7496207692308"/>
-  <line stroke="#888888" x1="535.2500000000001" x2="535.2500000000001" y1="192.23039000000003" y2="181.73039"/>
-  <line stroke="#888888" x1="535.2500000000001" x2="535.7500000000001" y1="181.73039" y2="181.73039"/>
-  <line stroke="#888888" x1="535.7500000000001" x2="535.7500000000001" y1="181.73039" y2="192.23039000000003"/>
-  <line stroke="#888888" x1="535.7500000000001" x2="535.2500000000001" y1="192.23039000000003" y2="192.23039000000003"/>
-  <line stroke="#888888" x1="475.50000000000006" x2="480.50000000000006" y1="181.98038999999997" y2="181.98038999999997"/>
-  <line stroke="#888888" x1="480.50000000000006" x2="480.50000000000006" y1="181.98038999999997" y2="191.98039"/>
-  <line stroke="#888888" x1="480.50000000000006" x2="475.50000000000006" y1="191.98039" y2="191.98039"/>
-  <line stroke="#888888" x1="563.0" x2="563.0" y1="194.48039000000003" y2="199.48039000000003"/>
-  <line stroke="#888888" x1="563.0" x2="553.0000000000001" y1="199.48039000000003" y2="199.48039000000003"/>
-  <line stroke="#888888" x1="553.0000000000001" x2="553.0000000000001" y1="199.48039000000003" y2="194.48039000000003"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="127.92433336086202" x2="127.92433336086202" y1="117.88129600000003" y2="415.8812960000001"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="37.924333360862015" x2="37.924333360862015" y1="117.88129600000003" y2="415.8812960000001"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="82.92433336086202" x2="37.924333360862015" y1="117.88129600000003" y2="117.88129600000003"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="127.92433336086202" x2="82.92433336086202" y1="117.88129600000003" y2="117.88129600000003"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="82.92433336086202" x2="37.924333360862015" y1="-2.2633099661106828e-07" y2="117.88129600000003"/>
+  <line stroke="#000000" x1="18.56479320700301" x2="13.244563283932509" y1="93.12697584332294" y2="100.82524285309951"/>
+  <line stroke="#000000" x1="82.92433336086201" x2="18.56479320700301" y1="-2.2633093976764942e-07" y2="93.12697584332294"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="37.92433336086201" x2="13.244563283932509" y1="117.88129600000006" y2="100.82524285309951"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="37.924333360862015" x2="7.924333360862009" y1="117.88129600000003" y2="108.52350986287608"/>
+  <line stroke="#000000" x1="13.244563283932523" x2="7.924333360862009" y1="100.82524285309951" y2="108.52350986287608"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="7.924333360862009" x2="7.924333360862009" y1="117.88129600000003" y2="108.52350986287608"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="37.924333360862015" x2="7.924333360862009" y1="117.88129600000003" y2="117.88129600000003"/>
+  <line stroke="#000000" x1="4.8050713151540245" x2="7.924333360862009" y1="117.88129600000003" y2="117.88129600000003"/>
+  <line stroke="#000000" x1="4.8050713151540245" x2="4.8050713151540245" y1="108.52350986287608" y2="117.88129600000003"/>
+  <line stroke="#000000" x1="7.924333360862009" x2="4.8050713151540245" y1="108.52350986287608" y2="108.52350986287608"/>
+  <line stroke="#000000" x1="7.924333360861966" x2="7.924333360862009" y1="415.88129600000013" y2="117.88129600000003"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="7.924333360861966" x2="37.924333360861965" y1="415.88129600000013" y2="415.88129600000013"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="7.924333360861966" x2="37.924333360861965" y1="439.65429608258603" y2="415.88129600000013"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="7.924333360861966" x2="7.924333360861966" y1="439.65429608258603" y2="415.88129600000013"/>
+  <line stroke="#000000" x1="7.924333360861952" x2="31.068177965444168" y1="439.65429608258603" y2="445.08734217530235"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="31.068177965444168" x2="37.924333360861965" y1="445.08734217530235" y2="415.88129600000013"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="82.92433336086197" x2="37.924333360861965" y1="457.26063867240134" y2="415.88129600000013"/>
+  <line stroke="#000000" x1="54.21202257002637" x2="82.92433336086197" y1="450.5203882680186" y2="457.26063867240134"/>
+  <line stroke="#000000" x1="31.068177965444168" x2="54.21202257002637" y1="445.08734217530235" y2="450.5203882680186"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="37.924333360861965" x2="82.92433336086197" y1="415.88129600000013" y2="415.88129600000013"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="82.92433336086197" x2="127.92433336086198" y1="415.88129600000013" y2="415.88129600000013"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="82.92433336086195" x2="127.92433336086198" y1="457.2606386724013" y2="415.88129600000013"/>
+  <line stroke="#000000" x1="111.63664415169755" x2="134.78048875627974" y1="450.5203882680186" y2="445.08734217530235"/>
+  <line stroke="#000000" x1="82.92433336086197" x2="111.63664415169755" y1="457.2606386724013" y2="450.5203882680186"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="127.92433336086198" x2="134.78048875627974" y1="415.88129600000013" y2="445.08734217530235"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="127.92433336086198" x2="157.924333360862" y1="415.88129600000013" y2="439.65429608258603"/>
+  <line stroke="#000000" x1="134.78048875627974" x2="157.924333360862" y1="445.08734217530235" y2="439.65429608258603"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="157.924333360862" x2="157.924333360862" y1="415.88129600000013" y2="439.65429608258603"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="127.92433336086197" x2="157.924333360862" y1="415.88129600000013" y2="415.88129600000013"/>
+  <line stroke="#000000" x1="165.84866672172393" x2="157.924333360862" y1="415.88129600000013" y2="415.88129600000013"/>
+  <line stroke="#000000" x1="165.84866672172393" x2="165.84866672172393" y1="439.65429608258603" y2="415.88129600000013"/>
+  <line stroke="#000000" x1="157.924333360862" x2="165.84866672172393" y1="439.65429608258603" y2="439.65429608258603"/>
+  <line stroke="#000000" x1="157.92433336086205" x2="157.924333360862" y1="117.88129600000009" y2="415.88129600000013"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="157.92433336086205" x2="127.92433336086204" y1="117.88129600000009" y2="117.88129600000009"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="157.92433336086205" x2="127.92433336086204" y1="108.52350986287614" y2="117.88129600000009"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="157.92433336086205" x2="157.92433336086205" y1="108.52350986287614" y2="117.88129600000009"/>
+  <line stroke="#000000" x1="157.92433336086205" x2="152.60410343779157" y1="108.52350986287614" y2="100.82524285309957"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="152.60410343779157" x2="127.92433336086204" y1="100.82524285309957" y2="117.88129600000009"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="82.9243333608621" x2="127.92433336086204" y1="-2.2633093976764942e-07" y2="117.88129600000009"/>
+  <line stroke="#000000" x1="147.28387351472105" x2="82.9243333608621" y1="93.126975843323" y2="-2.2633093976764942e-07"/>
+  <line stroke="#000000" x1="152.60410343779157" x2="147.28387351472105" y1="100.82524285309957" y2="93.126975843323"/>
+  <line stroke="#000000" x1="161.04359540657003" x2="157.92433336086205" y1="108.52350986287614" y2="108.52350986287614"/>
+  <line stroke="#000000" x1="161.04359540657003" x2="161.04359540657003" y1="117.88129600000009" y2="108.52350986287614"/>
+  <line stroke="#000000" x1="157.92433336086205" x2="161.04359540657003" y1="117.88129600000009" y2="117.88129600000009"/>
+  <line stroke="#000000" x1="157.924333360862" x2="157.924333360862" y1="345.88129600000013" y2="345.88129600000013"/>
+  <line stroke="#000000" x1="157.92433336086205" x2="157.92433336086205" y1="117.88129600000009" y2="117.88129600000009"/>
+  <line stroke="#000000" x1="157.92433336086205" x2="157.92433336086205" y1="178.8812960000001" y2="117.88129600000009"/>
+  <line stroke="#000000" x1="157.92433336086205" x2="157.92433336086205" y1="188.88129600000008" y2="178.8812960000001"/>
+  <line stroke="#000000" x1="157.92433336086202" x2="157.92433336086205" y1="285.88129600000013" y2="212.8812960000001"/>
+  <line stroke="#000000" x1="157.92433336086202" x2="157.92433336086202" y1="285.88129600000013" y2="285.88129600000013"/>
+  <line stroke="#000000" x1="157.92433336086205" x2="157.92433336086205" y1="117.88129600000009" y2="117.88129600000009"/>
+  <line stroke="#000000" x1="191.92433336086205" x2="157.92433336086205" y1="188.88129600000008" y2="188.88129600000008"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="157.92433336086205" x2="191.92433336086205" y1="212.8812960000001" y2="212.8812960000001"/>
+  <line stroke="#000000" x1="227.92433336086205" x2="191.92433336086205" y1="188.8812960000001" y2="188.8812960000001"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="227.92433336086205" x2="227.92433336086205" y1="188.8812960000001" y2="212.88129600000013"/>
+  <line stroke="#000000" x1="191.92433336086205" x2="227.92433336086205" y1="212.88129600000013" y2="212.88129600000013"/>
+  <line stroke="#000000" x1="227.92433336086205" x2="272.924333360862" y1="212.88129600000013" y2="212.88129600000016"/>
+  <line stroke="#000000" x1="272.924333360862" x2="227.92433336086205" y1="188.88129600000013" y2="188.8812960000001"/>
+  <line stroke="#000000" x1="272.924333360862" x2="272.924333360862" y1="212.88129600000016" y2="188.88129600000013"/>
+  <line stroke="#000000" x1="157.92433336086205" x2="157.92433336086205" y1="212.8812960000001" y2="232.8812960000001"/>
+  <line stroke="#000000" x1="191.92433336086205" x2="191.92433336086205" y1="232.8812960000001" y2="212.8812960000001"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="157.92433336086205" x2="191.92433336086205" y1="232.8812960000001" y2="232.8812960000001"/>
+  <line stroke="#000000" x1="157.92433336086205" x2="157.92433336086205" y1="232.8812960000001" y2="256.88129600000013"/>
+  <line stroke="#000000" x1="191.92433336086205" x2="191.92433336086205" y1="256.88129600000013" y2="232.8812960000001"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="157.92433336086205" x2="191.92433336086205" y1="256.88129600000013" y2="256.88129600000013"/>
+  <line stroke="#000000" x1="157.92433336086205" x2="157.92433336086205" y1="256.88129600000013" y2="276.88129600000013"/>
+  <line stroke="#000000" x1="191.92433336086205" x2="191.92433336086205" y1="276.88129600000013" y2="256.88129600000013"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="191.92433336086205" x2="157.92433336086205" y1="276.88129600000013" y2="276.88129600000013"/>
+  <line stroke="#000000" x1="191.92433336086205" x2="191.92433336086205" y1="286.88129600000013" y2="276.88129600000013"/>
+  <line stroke="#000000" x1="157.92433336086205" x2="191.92433336086205" y1="286.88129600000013" y2="286.88129600000013"/>
+  <line stroke="#000000" x1="157.92433336086205" x2="157.92433336086205" y1="276.88129600000013" y2="286.88129600000013"/>
+  <line stroke="#000000" x1="157.924333360862" x2="219.57861139572347" y1="345.88129600000013" y2="345.8812960000002"/>
+  <line stroke="#000000" x1="219.57861139572347" x2="157.92433336086202" y1="285.88129600000013" y2="285.88129600000013"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="219.57861139572347" x2="219.57861139572347" y1="285.88129600000013" y2="345.8812960000002"/>
+  <line stroke="#000000" x1="246.5786113957235" x2="219.57861139572347" y1="285.8812960000002" y2="285.88129600000013"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="246.5786113957235" x2="246.5786113957235" y1="345.8812960000002" y2="285.8812960000002"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="219.57861139572347" x2="246.5786113957235" y1="345.8812960000002" y2="345.8812960000002"/>
+  <line stroke="#000000" x1="308.2328894305849" x2="246.5786113957235" y1="285.8812960000002" y2="285.8812960000002"/>
+  <line stroke="#000000" x1="308.2328894305849" x2="308.2328894305849" y1="345.8812960000002" y2="285.8812960000002"/>
+  <line stroke="#000000" x1="246.5786113957234" x2="308.2328894305849" y1="345.8812960000002" y2="345.8812960000002"/>
+  <line stroke="#000000" x1="219.57861139572339" x2="219.57861139572339" y1="345.8812960000002" y2="362.8812960000002"/>
+  <line stroke="#000000" x1="246.5786113957234" x2="246.5786113957234" y1="362.8812960000002" y2="345.8812960000002"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="219.57861139572339" x2="246.5786113957234" y1="362.8812960000002" y2="362.8812960000002"/>
+  <line stroke="#000000" x1="219.57861139572339" x2="219.57861139572339" y1="362.8812960000002" y2="422.8812960000002"/>
+  <line stroke="#000000" x1="246.5786113957234" x2="246.5786113957234" y1="422.8812960000002" y2="362.8812960000002"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="219.57861139572339" x2="246.5786113957234" y1="422.8812960000002" y2="422.8812960000002"/>
+  <line stroke="#000000" x1="219.57861139572339" x2="219.57861139572339" y1="422.8812960000002" y2="439.8812960000002"/>
+  <line stroke="#000000" x1="246.5786113957234" x2="246.5786113957234" y1="439.8812960000002" y2="422.8812960000002"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="246.5786113957234" x2="219.57861139572339" y1="439.8812960000002" y2="439.8812960000002"/>
+  <line stroke="#000000" x1="246.5786113957234" x2="246.5786113957234" y1="449.8812960000002" y2="439.8812960000002"/>
+  <line stroke="#000000" x1="219.57861139572339" x2="246.5786113957234" y1="449.8812960000002" y2="449.8812960000002"/>
+  <line stroke="#000000" x1="219.57861139572339" x2="219.57861139572339" y1="439.8812960000002" y2="449.8812960000002"/>
+  <line stroke="#000000" x1="157.92433336086205" x2="157.92433336086205" y1="117.88129600000009" y2="117.88129600000009"/>
+  <line stroke="#000000" x1="157.92433336086205" x2="157.92433336086205" y1="231.8812960000001" y2="117.88129600000009"/>
+  <line stroke="#000000" x1="157.924333360862" x2="157.92433336086202" y1="415.88129600000013" y2="301.88129600000013"/>
+  <line stroke="#000000" x1="157.924333360862" x2="157.924333360862" y1="415.88129600000013" y2="415.88129600000013"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="187.924333360862" x2="157.924333360862" y1="301.88129600000013" y2="301.88129600000013"/>
+  <line stroke="#000000" x1="187.92433336086205" x2="157.92433336086205" y1="231.8812960000001" y2="231.8812960000001"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="187.924333360862" x2="187.92433336086205" y1="301.88129600000013" y2="231.8812960000001"/>
+  <line stroke="#000000" x1="187.924333360862" x2="187.924333360862" y1="311.8812960000001" y2="301.88129600000013"/>
+  <line stroke="#000000" x1="157.924333360862" x2="187.924333360862" y1="311.8812960000001" y2="311.8812960000001"/>
+  <line stroke="#000000" x1="157.924333360862" x2="157.924333360862" y1="301.88129600000013" y2="311.8812960000001"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="277.924333360862" x2="187.92433336086205" y1="301.88129600000013" y2="301.88129600000013"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="187.92433336086205" x2="277.924333360862" y1="231.8812960000001" y2="231.88129600000016"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="277.924333360862" x2="277.924333360862" y1="231.88129600000016" y2="301.88129600000013"/>
+  <line stroke="#000000" x1="187.924333360862" x2="277.92433336086197" y1="331.88129600000013" y2="331.8812960000002"/>
+  <line stroke="#000000" x1="187.92433336086202" x2="187.924333360862" y1="301.88129600000013" y2="331.88129600000013"/>
+  <line stroke="#000000" x1="277.92433336086197" x2="277.92433336086197" y1="331.8812960000002" y2="301.88129600000013"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="187.92433336086205" x2="187.92433336086205" y1="231.8812960000001" y2="201.8812960000001"/>
+  <line stroke="#000000" x1="277.924333360862" x2="187.92433336086205" y1="201.88129600000016" y2="201.8812960000001"/>
+  <line stroke="#000000" x1="277.924333360862" x2="277.924333360862" y1="231.88129600000016" y2="201.88129600000016"/>
+  <line stroke="#000000" x1="177.92433336086205" x2="187.92433336086205" y1="231.8812960000001" y2="231.8812960000001"/>
+  <line stroke="#000000" x1="177.92433336086205" x2="177.92433336086205" y1="201.8812960000001" y2="231.8812960000001"/>
+  <line stroke="#000000" x1="187.92433336086205" x2="177.92433336086205" y1="201.8812960000001" y2="201.8812960000001"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="307.9243333608621" x2="277.924333360862" y1="301.88129600000013" y2="301.88129600000013"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="277.924333360862" x2="307.9243333608621" y1="231.88129600000016" y2="231.88129600000016"/>
+  <line stroke="#000000" x1="307.924333360862" x2="307.924333360862" y1="311.88129600000013" y2="301.88129600000013"/>
+  <line stroke="#000000" x1="277.92433336086197" x2="307.924333360862" y1="311.88129600000013" y2="311.88129600000013"/>
+  <line stroke="#000000" x1="277.92433336086197" x2="277.92433336086197" y1="301.88129600000013" y2="311.88129600000013"/>
+  <line stroke="#000000" x1="277.924333360862" x2="277.924333360862" y1="221.88129600000016" y2="231.88129600000016"/>
+  <line stroke="#000000" x1="307.9243333608621" x2="277.924333360862" y1="221.88129600000016" y2="221.88129600000016"/>
+  <line stroke="#000000" x1="307.9243333608621" x2="307.9243333608621" y1="231.88129600000016" y2="221.88129600000016"/>
+  <line stroke="#000000" x1="307.924333360862" x2="307.924333360862" y1="415.8812960000002" y2="415.8812960000002"/>
+  <line stroke="#000000" x1="307.924333360862" x2="307.924333360862" y1="301.88129600000013" y2="415.8812960000002"/>
+  <line stroke="#000000" x1="307.9243333608621" x2="307.9243333608621" y1="117.88129600000015" y2="231.88129600000016"/>
+  <line stroke="#000000" x1="307.9243333608621" x2="307.9243333608621" y1="117.88129600000015" y2="117.88129600000015"/>
+  <line stroke="#000000" x1="307.9243333608621" x2="307.9243333608621" y1="187.88129600000016" y2="187.88129600000016"/>
+  <line stroke="#000000" x1="307.924333360862" x2="307.924333360862" y1="415.8812960000002" y2="415.8812960000002"/>
+  <line stroke="#000000" x1="297.924333360862" x2="307.924333360862" y1="415.8812960000002" y2="415.8812960000002"/>
+  <line stroke="#000000" x1="297.924333360862" x2="297.924333360862" y1="355.8812960000002" y2="415.8812960000002"/>
+  <line stroke="#000000" x1="307.924333360862" x2="297.924333360862" y1="355.8812960000002" y2="355.8812960000002"/>
+  <line stroke="#000000" x1="307.9243333608621" x2="307.924333360862" y1="282.8812960000002" y2="355.8812960000002"/>
+  <line stroke="#000000" x1="307.9243333608621" x2="307.9243333608621" y1="248.88129600000016" y2="258.8812960000002"/>
+  <line stroke="#000000" x1="307.9243333608621" x2="307.9243333608621" y1="187.88129600000016" y2="187.88129600000016"/>
+  <line stroke="#000000" x1="307.924333360862" x2="307.924333360862" y1="355.8812960000002" y2="355.8812960000002"/>
+  <line stroke="#000000" x1="307.9243333608621" x2="273.9243333608621" y1="258.8812960000002" y2="258.8812960000002"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="273.9243333608621" x2="307.9243333608621" y1="282.8812960000002" y2="282.8812960000002"/>
+  <line stroke="#000000" x1="237.92433336086205" x2="273.9243333608621" y1="282.8812960000002" y2="282.8812960000002"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="237.92433336086205" x2="237.92433336086205" y1="282.8812960000002" y2="258.8812960000002"/>
+  <line stroke="#000000" x1="273.9243333608621" x2="237.92433336086205" y1="258.8812960000002" y2="258.8812960000002"/>
+  <line stroke="#000000" x1="237.92433336086205" x2="192.92433336086202" y1="258.8812960000002" y2="258.88129600000013"/>
+  <line stroke="#000000" x1="192.92433336086202" x2="237.92433336086205" y1="282.88129600000013" y2="282.8812960000002"/>
+  <line stroke="#000000" x1="187.92433336086205" x2="192.92433336086202" y1="282.88129600000013" y2="282.88129600000013"/>
+  <line stroke="#000000" x1="187.92433336086205" x2="187.92433336086205" y1="258.88129600000013" y2="282.88129600000013"/>
+  <line stroke="#000000" x1="192.92433336086202" x2="187.92433336086205" y1="258.88129600000013" y2="258.88129600000013"/>
+  <line stroke="#000000" x1="273.9243333608621" x2="273.9243333608621" y1="282.8812960000002" y2="302.88129600000013"/>
+  <line stroke="#000000" x1="307.9243333608621" x2="307.9243333608621" y1="302.88129600000013" y2="282.8812960000002"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="273.9243333608621" x2="307.9243333608621" y1="302.88129600000013" y2="302.88129600000013"/>
+  <line stroke="#000000" x1="273.9243333608621" x2="273.9243333608621" y1="302.88129600000013" y2="326.8812960000002"/>
+  <line stroke="#000000" x1="307.9243333608621" x2="307.9243333608621" y1="326.8812960000002" y2="302.88129600000013"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="273.9243333608621" x2="307.9243333608621" y1="326.8812960000002" y2="326.8812960000002"/>
+  <line stroke="#000000" x1="273.9243333608621" x2="273.9243333608621" y1="326.8812960000002" y2="346.8812960000002"/>
+  <line stroke="#000000" x1="307.9243333608621" x2="307.9243333608621" y1="346.8812960000002" y2="326.8812960000002"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="307.9243333608621" x2="273.9243333608621" y1="346.8812960000002" y2="346.8812960000002"/>
+  <line stroke="#000000" x1="307.9243333608621" x2="307.9243333608621" y1="356.88129600000013" y2="346.8812960000002"/>
+  <line stroke="#000000" x1="273.9243333608621" x2="307.9243333608621" y1="356.88129600000013" y2="356.88129600000013"/>
+  <line stroke="#000000" x1="273.9243333608621" x2="273.9243333608621" y1="346.8812960000002" y2="356.88129600000013"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="271.78571136167676" x2="271.7857113616768" y1="248.88129600000016" y2="187.88129600000016"/>
+  <line stroke="#000000" x1="307.9243333608621" x2="271.7857113616768" y1="187.88129600000016" y2="187.88129600000016"/>
+  <line stroke="#000000" x1="271.78571136167676" x2="307.9243333608621" y1="248.88129600000016" y2="248.88129600000016"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="247.78571136167673" x2="247.78571136167673" y1="187.88129600000016" y2="248.88129600000013"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="247.78571136167673" x2="271.78571136167676" y1="187.88129600000016" y2="187.88129600000016"/>
+  <line stroke="#000000" x1="211.64708936249147" x2="247.78571136167673" y1="248.88129600000013" y2="248.88129600000013"/>
+  <line stroke="#000000" x1="247.7857113616768" x2="211.64708936249147" y1="187.88129600000013" y2="187.88129600000013"/>
+  <line stroke="#000000" x1="201.64708936249147" x2="211.64708936249147" y1="248.8812960000001" y2="248.8812960000001"/>
+  <line stroke="#000000" x1="201.64708936249147" x2="201.64708936249147" y1="187.8812960000001" y2="248.8812960000001"/>
+  <line stroke="#000000" x1="211.64708936249147" x2="201.64708936249147" y1="187.8812960000001" y2="187.8812960000001"/>
+  <line stroke="#000000" x1="247.7857113616768" x2="247.7857113616768" y1="177.8812960000001" y2="187.88129600000013"/>
+  <line stroke="#000000" x1="271.7857113616768" x2="247.7857113616768" y1="177.88129600000016" y2="177.8812960000001"/>
+  <line stroke="#000000" x1="271.7857113616768" x2="271.7857113616768" y1="187.88129600000016" y2="177.88129600000016"/>
+  <line stroke="#000000" x1="271.78571136167676" x2="271.78571136167676" y1="258.8812960000002" y2="248.88129600000016"/>
+  <line stroke="#000000" x1="247.78571136167673" x2="271.78571136167676" y1="258.8812960000002" y2="258.8812960000002"/>
+  <line stroke="#000000" x1="247.78571136167673" x2="247.78571136167673" y1="248.88129600000013" y2="258.8812960000002"/>
+  <line stroke="#000000" x1="0.0" x2="7.924333360861966" y1="439.65429608258603" y2="439.65429608258603"/>
+  <line stroke="#000000" x1="0.0" x2="0.0" y1="415.88129600000013" y2="439.65429608258603"/>
+  <line stroke="#000000" x1="7.924333360861966" x2="0.0" y1="415.88129600000013" y2="415.88129600000013"/>
+  <line stroke="#888888" x1="19.063748511955573" x2="17.006070985150405" y1="96.95959135293252" y2="99.93700985747354"/>
+  <line stroke="#888888" x1="17.006070985150405" x2="16.594741483868248" y1="99.93700985747354" y2="99.6527423050252"/>
+  <line stroke="#888888" x1="16.594741483868248" x2="18.652419010673427" y1="99.6527423050252" y2="96.67532380048418"/>
+  <line stroke="#888888" x1="18.652419010673427" x2="19.063748511955573" y1="96.67532380048418" y2="96.95959135293252"/>
+  <line stroke="#888888" x1="5.584886826581027" x2="7.14451784943502" y1="111.64277190858407" y2="111.64277190858407"/>
+  <line stroke="#888888" x1="7.14451784943502" x2="7.14451784943502" y1="111.64277190858407" y2="114.76203395429205"/>
+  <line stroke="#888888" x1="7.14451784943502" x2="5.584886826581027" y1="114.76203395429205" y2="114.76203395429205"/>
+  <line stroke="#888888" x1="39.954805266984934" x2="48.156187571434046" y1="440.8118780419729" y2="442.73716266280195"/>
+  <line stroke="#888888" x1="48.156187571434046" x2="48.04191831484375" y1="442.73716266280195" y2="443.223930099057"/>
+  <line stroke="#888888" x1="48.04191831484375" x2="39.84053601039464" y1="443.223930099057" y2="441.29864547822785"/>
+  <line stroke="#888888" x1="39.84053601039464" x2="39.954805266984934" y1="441.29864547822785" y2="440.8118780419729"/>
+  <line stroke="#888888" x1="117.69247915028988" x2="125.893861454739" y1="442.73716266280195" y2="440.8118780419729"/>
+  <line stroke="#888888" x1="125.893861454739" x2="126.00813071132929" y1="440.8118780419729" y2="441.29864547822785"/>
+  <line stroke="#888888" x1="126.00813071132929" x2="117.80674840688017" y1="441.29864547822785" y2="443.223930099057"/>
+  <line stroke="#888888" x1="117.80674840688017" x2="117.69247915028988" y1="443.223930099057" y2="442.73716266280195"/>
+  <line stroke="#888888" x1="163.86758338150847" x2="159.90541670107746" y1="431.72996272172406" y2="431.72996272172406"/>
+  <line stroke="#888888" x1="159.90541670107746" x2="159.90541670107746" y1="431.72996272172406" y2="423.8056293608621"/>
+  <line stroke="#888888" x1="159.90541670107746" x2="163.86758338150847" y1="423.8056293608621" y2="423.8056293608621"/>
+  <line stroke="#888888" x1="148.84259573657366" x2="146.78491820976848" y1="99.9370098574736" y2="96.95959135293258"/>
+  <line stroke="#888888" x1="146.78491820976848" x2="147.19624771105066" y1="96.95959135293258" y2="96.67532380048424"/>
+  <line stroke="#888888" x1="147.19624771105066" x2="149.25392523785584" y1="96.67532380048424" y2="99.65274230502526"/>
+  <line stroke="#888888" x1="149.25392523785584" x2="148.84259573657366" y1="99.65274230502526" y2="99.9370098574736"/>
+  <line stroke="#888888" x1="160.26377989514305" x2="158.70414887228904" y1="114.76203395429211" y2="114.76203395429211"/>
+  <line stroke="#888888" x1="158.70414887228904" x2="158.70414887228904" y1="114.76203395429211" y2="111.64277190858412"/>
+  <line stroke="#888888" x1="158.70414887228904" x2="160.26377989514305" y1="111.64277190858412" y2="111.64277190858412"/>
+  <line stroke="#888888" x1="150.17433336086205" x2="150.17433336086205" y1="140.3131141818183" y2="128.7222050909092"/>
+  <line stroke="#888888" x1="150.17433336086205" x2="150.67433336086205" y1="128.7222050909092" y2="128.7222050909092"/>
+  <line stroke="#888888" x1="150.67433336086205" x2="150.67433336086205" y1="128.7222050909092" y2="140.3131141818183"/>
+  <line stroke="#888888" x1="150.67433336086205" x2="150.17433336086205" y1="140.3131141818183" y2="140.3131141818183"/>
+  <line stroke="#888888" x1="150.17433336086205" x2="150.17433336086205" y1="168.040386909091" y2="156.44947781818192"/>
+  <line stroke="#888888" x1="150.17433336086205" x2="150.67433336086205" y1="156.44947781818192" y2="156.44947781818192"/>
+  <line stroke="#888888" x1="150.67433336086205" x2="150.67433336086205" y1="156.44947781818192" y2="168.040386909091"/>
+  <line stroke="#888888" x1="150.67433336086205" x2="150.17433336086205" y1="168.040386909091" y2="168.040386909091"/>
+  <line stroke="#888888" x1="180.84100002752874" x2="169.0076666941954" y1="196.6312960000001" y2="196.6312960000001"/>
+  <line stroke="#888888" x1="169.0076666941954" x2="169.0076666941954" y1="196.6312960000001" y2="196.13129600000008"/>
+  <line stroke="#888888" x1="169.0076666941954" x2="180.84100002752874" y1="196.13129600000008" y2="196.13129600000008"/>
+  <line stroke="#888888" x1="180.84100002752874" x2="180.84100002752874" y1="196.13129600000008" y2="196.6312960000001"/>
+  <line stroke="#888888" x1="268.924333360862" x2="268.924333360862" y1="205.13129600000016" y2="196.63129600000016"/>
+  <line stroke="#888888" x1="268.924333360862" x2="269.4243333608621" y1="196.63129600000016" y2="196.63129600000016"/>
+  <line stroke="#888888" x1="269.4243333608621" x2="269.4243333608621" y1="196.63129600000016" y2="205.13129600000016"/>
+  <line stroke="#888888" x1="269.4243333608621" x2="268.924333360862" y1="205.13129600000016" y2="205.13129600000016"/>
+  <line stroke="#888888" x1="168.92433336086205" x2="168.92433336086205" y1="231.8812960000001" y2="227.88129600000008"/>
+  <line stroke="#888888" x1="168.92433336086205" x2="180.92433336086205" y1="227.88129600000008" y2="227.88129600000008"/>
+  <line stroke="#888888" x1="180.92433336086205" x2="180.92433336086205" y1="227.88129600000008" y2="231.8812960000001"/>
+  <line stroke="#888888" x1="180.92433336086205" x2="168.92433336086205" y1="231.8812960000001" y2="231.8812960000001"/>
+  <line stroke="#888888" x1="170.42433336086202" x2="170.42433336086202" y1="219.8812960000001" y2="215.8812960000001"/>
+  <line stroke="#888888" x1="170.42433336086202" x2="179.42433336086202" y1="215.8812960000001" y2="215.8812960000001"/>
+  <line stroke="#888888" x1="179.42433336086202" x2="179.42433336086202" y1="215.8812960000001" y2="219.8812960000001"/>
+  <line stroke="#888888" x1="179.42433336086202" x2="170.42433336086202" y1="219.8812960000001" y2="219.8812960000001"/>
+  <line stroke="#888888" x1="168.92433336086205" x2="168.92433336086205" y1="256.38129600000013" y2="233.3812960000001"/>
+  <line stroke="#888888" x1="168.92433336086205" x2="180.92433336086205" y1="233.3812960000001" y2="233.3812960000001"/>
+  <line stroke="#888888" x1="180.92433336086205" x2="180.92433336086205" y1="233.3812960000001" y2="256.38129600000013"/>
+  <line stroke="#888888" x1="180.92433336086205" x2="168.92433336086205" y1="256.38129600000013" y2="256.38129600000013"/>
+  <line stroke="#888888" x1="168.92433336086205" x2="168.92433336086205" y1="261.88129600000013" y2="257.8812960000001"/>
+  <line stroke="#888888" x1="168.92433336086205" x2="180.92433336086205" y1="257.8812960000001" y2="257.8812960000001"/>
+  <line stroke="#888888" x1="180.92433336086205" x2="180.92433336086205" y1="257.8812960000001" y2="261.88129600000013"/>
+  <line stroke="#888888" x1="180.92433336086205" x2="168.92433336086205" y1="261.88129600000013" y2="261.88129600000013"/>
+  <line stroke="#888888" x1="169.25766669419536" x2="169.25766669419536" y1="284.3812960000001" y2="279.3812960000001"/>
+  <line stroke="#888888" x1="169.25766669419536" x2="180.59100002752868" y1="279.3812960000001" y2="279.3812960000001"/>
+  <line stroke="#888888" x1="180.59100002752868" x2="180.59100002752868" y1="279.3812960000001" y2="284.3812960000001"/>
+  <line stroke="#888888" x1="224.07861139572347" x2="224.07861139572347" y1="345.3812960000002" y2="342.3812960000002"/>
+  <line stroke="#888888" x1="224.07861139572347" x2="242.07861139572344" y1="342.3812960000002" y2="342.3812960000002"/>
+  <line stroke="#888888" x1="242.07861139572344" x2="242.07861139572344" y1="342.3812960000002" y2="345.3812960000002"/>
+  <line stroke="#888888" x1="242.07861139572344" x2="224.07861139572347" y1="345.3812960000002" y2="345.3812960000002"/>
+  <line stroke="#888888" x1="237.82861139572347" x2="228.32861139572347" y1="293.63129600000013" y2="293.63129600000013"/>
+  <line stroke="#888888" x1="228.32861139572347" x2="228.32861139572347" y1="293.63129600000013" y2="293.13129600000013"/>
+  <line stroke="#888888" x1="228.32861139572347" x2="237.82861139572347" y1="293.13129600000013" y2="293.13129600000013"/>
+  <line stroke="#888888" x1="237.82861139572347" x2="237.82861139572347" y1="293.13129600000013" y2="293.63129600000013"/>
+  <line stroke="#888888" x1="300.4828894305849" x2="300.4828894305849" y1="326.13129600000013" y2="305.6312960000002"/>
+  <line stroke="#888888" x1="300.4828894305849" x2="300.9828894305849" y1="305.6312960000002" y2="305.6312960000002"/>
+  <line stroke="#888888" x1="300.9828894305849" x2="300.9828894305849" y1="305.6312960000002" y2="326.13129600000013"/>
+  <line stroke="#888888" x1="300.9828894305849" x2="300.4828894305849" y1="326.13129600000013" y2="326.13129600000013"/>
+  <line stroke="#888888" x1="224.07861139572339" x2="224.07861139572339" y1="348.8812960000002" y2="345.8812960000002"/>
+  <line stroke="#888888" x1="224.07861139572339" x2="242.0786113957234" y1="345.8812960000002" y2="345.8812960000002"/>
+  <line stroke="#888888" x1="242.0786113957234" x2="242.0786113957234" y1="345.8812960000002" y2="348.8812960000002"/>
+  <line stroke="#888888" x1="242.0786113957234" x2="224.07861139572339" y1="348.8812960000002" y2="348.8812960000002"/>
+  <line stroke="#888888" x1="228.5786113957234" x2="228.5786113957234" y1="447.3812960000002" y2="442.3812960000002"/>
+  <line stroke="#888888" x1="228.5786113957234" x2="237.5786113957234" y1="442.3812960000002" y2="442.3812960000002"/>
+  <line stroke="#888888" x1="237.5786113957234" x2="237.5786113957234" y1="442.3812960000002" y2="447.3812960000002"/>
+  <line stroke="#888888" x1="178.17433336086202" x2="167.674333360862" y1="239.6312960000001" y2="239.6312960000001"/>
+  <line stroke="#888888" x1="167.674333360862" x2="167.674333360862" y1="239.6312960000001" y2="239.13129600000013"/>
+  <line stroke="#888888" x1="167.674333360862" x2="178.17433336086202" y1="239.13129600000013" y2="239.13129600000013"/>
+  <line stroke="#888888" x1="178.17433336086202" x2="178.17433336086202" y1="239.13129600000013" y2="239.6312960000001"/>
+  <line stroke="#888888" x1="167.92433336086197" x2="167.92433336086197" y1="309.38129600000013" y2="304.38129600000013"/>
+  <line stroke="#888888" x1="167.92433336086197" x2="177.924333360862" y1="304.38129600000013" y2="304.38129600000013"/>
+  <line stroke="#888888" x1="177.924333360862" x2="177.924333360862" y1="304.38129600000013" y2="309.38129600000013"/>
+  <line stroke="#888888" x1="195.674333360862" x2="195.674333360862" y1="311.6312960000001" y2="322.13129600000013"/>
+  <line stroke="#888888" x1="195.674333360862" x2="195.17433336086197" y1="322.13129600000013" y2="322.13129600000013"/>
+  <line stroke="#888888" x1="195.17433336086197" x2="195.17433336086197" y1="322.13129600000013" y2="311.6312960000001"/>
+  <line stroke="#888888" x1="195.17433336086197" x2="195.674333360862" y1="311.6312960000001" y2="311.6312960000001"/>
+  <line stroke="#888888" x1="270.174333360862" x2="270.174333360862" y1="322.1312960000002" y2="311.63129600000013"/>
+  <line stroke="#888888" x1="270.174333360862" x2="270.67433336086197" y1="311.63129600000013" y2="311.63129600000013"/>
+  <line stroke="#888888" x1="270.67433336086197" x2="270.67433336086197" y1="311.63129600000013" y2="322.1312960000002"/>
+  <line stroke="#888888" x1="270.67433336086197" x2="270.174333360862" y1="322.1312960000002" y2="322.1312960000002"/>
+  <line stroke="#888888" x1="270.1743333608621" x2="270.1743333608621" y1="222.13129600000016" y2="211.63129600000013"/>
+  <line stroke="#888888" x1="270.1743333608621" x2="270.674333360862" y1="211.63129600000013" y2="211.63129600000013"/>
+  <line stroke="#888888" x1="270.674333360862" x2="270.674333360862" y1="211.63129600000013" y2="222.13129600000016"/>
+  <line stroke="#888888" x1="270.674333360862" x2="270.1743333608621" y1="222.13129600000016" y2="222.13129600000016"/>
+  <line stroke="#888888" x1="180.42433336086205" x2="185.42433336086205" y1="211.88129600000008" y2="211.88129600000008"/>
+  <line stroke="#888888" x1="185.42433336086205" x2="185.42433336086205" y1="211.88129600000008" y2="221.8812960000001"/>
+  <line stroke="#888888" x1="185.42433336086205" x2="180.42433336086205" y1="221.8812960000001" y2="221.8812960000001"/>
+  <line stroke="#888888" x1="287.924333360862" x2="287.924333360862" y1="309.3812960000002" y2="304.3812960000002"/>
+  <line stroke="#888888" x1="287.924333360862" x2="297.924333360862" y1="304.3812960000002" y2="304.3812960000002"/>
+  <line stroke="#888888" x1="297.924333360862" x2="297.924333360862" y1="304.3812960000002" y2="309.3812960000002"/>
+  <line stroke="#888888" x1="297.9243333608621" x2="297.9243333608621" y1="224.38129600000016" y2="229.38129600000016"/>
+  <line stroke="#888888" x1="297.9243333608621" x2="287.9243333608621" y1="229.38129600000016" y2="229.38129600000016"/>
+  <line stroke="#888888" x1="287.9243333608621" x2="287.9243333608621" y1="229.38129600000016" y2="224.38129600000016"/>
+  <line stroke="#888888" x1="300.42433336086197" x2="300.42433336086197" y1="375.88129600000013" y2="370.88129600000013"/>
+  <line stroke="#888888" x1="300.42433336086197" x2="305.42433336086197" y1="370.88129600000013" y2="375.88129600000013"/>
+  <line stroke="#888888" x1="305.42433336086197" x2="305.42433336086197" y1="375.88129600000013" y2="395.8812960000002"/>
+  <line stroke="#888888" x1="305.42433336086197" x2="300.42433336086197" y1="395.8812960000002" y2="400.8812960000002"/>
+  <line stroke="#888888" x1="300.42433336086197" x2="300.42433336086197" y1="400.8812960000002" y2="395.8812960000002"/>
+  <line stroke="#888888" x1="296.8410000275287" x2="285.0076666941954" y1="266.63129600000013" y2="266.63129600000013"/>
+  <line stroke="#888888" x1="285.0076666941954" x2="285.0076666941954" y1="266.63129600000013" y2="266.1312960000002"/>
+  <line stroke="#888888" x1="285.0076666941954" x2="296.8410000275287" y1="266.1312960000002" y2="266.1312960000002"/>
+  <line stroke="#888888" x1="296.8410000275287" x2="296.8410000275287" y1="266.1312960000002" y2="266.63129600000013"/>
+  <line stroke="#888888" x1="189.17433336086205" x2="189.17433336086205" y1="266.8812960000001" y2="264.3812960000001"/>
+  <line stroke="#888888" x1="189.17433336086205" x2="191.67433336086205" y1="264.3812960000001" y2="266.8812960000001"/>
+  <line stroke="#888888" x1="191.67433336086205" x2="191.67433336086205" y1="266.8812960000001" y2="274.8812960000001"/>
+  <line stroke="#888888" x1="191.67433336086205" x2="189.17433336086205" y1="274.8812960000001" y2="277.38129600000013"/>
+  <line stroke="#888888" x1="189.17433336086205" x2="189.17433336086205" y1="277.38129600000013" y2="274.8812960000001"/>
+  <line stroke="#888888" x1="284.9243333608621" x2="284.9243333608621" y1="301.88129600000013" y2="297.88129600000013"/>
+  <line stroke="#888888" x1="284.9243333608621" x2="296.9243333608621" y1="297.88129600000013" y2="297.88129600000013"/>
+  <line stroke="#888888" x1="296.9243333608621" x2="296.9243333608621" y1="297.88129600000013" y2="301.88129600000013"/>
+  <line stroke="#888888" x1="296.9243333608621" x2="284.9243333608621" y1="301.88129600000013" y2="301.88129600000013"/>
+  <line stroke="#888888" x1="286.424333360862" x2="286.424333360862" y1="289.88129600000013" y2="285.8812960000002"/>
+  <line stroke="#888888" x1="286.424333360862" x2="295.424333360862" y1="285.8812960000002" y2="285.8812960000002"/>
+  <line stroke="#888888" x1="295.424333360862" x2="295.424333360862" y1="285.8812960000002" y2="289.88129600000013"/>
+  <line stroke="#888888" x1="295.424333360862" x2="286.424333360862" y1="289.88129600000013" y2="289.88129600000013"/>
+  <line stroke="#888888" x1="284.9243333608621" x2="284.9243333608621" y1="326.3812960000002" y2="303.38129600000013"/>
+  <line stroke="#888888" x1="284.9243333608621" x2="296.9243333608621" y1="303.38129600000013" y2="303.38129600000013"/>
+  <line stroke="#888888" x1="296.9243333608621" x2="296.9243333608621" y1="303.38129600000013" y2="326.3812960000002"/>
+  <line stroke="#888888" x1="296.9243333608621" x2="284.9243333608621" y1="326.3812960000002" y2="326.3812960000002"/>
+  <line stroke="#888888" x1="284.9243333608621" x2="284.9243333608621" y1="331.8812960000002" y2="327.8812960000002"/>
+  <line stroke="#888888" x1="284.9243333608621" x2="296.9243333608621" y1="327.8812960000002" y2="327.8812960000002"/>
+  <line stroke="#888888" x1="296.9243333608621" x2="296.9243333608621" y1="327.8812960000002" y2="331.8812960000002"/>
+  <line stroke="#888888" x1="296.9243333608621" x2="284.9243333608621" y1="331.8812960000002" y2="331.8812960000002"/>
+  <line stroke="#888888" x1="285.2576666941954" x2="285.2576666941954" y1="354.3812960000002" y2="349.3812960000002"/>
+  <line stroke="#888888" x1="285.2576666941954" x2="296.5910000275287" y1="349.3812960000002" y2="349.3812960000002"/>
+  <line stroke="#888888" x1="296.5910000275287" x2="296.5910000275287" y1="349.3812960000002" y2="354.3812960000002"/>
+  <line stroke="#888888" x1="253.28571136167673" x2="253.28571136167673" y1="230.88129600000016" y2="219.88129600000016"/>
+  <line stroke="#888888" x1="253.28571136167673" x2="266.2857113616767" y1="219.88129600000016" y2="219.88129600000016"/>
+  <line stroke="#888888" x1="266.2857113616767" x2="266.2857113616767" y1="219.88129600000016" y2="230.88129600000016"/>
+  <line stroke="#888888" x1="266.2857113616767" x2="253.28571136167673" y1="230.88129600000016" y2="230.88129600000016"/>
+  <line stroke="#888888" x1="254.78571136167673" x2="254.78571136167673" y1="199.38129600000016" y2="193.38129600000013"/>
+  <line stroke="#888888" x1="254.78571136167673" x2="264.78571136167676" y1="193.38129600000013" y2="193.38129600000013"/>
+  <line stroke="#888888" x1="264.78571136167676" x2="264.78571136167676" y1="193.38129600000013" y2="199.38129600000016"/>
+  <line stroke="#888888" x1="264.78571136167676" x2="254.78571136167673" y1="199.38129600000016" y2="199.38129600000016"/>
+  <line stroke="#888888" x1="204.14708936249147" x2="209.14708936249147" y1="198.9722050909092" y2="198.9722050909092"/>
+  <line stroke="#888888" x1="209.14708936249147" x2="209.14708936249147" y1="198.9722050909092" y2="210.0631141818183"/>
+  <line stroke="#888888" x1="209.14708936249147" x2="204.14708936249147" y1="210.0631141818183" y2="210.0631141818183"/>
+  <line stroke="#888888" x1="204.14708936249147" x2="209.14708936249147" y1="226.69947781818195" y2="226.69947781818195"/>
+  <line stroke="#888888" x1="209.14708936249147" x2="209.14708936249147" y1="226.69947781818195" y2="237.79038690909104"/>
+  <line stroke="#888888" x1="209.14708936249147" x2="204.14708936249147" y1="237.79038690909104" y2="237.79038690909104"/>
+  <line stroke="#888888" x1="263.78571136167676" x2="263.78571136167676" y1="180.38129600000016" y2="185.38129600000016"/>
+  <line stroke="#888888" x1="263.78571136167676" x2="255.7857113616768" y1="185.38129600000016" y2="185.38129600000016"/>
+  <line stroke="#888888" x1="255.7857113616768" x2="255.7857113616768" y1="185.38129600000016" y2="180.38129600000016"/>
+  <line stroke="#888888" x1="255.78571136167673" x2="255.78571136167673" y1="256.3812960000002" y2="251.38129600000013"/>
+  <line stroke="#888888" x1="255.78571136167673" x2="263.7857113616767" y1="251.38129600000013" y2="251.38129600000013"/>
+  <line stroke="#888888" x1="263.7857113616767" x2="263.7857113616767" y1="251.38129600000013" y2="256.3812960000002"/>
+  <line stroke="#888888" x1="1.9810833402154915" x2="5.943250020646475" y1="423.8056293608621" y2="423.8056293608621"/>
+  <line stroke="#888888" x1="5.943250020646475" x2="5.943250020646475" y1="423.8056293608621" y2="431.72996272172406"/>
+  <line stroke="#888888" x1="5.943250020646475" x2="1.9810833402154915" y1="431.72996272172406" y2="431.72996272172406"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="351.2328894305849" x2="412.2328894305849" y1="254.88129600000005" y2="254.88129600000005"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="412.2328894305849" x2="412.2328894305849" y1="254.88129600000005" y2="278.8812960000001"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="412.2328894305849" x2="351.2328894305849" y1="278.8812960000001" y2="278.8812960000001"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="351.2328894305849" x2="351.2328894305849" y1="278.8812960000001" y2="254.88129600000005"/>
+  <line stroke="#000000" x1="351.2328894305849" x2="351.2328894305849" y1="247.88129600000005" y2="254.88129600000005"/>
+  <line stroke="#000000" x1="411.2328894305849" x2="351.2328894305849" y1="247.88129600000005" y2="247.88129600000005"/>
+  <line stroke="#000000" x1="411.2328894305849" x2="411.2328894305849" y1="254.88129600000005" y2="247.88129600000005"/>
+  <line stroke="#000000" x1="419.2328894305849" x2="412.2328894305849" y1="254.88129600000005" y2="254.88129600000005"/>
+  <line stroke="#000000" x1="419.2328894305849" x2="419.2328894305849" y1="278.8812960000001" y2="254.88129600000005"/>
+  <line stroke="#000000" x1="412.2328894305849" x2="419.2328894305849" y1="278.8812960000001" y2="278.8812960000001"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="412.2328894305849" x2="412.2328894305849" y1="278.8812960000001" y2="339.881296"/>
+  <line stroke="#000000" x1="352.23288943058486" x2="412.2328894305849" y1="339.881296" y2="339.881296"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="352.23288943058486" x2="352.23288943058486" y1="278.8812960000001" y2="339.881296"/>
+  <line stroke="#000000" x1="436.2328894305849" x2="412.2328894305849" y1="278.8812960000001" y2="278.8812960000001"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="436.2328894305849" x2="436.2328894305849" y1="278.8812960000001" y2="339.881296"/>
+  <line stroke="#000000" x1="412.2328894305849" x2="436.2328894305849" y1="339.881296" y2="339.881296"/>
+  <line stroke="#000000" x1="496.2328894305849" x2="436.2328894305849" y1="278.8812960000001" y2="278.8812960000001"/>
+  <line stroke="#000000" x1="496.2328894305849" x2="496.2328894305849" y1="339.881296" y2="278.8812960000001"/>
+  <line stroke="#000000" x1="436.2328894305849" x2="496.2328894305849" y1="339.881296" y2="339.881296"/>
+  <line stroke="#000000" x1="352.23288943058486" x2="328.2328894305849" y1="278.8812960000001" y2="278.8812960000001"/>
+  <line stroke="#000000" x1="328.2328894305849" x2="352.23288943058486" y1="339.881296" y2="339.881296"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="328.2328894305849" x2="328.2328894305849" y1="339.881296" y2="278.8812960000001"/>
+  <line stroke="#000000" x1="318.2328894305849" x2="328.2328894305849" y1="339.881296" y2="339.881296"/>
+  <line stroke="#000000" x1="318.2328894305849" x2="318.2328894305849" y1="278.8812960000001" y2="339.881296"/>
+  <line stroke="#000000" x1="328.2328894305849" x2="318.2328894305849" y1="278.8812960000001" y2="278.8812960000001"/>
+  <line stroke="#000000" x1="344.23288943058486" x2="351.2328894305849" y1="278.8812960000001" y2="278.8812960000001"/>
+  <line stroke="#000000" x1="344.23288943058486" x2="344.23288943058486" y1="254.88129600000005" y2="278.8812960000001"/>
+  <line stroke="#000000" x1="351.2328894305849" x2="344.23288943058486" y1="254.88129600000005" y2="254.88129600000005"/>
+  <line stroke="#888888" x1="400.323798521494" x2="403.823798521494" y1="249.63129600000005" y2="249.63129600000005"/>
+  <line stroke="#888888" x1="403.823798521494" x2="400.323798521494" y1="249.63129600000005" y2="253.13129600000005"/>
+  <line stroke="#888888" x1="400.323798521494" x2="389.4147076124031" y1="253.13129600000005" y2="253.13129600000005"/>
+  <line stroke="#888888" x1="389.4147076124031" x2="385.9147076124031" y1="253.13129600000005" y2="249.63129600000005"/>
+  <line stroke="#888888" x1="385.9147076124031" x2="389.4147076124031" y1="249.63129600000005" y2="249.63129600000005"/>
+  <line stroke="#888888" x1="373.0510712487667" x2="376.55107124876673" y1="249.63129600000005" y2="249.63129600000005"/>
+  <line stroke="#888888" x1="376.55107124876673" x2="373.0510712487667" y1="249.63129600000005" y2="253.13129600000005"/>
+  <line stroke="#888888" x1="373.0510712487667" x2="362.14198033967585" y1="253.13129600000005" y2="253.13129600000005"/>
+  <line stroke="#888888" x1="362.14198033967585" x2="358.6419803396758" y1="253.13129600000005" y2="249.63129600000005"/>
+  <line stroke="#888888" x1="358.6419803396758" x2="362.14198033967585" y1="249.63129600000005" y2="249.63129600000005"/>
+  <line stroke="#888888" x1="417.4828894305849" x2="413.9828894305849" y1="270.8812960000001" y2="270.8812960000001"/>
+  <line stroke="#888888" x1="413.9828894305849" x2="413.9828894305849" y1="270.8812960000001" y2="262.881296"/>
+  <line stroke="#888888" x1="413.9828894305849" x2="417.4828894305849" y1="262.881296" y2="262.881296"/>
+  <line stroke="#888888" x1="359.7328894305849" x2="359.7328894305849" y1="330.381296" y2="312.381296"/>
+  <line stroke="#888888" x1="359.7328894305849" x2="394.7328894305849" y1="312.381296" y2="312.381296"/>
+  <line stroke="#888888" x1="394.7328894305849" x2="394.7328894305849" y1="312.381296" y2="330.381296"/>
+  <line stroke="#888888" x1="394.7328894305849" x2="359.7328894305849" y1="330.381296" y2="330.381296"/>
+  <line stroke="#888888" x1="412.7328894305849" x2="412.7328894305849" y1="292.1312960000001" y2="289.131296"/>
+  <line stroke="#888888" x1="412.7328894305849" x2="415.7328894305849" y1="289.131296" y2="289.131296"/>
+  <line stroke="#888888" x1="415.7328894305849" x2="415.7328894305849" y1="289.131296" y2="292.1312960000001"/>
+  <line stroke="#888888" x1="415.7328894305849" x2="412.7328894305849" y1="292.1312960000001" y2="292.1312960000001"/>
+  <line stroke="#888888" x1="433.7328894305849" x2="433.7328894305849" y1="291.1312960000001" y2="290.131296"/>
+  <line stroke="#888888" x1="433.7328894305849" x2="434.73288943058486" y1="290.131296" y2="290.131296"/>
+  <line stroke="#888888" x1="434.73288943058486" x2="434.73288943058486" y1="290.131296" y2="291.1312960000001"/>
+  <line stroke="#888888" x1="434.73288943058486" x2="433.7328894305849" y1="291.1312960000001" y2="291.1312960000001"/>
+  <line stroke="#888888" x1="413.7328894305849" x2="413.7328894305849" y1="293.631296" y2="292.6312960000001"/>
+  <line stroke="#888888" x1="413.7328894305849" x2="414.7328894305849" y1="292.6312960000001" y2="292.6312960000001"/>
+  <line stroke="#888888" x1="414.7328894305849" x2="414.7328894305849" y1="292.6312960000001" y2="293.631296"/>
+  <line stroke="#888888" x1="414.7328894305849" x2="413.7328894305849" y1="293.631296" y2="293.631296"/>
+  <line stroke="#888888" x1="433.7328894305849" x2="433.7328894305849" y1="293.631296" y2="292.6312960000001"/>
+  <line stroke="#888888" x1="433.7328894305849" x2="434.73288943058486" y1="292.6312960000001" y2="292.6312960000001"/>
+  <line stroke="#888888" x1="434.73288943058486" x2="434.73288943058486" y1="292.6312960000001" y2="293.631296"/>
+  <line stroke="#888888" x1="434.73288943058486" x2="433.7328894305849" y1="293.631296" y2="293.631296"/>
+  <line stroke="#888888" x1="413.7328894305849" x2="413.7328894305849" y1="296.1312960000001" y2="295.1312960000001"/>
+  <line stroke="#888888" x1="413.7328894305849" x2="414.7328894305849" y1="295.1312960000001" y2="295.1312960000001"/>
+  <line stroke="#888888" x1="414.7328894305849" x2="414.7328894305849" y1="295.1312960000001" y2="296.1312960000001"/>
+  <line stroke="#888888" x1="414.7328894305849" x2="413.7328894305849" y1="296.1312960000001" y2="296.1312960000001"/>
+  <line stroke="#888888" x1="433.7328894305849" x2="433.7328894305849" y1="296.1312960000001" y2="295.1312960000001"/>
+  <line stroke="#888888" x1="433.7328894305849" x2="434.73288943058486" y1="295.1312960000001" y2="295.1312960000001"/>
+  <line stroke="#888888" x1="434.73288943058486" x2="434.73288943058486" y1="295.1312960000001" y2="296.1312960000001"/>
+  <line stroke="#888888" x1="434.73288943058486" x2="433.7328894305849" y1="296.1312960000001" y2="296.1312960000001"/>
+  <line stroke="#888888" x1="413.7328894305849" x2="413.7328894305849" y1="298.631296" y2="297.6312960000001"/>
+  <line stroke="#888888" x1="413.7328894305849" x2="414.7328894305849" y1="297.6312960000001" y2="297.6312960000001"/>
+  <line stroke="#888888" x1="414.7328894305849" x2="414.7328894305849" y1="297.6312960000001" y2="298.631296"/>
+  <line stroke="#888888" x1="414.7328894305849" x2="413.7328894305849" y1="298.631296" y2="298.631296"/>
+  <line stroke="#888888" x1="433.7328894305849" x2="433.7328894305849" y1="298.631296" y2="297.6312960000001"/>
+  <line stroke="#888888" x1="433.7328894305849" x2="434.73288943058486" y1="297.6312960000001" y2="297.6312960000001"/>
+  <line stroke="#888888" x1="434.73288943058486" x2="434.73288943058486" y1="297.6312960000001" y2="298.631296"/>
+  <line stroke="#888888" x1="434.73288943058486" x2="433.7328894305849" y1="298.631296" y2="298.631296"/>
+  <line stroke="#888888" x1="413.7328894305849" x2="413.7328894305849" y1="301.1312960000001" y2="300.1312960000001"/>
+  <line stroke="#888888" x1="413.7328894305849" x2="414.7328894305849" y1="300.1312960000001" y2="300.1312960000001"/>
+  <line stroke="#888888" x1="414.7328894305849" x2="414.7328894305849" y1="300.1312960000001" y2="301.1312960000001"/>
+  <line stroke="#888888" x1="414.7328894305849" x2="413.7328894305849" y1="301.1312960000001" y2="301.1312960000001"/>
+  <line stroke="#888888" x1="433.7328894305849" x2="433.7328894305849" y1="301.1312960000001" y2="300.1312960000001"/>
+  <line stroke="#888888" x1="433.7328894305849" x2="434.73288943058486" y1="300.1312960000001" y2="300.1312960000001"/>
+  <line stroke="#888888" x1="434.73288943058486" x2="434.73288943058486" y1="300.1312960000001" y2="301.1312960000001"/>
+  <line stroke="#888888" x1="434.73288943058486" x2="433.7328894305849" y1="301.1312960000001" y2="301.1312960000001"/>
+  <line stroke="#888888" x1="413.7328894305849" x2="413.7328894305849" y1="303.631296" y2="302.631296"/>
+  <line stroke="#888888" x1="413.7328894305849" x2="414.7328894305849" y1="302.631296" y2="302.631296"/>
+  <line stroke="#888888" x1="414.7328894305849" x2="414.7328894305849" y1="302.631296" y2="303.631296"/>
+  <line stroke="#888888" x1="414.7328894305849" x2="413.7328894305849" y1="303.631296" y2="303.631296"/>
+  <line stroke="#888888" x1="433.7328894305849" x2="433.7328894305849" y1="303.631296" y2="302.631296"/>
+  <line stroke="#888888" x1="433.7328894305849" x2="434.73288943058486" y1="302.631296" y2="302.631296"/>
+  <line stroke="#888888" x1="434.73288943058486" x2="434.73288943058486" y1="302.631296" y2="303.631296"/>
+  <line stroke="#888888" x1="434.73288943058486" x2="433.7328894305849" y1="303.631296" y2="303.631296"/>
+  <line stroke="#888888" x1="413.7328894305849" x2="413.7328894305849" y1="306.1312960000001" y2="305.1312960000001"/>
+  <line stroke="#888888" x1="413.7328894305849" x2="414.7328894305849" y1="305.1312960000001" y2="305.1312960000001"/>
+  <line stroke="#888888" x1="414.7328894305849" x2="414.7328894305849" y1="305.1312960000001" y2="306.1312960000001"/>
+  <line stroke="#888888" x1="414.7328894305849" x2="413.7328894305849" y1="306.1312960000001" y2="306.1312960000001"/>
+  <line stroke="#888888" x1="433.7328894305849" x2="433.7328894305849" y1="306.1312960000001" y2="305.1312960000001"/>
+  <line stroke="#888888" x1="433.7328894305849" x2="434.73288943058486" y1="305.1312960000001" y2="305.1312960000001"/>
+  <line stroke="#888888" x1="434.73288943058486" x2="434.73288943058486" y1="305.1312960000001" y2="306.1312960000001"/>
+  <line stroke="#888888" x1="434.73288943058486" x2="433.7328894305849" y1="306.1312960000001" y2="306.1312960000001"/>
+  <line stroke="#888888" x1="413.7328894305849" x2="413.7328894305849" y1="308.6312960000001" y2="307.631296"/>
+  <line stroke="#888888" x1="413.7328894305849" x2="414.7328894305849" y1="307.631296" y2="307.631296"/>
+  <line stroke="#888888" x1="414.7328894305849" x2="414.7328894305849" y1="307.631296" y2="308.6312960000001"/>
+  <line stroke="#888888" x1="414.7328894305849" x2="413.7328894305849" y1="308.6312960000001" y2="308.6312960000001"/>
+  <line stroke="#888888" x1="433.7328894305849" x2="433.7328894305849" y1="308.6312960000001" y2="307.631296"/>
+  <line stroke="#888888" x1="433.7328894305849" x2="434.73288943058486" y1="307.631296" y2="307.631296"/>
+  <line stroke="#888888" x1="434.73288943058486" x2="434.73288943058486" y1="307.631296" y2="308.6312960000001"/>
+  <line stroke="#888888" x1="434.73288943058486" x2="433.7328894305849" y1="308.6312960000001" y2="308.6312960000001"/>
+  <line stroke="#888888" x1="413.7328894305849" x2="413.7328894305849" y1="311.1312960000001" y2="310.1312960000001"/>
+  <line stroke="#888888" x1="413.7328894305849" x2="414.7328894305849" y1="310.1312960000001" y2="310.1312960000001"/>
+  <line stroke="#888888" x1="414.7328894305849" x2="414.7328894305849" y1="310.1312960000001" y2="311.1312960000001"/>
+  <line stroke="#888888" x1="414.7328894305849" x2="413.7328894305849" y1="311.1312960000001" y2="311.1312960000001"/>
+  <line stroke="#888888" x1="433.7328894305849" x2="433.7328894305849" y1="311.1312960000001" y2="310.1312960000001"/>
+  <line stroke="#888888" x1="433.7328894305849" x2="434.73288943058486" y1="310.1312960000001" y2="310.1312960000001"/>
+  <line stroke="#888888" x1="434.73288943058486" x2="434.73288943058486" y1="310.1312960000001" y2="311.1312960000001"/>
+  <line stroke="#888888" x1="434.73288943058486" x2="433.7328894305849" y1="311.1312960000001" y2="311.1312960000001"/>
+  <line stroke="#888888" x1="413.7328894305849" x2="413.7328894305849" y1="313.6312960000001" y2="312.631296"/>
+  <line stroke="#888888" x1="413.7328894305849" x2="414.7328894305849" y1="312.631296" y2="312.631296"/>
+  <line stroke="#888888" x1="414.7328894305849" x2="414.7328894305849" y1="312.631296" y2="313.6312960000001"/>
+  <line stroke="#888888" x1="414.7328894305849" x2="413.7328894305849" y1="313.6312960000001" y2="313.6312960000001"/>
+  <line stroke="#888888" x1="433.7328894305849" x2="433.7328894305849" y1="313.6312960000001" y2="312.631296"/>
+  <line stroke="#888888" x1="433.7328894305849" x2="434.73288943058486" y1="312.631296" y2="312.631296"/>
+  <line stroke="#888888" x1="434.73288943058486" x2="434.73288943058486" y1="312.631296" y2="313.6312960000001"/>
+  <line stroke="#888888" x1="434.73288943058486" x2="433.7328894305849" y1="313.6312960000001" y2="313.6312960000001"/>
+  <line stroke="#888888" x1="413.7328894305849" x2="413.7328894305849" y1="316.131296" y2="315.1312960000001"/>
+  <line stroke="#888888" x1="413.7328894305849" x2="414.7328894305849" y1="315.1312960000001" y2="315.1312960000001"/>
+  <line stroke="#888888" x1="414.7328894305849" x2="414.7328894305849" y1="315.1312960000001" y2="316.131296"/>
+  <line stroke="#888888" x1="414.7328894305849" x2="413.7328894305849" y1="316.131296" y2="316.131296"/>
+  <line stroke="#888888" x1="433.7328894305849" x2="433.7328894305849" y1="316.131296" y2="315.1312960000001"/>
+  <line stroke="#888888" x1="433.7328894305849" x2="434.73288943058486" y1="315.1312960000001" y2="315.1312960000001"/>
+  <line stroke="#888888" x1="434.73288943058486" x2="434.73288943058486" y1="315.1312960000001" y2="316.131296"/>
+  <line stroke="#888888" x1="434.73288943058486" x2="433.7328894305849" y1="316.131296" y2="316.131296"/>
+  <line stroke="#888888" x1="413.7328894305849" x2="413.7328894305849" y1="318.6312960000001" y2="317.6312960000001"/>
+  <line stroke="#888888" x1="413.7328894305849" x2="414.7328894305849" y1="317.6312960000001" y2="317.6312960000001"/>
+  <line stroke="#888888" x1="414.7328894305849" x2="414.7328894305849" y1="317.6312960000001" y2="318.6312960000001"/>
+  <line stroke="#888888" x1="414.7328894305849" x2="413.7328894305849" y1="318.6312960000001" y2="318.6312960000001"/>
+  <line stroke="#888888" x1="433.7328894305849" x2="433.7328894305849" y1="318.6312960000001" y2="317.6312960000001"/>
+  <line stroke="#888888" x1="433.7328894305849" x2="434.73288943058486" y1="317.6312960000001" y2="317.6312960000001"/>
+  <line stroke="#888888" x1="434.73288943058486" x2="434.73288943058486" y1="317.6312960000001" y2="318.6312960000001"/>
+  <line stroke="#888888" x1="434.73288943058486" x2="433.7328894305849" y1="318.6312960000001" y2="318.6312960000001"/>
+  <line stroke="#888888" x1="413.7328894305849" x2="413.7328894305849" y1="321.131296" y2="320.1312960000001"/>
+  <line stroke="#888888" x1="413.7328894305849" x2="414.7328894305849" y1="320.1312960000001" y2="320.1312960000001"/>
+  <line stroke="#888888" x1="414.7328894305849" x2="414.7328894305849" y1="320.1312960000001" y2="321.131296"/>
+  <line stroke="#888888" x1="414.7328894305849" x2="413.7328894305849" y1="321.131296" y2="321.131296"/>
+  <line stroke="#888888" x1="433.7328894305849" x2="433.7328894305849" y1="321.131296" y2="320.1312960000001"/>
+  <line stroke="#888888" x1="433.7328894305849" x2="434.73288943058486" y1="320.1312960000001" y2="320.1312960000001"/>
+  <line stroke="#888888" x1="434.73288943058486" x2="434.73288943058486" y1="320.1312960000001" y2="321.131296"/>
+  <line stroke="#888888" x1="434.73288943058486" x2="433.7328894305849" y1="321.131296" y2="321.131296"/>
+  <line stroke="#888888" x1="413.7328894305849" x2="413.7328894305849" y1="323.6312960000001" y2="322.6312960000001"/>
+  <line stroke="#888888" x1="413.7328894305849" x2="414.7328894305849" y1="322.6312960000001" y2="322.6312960000001"/>
+  <line stroke="#888888" x1="414.7328894305849" x2="414.7328894305849" y1="322.6312960000001" y2="323.6312960000001"/>
+  <line stroke="#888888" x1="414.7328894305849" x2="413.7328894305849" y1="323.6312960000001" y2="323.6312960000001"/>
+  <line stroke="#888888" x1="433.7328894305849" x2="433.7328894305849" y1="323.6312960000001" y2="322.6312960000001"/>
+  <line stroke="#888888" x1="433.7328894305849" x2="434.73288943058486" y1="322.6312960000001" y2="322.6312960000001"/>
+  <line stroke="#888888" x1="434.73288943058486" x2="434.73288943058486" y1="322.6312960000001" y2="323.6312960000001"/>
+  <line stroke="#888888" x1="434.73288943058486" x2="433.7328894305849" y1="323.6312960000001" y2="323.6312960000001"/>
+  <line stroke="#888888" x1="413.7328894305849" x2="413.7328894305849" y1="326.131296" y2="325.131296"/>
+  <line stroke="#888888" x1="413.7328894305849" x2="414.7328894305849" y1="325.131296" y2="325.131296"/>
+  <line stroke="#888888" x1="414.7328894305849" x2="414.7328894305849" y1="325.131296" y2="326.131296"/>
+  <line stroke="#888888" x1="414.7328894305849" x2="413.7328894305849" y1="326.131296" y2="326.131296"/>
+  <line stroke="#888888" x1="433.7328894305849" x2="433.7328894305849" y1="326.131296" y2="325.131296"/>
+  <line stroke="#888888" x1="433.7328894305849" x2="434.73288943058486" y1="325.131296" y2="325.131296"/>
+  <line stroke="#888888" x1="434.73288943058486" x2="434.73288943058486" y1="325.131296" y2="326.131296"/>
+  <line stroke="#888888" x1="434.73288943058486" x2="433.7328894305849" y1="326.131296" y2="326.131296"/>
+  <line stroke="#888888" x1="413.7328894305849" x2="413.7328894305849" y1="328.6312960000001" y2="327.6312960000001"/>
+  <line stroke="#888888" x1="413.7328894305849" x2="414.7328894305849" y1="327.6312960000001" y2="327.6312960000001"/>
+  <line stroke="#888888" x1="414.7328894305849" x2="414.7328894305849" y1="327.6312960000001" y2="328.6312960000001"/>
+  <line stroke="#888888" x1="414.7328894305849" x2="413.7328894305849" y1="328.6312960000001" y2="328.6312960000001"/>
+  <line stroke="#888888" x1="432.7328894305849" x2="432.7328894305849" y1="329.6312960000001" y2="326.631296"/>
+  <line stroke="#888888" x1="432.7328894305849" x2="435.7328894305849" y1="326.631296" y2="326.631296"/>
+  <line stroke="#888888" x1="435.7328894305849" x2="435.7328894305849" y1="326.631296" y2="329.6312960000001"/>
+  <line stroke="#888888" x1="435.7328894305849" x2="432.7328894305849" y1="329.6312960000001" y2="329.6312960000001"/>
+  <line stroke="#888888" x1="428.4828894305849" x2="419.9828894305849" y1="286.6312960000001" y2="286.6312960000001"/>
+  <line stroke="#888888" x1="419.9828894305849" x2="419.9828894305849" y1="286.6312960000001" y2="286.1312960000001"/>
+  <line stroke="#888888" x1="419.9828894305849" x2="428.4828894305849" y1="286.1312960000001" y2="286.1312960000001"/>
+  <line stroke="#888888" x1="428.4828894305849" x2="428.4828894305849" y1="286.1312960000001" y2="286.6312960000001"/>
+  <line stroke="#888888" x1="419.9828894305849" x2="428.4828894305849" y1="334.381296" y2="334.381296"/>
+  <line stroke="#888888" x1="428.4828894305849" x2="428.4828894305849" y1="334.381296" y2="334.881296"/>
+  <line stroke="#888888" x1="428.4828894305849" x2="419.9828894305849" y1="334.881296" y2="334.881296"/>
+  <line stroke="#888888" x1="419.9828894305849" x2="419.9828894305849" y1="334.881296" y2="334.381296"/>
+  <line stroke="#888888" x1="451.2328894305849" x2="451.2328894305849" y1="329.881296" y2="316.881296"/>
+  <line stroke="#888888" x1="451.2328894305849" x2="481.2328894305849" y1="316.881296" y2="316.881296"/>
+  <line stroke="#888888" x1="481.2328894305849" x2="481.2328894305849" y1="316.881296" y2="329.881296"/>
+  <line stroke="#888888" x1="481.2328894305849" x2="451.2328894305849" y1="329.881296" y2="329.881296"/>
+  <line stroke="#888888" x1="458.30107124876673" x2="446.89198033967585" y1="284.381296" y2="284.381296"/>
+  <line stroke="#888888" x1="446.89198033967585" x2="446.89198033967585" y1="284.381296" y2="283.8812960000001"/>
+  <line stroke="#888888" x1="446.89198033967585" x2="458.30107124876673" y1="283.8812960000001" y2="283.8812960000001"/>
+  <line stroke="#888888" x1="458.30107124876673" x2="458.30107124876673" y1="283.8812960000001" y2="284.381296"/>
+  <line stroke="#888888" x1="485.573798521494" x2="474.1647076124031" y1="284.381296" y2="284.381296"/>
+  <line stroke="#888888" x1="474.1647076124031" x2="474.1647076124031" y1="284.381296" y2="283.8812960000001"/>
+  <line stroke="#888888" x1="474.1647076124031" x2="485.573798521494" y1="283.8812960000001" y2="283.8812960000001"/>
+  <line stroke="#888888" x1="485.573798521494" x2="485.573798521494" y1="283.8812960000001" y2="284.381296"/>
+  <line stroke="#888888" x1="488.4828894305849" x2="488.4828894305849" y1="301.3131141818182" y2="289.7222050909092"/>
+  <line stroke="#888888" x1="488.4828894305849" x2="488.9828894305849" y1="289.7222050909092" y2="289.7222050909092"/>
+  <line stroke="#888888" x1="488.9828894305849" x2="488.9828894305849" y1="289.7222050909092" y2="301.3131141818182"/>
+  <line stroke="#888888" x1="488.9828894305849" x2="488.4828894305849" y1="301.3131141818182" y2="301.3131141818182"/>
+  <line stroke="#888888" x1="488.4828894305849" x2="488.4828894305849" y1="329.040386909091" y2="317.4494778181819"/>
+  <line stroke="#888888" x1="488.4828894305849" x2="488.9828894305849" y1="317.4494778181819" y2="317.4494778181819"/>
+  <line stroke="#888888" x1="488.9828894305849" x2="488.9828894305849" y1="317.4494778181819" y2="329.040386909091"/>
+  <line stroke="#888888" x1="488.9828894305849" x2="488.4828894305849" y1="329.040386909091" y2="329.040386909091"/>
+  <line stroke="#888888" x1="328.7328894305849" x2="328.7328894305849" y1="292.1312960000001" y2="289.131296"/>
+  <line stroke="#888888" x1="328.7328894305849" x2="331.7328894305849" y1="289.131296" y2="289.131296"/>
+  <line stroke="#888888" x1="331.7328894305849" x2="331.7328894305849" y1="289.131296" y2="292.1312960000001"/>
+  <line stroke="#888888" x1="331.7328894305849" x2="328.7328894305849" y1="292.1312960000001" y2="292.1312960000001"/>
+  <line stroke="#888888" x1="349.7328894305849" x2="349.7328894305849" y1="291.1312960000001" y2="290.131296"/>
+  <line stroke="#888888" x1="349.7328894305849" x2="350.7328894305849" y1="290.131296" y2="290.131296"/>
+  <line stroke="#888888" x1="350.7328894305849" x2="350.7328894305849" y1="290.131296" y2="291.1312960000001"/>
+  <line stroke="#888888" x1="350.7328894305849" x2="349.7328894305849" y1="291.1312960000001" y2="291.1312960000001"/>
+  <line stroke="#888888" x1="329.73288943058486" x2="329.73288943058486" y1="293.631296" y2="292.6312960000001"/>
+  <line stroke="#888888" x1="329.73288943058486" x2="330.7328894305849" y1="292.6312960000001" y2="292.6312960000001"/>
+  <line stroke="#888888" x1="330.7328894305849" x2="330.7328894305849" y1="292.6312960000001" y2="293.631296"/>
+  <line stroke="#888888" x1="330.7328894305849" x2="329.73288943058486" y1="293.631296" y2="293.631296"/>
+  <line stroke="#888888" x1="349.7328894305849" x2="349.7328894305849" y1="293.631296" y2="292.6312960000001"/>
+  <line stroke="#888888" x1="349.7328894305849" x2="350.7328894305849" y1="292.6312960000001" y2="292.6312960000001"/>
+  <line stroke="#888888" x1="350.7328894305849" x2="350.7328894305849" y1="292.6312960000001" y2="293.631296"/>
+  <line stroke="#888888" x1="350.7328894305849" x2="349.7328894305849" y1="293.631296" y2="293.631296"/>
+  <line stroke="#888888" x1="329.73288943058486" x2="329.73288943058486" y1="296.1312960000001" y2="295.1312960000001"/>
+  <line stroke="#888888" x1="329.73288943058486" x2="330.7328894305849" y1="295.1312960000001" y2="295.1312960000001"/>
+  <line stroke="#888888" x1="330.7328894305849" x2="330.7328894305849" y1="295.1312960000001" y2="296.1312960000001"/>
+  <line stroke="#888888" x1="330.7328894305849" x2="329.73288943058486" y1="296.1312960000001" y2="296.1312960000001"/>
+  <line stroke="#888888" x1="349.7328894305849" x2="349.7328894305849" y1="296.1312960000001" y2="295.1312960000001"/>
+  <line stroke="#888888" x1="349.7328894305849" x2="350.7328894305849" y1="295.1312960000001" y2="295.1312960000001"/>
+  <line stroke="#888888" x1="350.7328894305849" x2="350.7328894305849" y1="295.1312960000001" y2="296.1312960000001"/>
+  <line stroke="#888888" x1="350.7328894305849" x2="349.7328894305849" y1="296.1312960000001" y2="296.1312960000001"/>
+  <line stroke="#888888" x1="329.73288943058486" x2="329.73288943058486" y1="298.631296" y2="297.6312960000001"/>
+  <line stroke="#888888" x1="329.73288943058486" x2="330.7328894305849" y1="297.6312960000001" y2="297.6312960000001"/>
+  <line stroke="#888888" x1="330.7328894305849" x2="330.7328894305849" y1="297.6312960000001" y2="298.631296"/>
+  <line stroke="#888888" x1="330.7328894305849" x2="329.73288943058486" y1="298.631296" y2="298.631296"/>
+  <line stroke="#888888" x1="349.7328894305849" x2="349.7328894305849" y1="298.631296" y2="297.6312960000001"/>
+  <line stroke="#888888" x1="349.7328894305849" x2="350.7328894305849" y1="297.6312960000001" y2="297.6312960000001"/>
+  <line stroke="#888888" x1="350.7328894305849" x2="350.7328894305849" y1="297.6312960000001" y2="298.631296"/>
+  <line stroke="#888888" x1="350.7328894305849" x2="349.7328894305849" y1="298.631296" y2="298.631296"/>
+  <line stroke="#888888" x1="329.73288943058486" x2="329.73288943058486" y1="301.1312960000001" y2="300.1312960000001"/>
+  <line stroke="#888888" x1="329.73288943058486" x2="330.7328894305849" y1="300.1312960000001" y2="300.1312960000001"/>
+  <line stroke="#888888" x1="330.7328894305849" x2="330.7328894305849" y1="300.1312960000001" y2="301.1312960000001"/>
+  <line stroke="#888888" x1="330.7328894305849" x2="329.73288943058486" y1="301.1312960000001" y2="301.1312960000001"/>
+  <line stroke="#888888" x1="349.7328894305849" x2="349.7328894305849" y1="301.1312960000001" y2="300.1312960000001"/>
+  <line stroke="#888888" x1="349.7328894305849" x2="350.7328894305849" y1="300.1312960000001" y2="300.1312960000001"/>
+  <line stroke="#888888" x1="350.7328894305849" x2="350.7328894305849" y1="300.1312960000001" y2="301.1312960000001"/>
+  <line stroke="#888888" x1="350.7328894305849" x2="349.7328894305849" y1="301.1312960000001" y2="301.1312960000001"/>
+  <line stroke="#888888" x1="329.73288943058486" x2="329.73288943058486" y1="303.631296" y2="302.631296"/>
+  <line stroke="#888888" x1="329.73288943058486" x2="330.7328894305849" y1="302.631296" y2="302.631296"/>
+  <line stroke="#888888" x1="330.7328894305849" x2="330.7328894305849" y1="302.631296" y2="303.631296"/>
+  <line stroke="#888888" x1="330.7328894305849" x2="329.73288943058486" y1="303.631296" y2="303.631296"/>
+  <line stroke="#888888" x1="349.7328894305849" x2="349.7328894305849" y1="303.631296" y2="302.631296"/>
+  <line stroke="#888888" x1="349.7328894305849" x2="350.7328894305849" y1="302.631296" y2="302.631296"/>
+  <line stroke="#888888" x1="350.7328894305849" x2="350.7328894305849" y1="302.631296" y2="303.631296"/>
+  <line stroke="#888888" x1="350.7328894305849" x2="349.7328894305849" y1="303.631296" y2="303.631296"/>
+  <line stroke="#888888" x1="329.73288943058486" x2="329.73288943058486" y1="306.1312960000001" y2="305.1312960000001"/>
+  <line stroke="#888888" x1="329.73288943058486" x2="330.7328894305849" y1="305.1312960000001" y2="305.1312960000001"/>
+  <line stroke="#888888" x1="330.7328894305849" x2="330.7328894305849" y1="305.1312960000001" y2="306.1312960000001"/>
+  <line stroke="#888888" x1="330.7328894305849" x2="329.73288943058486" y1="306.1312960000001" y2="306.1312960000001"/>
+  <line stroke="#888888" x1="349.7328894305849" x2="349.7328894305849" y1="306.1312960000001" y2="305.1312960000001"/>
+  <line stroke="#888888" x1="349.7328894305849" x2="350.7328894305849" y1="305.1312960000001" y2="305.1312960000001"/>
+  <line stroke="#888888" x1="350.7328894305849" x2="350.7328894305849" y1="305.1312960000001" y2="306.1312960000001"/>
+  <line stroke="#888888" x1="350.7328894305849" x2="349.7328894305849" y1="306.1312960000001" y2="306.1312960000001"/>
+  <line stroke="#888888" x1="329.73288943058486" x2="329.73288943058486" y1="308.6312960000001" y2="307.631296"/>
+  <line stroke="#888888" x1="329.73288943058486" x2="330.7328894305849" y1="307.631296" y2="307.631296"/>
+  <line stroke="#888888" x1="330.7328894305849" x2="330.7328894305849" y1="307.631296" y2="308.6312960000001"/>
+  <line stroke="#888888" x1="330.7328894305849" x2="329.73288943058486" y1="308.6312960000001" y2="308.6312960000001"/>
+  <line stroke="#888888" x1="349.7328894305849" x2="349.7328894305849" y1="308.6312960000001" y2="307.631296"/>
+  <line stroke="#888888" x1="349.7328894305849" x2="350.7328894305849" y1="307.631296" y2="307.631296"/>
+  <line stroke="#888888" x1="350.7328894305849" x2="350.7328894305849" y1="307.631296" y2="308.6312960000001"/>
+  <line stroke="#888888" x1="350.7328894305849" x2="349.7328894305849" y1="308.6312960000001" y2="308.6312960000001"/>
+  <line stroke="#888888" x1="329.73288943058486" x2="329.73288943058486" y1="311.1312960000001" y2="310.1312960000001"/>
+  <line stroke="#888888" x1="329.73288943058486" x2="330.7328894305849" y1="310.1312960000001" y2="310.1312960000001"/>
+  <line stroke="#888888" x1="330.7328894305849" x2="330.7328894305849" y1="310.1312960000001" y2="311.1312960000001"/>
+  <line stroke="#888888" x1="330.7328894305849" x2="329.73288943058486" y1="311.1312960000001" y2="311.1312960000001"/>
+  <line stroke="#888888" x1="349.7328894305849" x2="349.7328894305849" y1="311.1312960000001" y2="310.1312960000001"/>
+  <line stroke="#888888" x1="349.7328894305849" x2="350.7328894305849" y1="310.1312960000001" y2="310.1312960000001"/>
+  <line stroke="#888888" x1="350.7328894305849" x2="350.7328894305849" y1="310.1312960000001" y2="311.1312960000001"/>
+  <line stroke="#888888" x1="350.7328894305849" x2="349.7328894305849" y1="311.1312960000001" y2="311.1312960000001"/>
+  <line stroke="#888888" x1="329.73288943058486" x2="329.73288943058486" y1="313.6312960000001" y2="312.631296"/>
+  <line stroke="#888888" x1="329.73288943058486" x2="330.7328894305849" y1="312.631296" y2="312.631296"/>
+  <line stroke="#888888" x1="330.7328894305849" x2="330.7328894305849" y1="312.631296" y2="313.6312960000001"/>
+  <line stroke="#888888" x1="330.7328894305849" x2="329.73288943058486" y1="313.6312960000001" y2="313.6312960000001"/>
+  <line stroke="#888888" x1="349.7328894305849" x2="349.7328894305849" y1="313.6312960000001" y2="312.631296"/>
+  <line stroke="#888888" x1="349.7328894305849" x2="350.7328894305849" y1="312.631296" y2="312.631296"/>
+  <line stroke="#888888" x1="350.7328894305849" x2="350.7328894305849" y1="312.631296" y2="313.6312960000001"/>
+  <line stroke="#888888" x1="350.7328894305849" x2="349.7328894305849" y1="313.6312960000001" y2="313.6312960000001"/>
+  <line stroke="#888888" x1="329.73288943058486" x2="329.73288943058486" y1="316.131296" y2="315.1312960000001"/>
+  <line stroke="#888888" x1="329.73288943058486" x2="330.7328894305849" y1="315.1312960000001" y2="315.1312960000001"/>
+  <line stroke="#888888" x1="330.7328894305849" x2="330.7328894305849" y1="315.1312960000001" y2="316.131296"/>
+  <line stroke="#888888" x1="330.7328894305849" x2="329.73288943058486" y1="316.131296" y2="316.131296"/>
+  <line stroke="#888888" x1="349.7328894305849" x2="349.7328894305849" y1="316.131296" y2="315.1312960000001"/>
+  <line stroke="#888888" x1="349.7328894305849" x2="350.7328894305849" y1="315.1312960000001" y2="315.1312960000001"/>
+  <line stroke="#888888" x1="350.7328894305849" x2="350.7328894305849" y1="315.1312960000001" y2="316.131296"/>
+  <line stroke="#888888" x1="350.7328894305849" x2="349.7328894305849" y1="316.131296" y2="316.131296"/>
+  <line stroke="#888888" x1="329.73288943058486" x2="329.73288943058486" y1="318.6312960000001" y2="317.6312960000001"/>
+  <line stroke="#888888" x1="329.73288943058486" x2="330.7328894305849" y1="317.6312960000001" y2="317.6312960000001"/>
+  <line stroke="#888888" x1="330.7328894305849" x2="330.7328894305849" y1="317.6312960000001" y2="318.6312960000001"/>
+  <line stroke="#888888" x1="330.7328894305849" x2="329.73288943058486" y1="318.6312960000001" y2="318.6312960000001"/>
+  <line stroke="#888888" x1="349.7328894305849" x2="349.7328894305849" y1="318.6312960000001" y2="317.6312960000001"/>
+  <line stroke="#888888" x1="349.7328894305849" x2="350.7328894305849" y1="317.6312960000001" y2="317.6312960000001"/>
+  <line stroke="#888888" x1="350.7328894305849" x2="350.7328894305849" y1="317.6312960000001" y2="318.6312960000001"/>
+  <line stroke="#888888" x1="350.7328894305849" x2="349.7328894305849" y1="318.6312960000001" y2="318.6312960000001"/>
+  <line stroke="#888888" x1="329.73288943058486" x2="329.73288943058486" y1="321.131296" y2="320.1312960000001"/>
+  <line stroke="#888888" x1="329.73288943058486" x2="330.7328894305849" y1="320.1312960000001" y2="320.1312960000001"/>
+  <line stroke="#888888" x1="330.7328894305849" x2="330.7328894305849" y1="320.1312960000001" y2="321.131296"/>
+  <line stroke="#888888" x1="330.7328894305849" x2="329.73288943058486" y1="321.131296" y2="321.131296"/>
+  <line stroke="#888888" x1="349.7328894305849" x2="349.7328894305849" y1="321.131296" y2="320.1312960000001"/>
+  <line stroke="#888888" x1="349.7328894305849" x2="350.7328894305849" y1="320.1312960000001" y2="320.1312960000001"/>
+  <line stroke="#888888" x1="350.7328894305849" x2="350.7328894305849" y1="320.1312960000001" y2="321.131296"/>
+  <line stroke="#888888" x1="350.7328894305849" x2="349.7328894305849" y1="321.131296" y2="321.131296"/>
+  <line stroke="#888888" x1="329.73288943058486" x2="329.73288943058486" y1="323.6312960000001" y2="322.6312960000001"/>
+  <line stroke="#888888" x1="329.73288943058486" x2="330.7328894305849" y1="322.6312960000001" y2="322.6312960000001"/>
+  <line stroke="#888888" x1="330.7328894305849" x2="330.7328894305849" y1="322.6312960000001" y2="323.6312960000001"/>
+  <line stroke="#888888" x1="330.7328894305849" x2="329.73288943058486" y1="323.6312960000001" y2="323.6312960000001"/>
+  <line stroke="#888888" x1="349.7328894305849" x2="349.7328894305849" y1="323.6312960000001" y2="322.6312960000001"/>
+  <line stroke="#888888" x1="349.7328894305849" x2="350.7328894305849" y1="322.6312960000001" y2="322.6312960000001"/>
+  <line stroke="#888888" x1="350.7328894305849" x2="350.7328894305849" y1="322.6312960000001" y2="323.6312960000001"/>
+  <line stroke="#888888" x1="350.7328894305849" x2="349.7328894305849" y1="323.6312960000001" y2="323.6312960000001"/>
+  <line stroke="#888888" x1="329.73288943058486" x2="329.73288943058486" y1="326.131296" y2="325.131296"/>
+  <line stroke="#888888" x1="329.73288943058486" x2="330.7328894305849" y1="325.131296" y2="325.131296"/>
+  <line stroke="#888888" x1="330.7328894305849" x2="330.7328894305849" y1="325.131296" y2="326.131296"/>
+  <line stroke="#888888" x1="330.7328894305849" x2="329.73288943058486" y1="326.131296" y2="326.131296"/>
+  <line stroke="#888888" x1="349.7328894305849" x2="349.7328894305849" y1="326.131296" y2="325.131296"/>
+  <line stroke="#888888" x1="349.7328894305849" x2="350.7328894305849" y1="325.131296" y2="325.131296"/>
+  <line stroke="#888888" x1="350.7328894305849" x2="350.7328894305849" y1="325.131296" y2="326.131296"/>
+  <line stroke="#888888" x1="350.7328894305849" x2="349.7328894305849" y1="326.131296" y2="326.131296"/>
+  <line stroke="#888888" x1="329.73288943058486" x2="329.73288943058486" y1="328.6312960000001" y2="327.6312960000001"/>
+  <line stroke="#888888" x1="329.73288943058486" x2="330.7328894305849" y1="327.6312960000001" y2="327.6312960000001"/>
+  <line stroke="#888888" x1="330.7328894305849" x2="330.7328894305849" y1="327.6312960000001" y2="328.6312960000001"/>
+  <line stroke="#888888" x1="330.7328894305849" x2="329.73288943058486" y1="328.6312960000001" y2="328.6312960000001"/>
+  <line stroke="#888888" x1="348.73288943058486" x2="348.73288943058486" y1="329.6312960000001" y2="326.631296"/>
+  <line stroke="#888888" x1="348.73288943058486" x2="351.7328894305849" y1="326.631296" y2="326.631296"/>
+  <line stroke="#888888" x1="351.7328894305849" x2="351.7328894305849" y1="326.631296" y2="329.6312960000001"/>
+  <line stroke="#888888" x1="351.7328894305849" x2="348.73288943058486" y1="329.6312960000001" y2="329.6312960000001"/>
+  <line stroke="#888888" x1="344.4828894305849" x2="335.9828894305849" y1="286.6312960000001" y2="286.6312960000001"/>
+  <line stroke="#888888" x1="335.9828894305849" x2="335.9828894305849" y1="286.6312960000001" y2="286.1312960000001"/>
+  <line stroke="#888888" x1="335.9828894305849" x2="344.4828894305849" y1="286.1312960000001" y2="286.1312960000001"/>
+  <line stroke="#888888" x1="344.4828894305849" x2="344.4828894305849" y1="286.1312960000001" y2="286.6312960000001"/>
+  <line stroke="#888888" x1="335.9828894305849" x2="344.4828894305849" y1="334.381296" y2="334.381296"/>
+  <line stroke="#888888" x1="344.4828894305849" x2="344.4828894305849" y1="334.381296" y2="334.881296"/>
+  <line stroke="#888888" x1="344.4828894305849" x2="335.9828894305849" y1="334.881296" y2="334.881296"/>
+  <line stroke="#888888" x1="335.9828894305849" x2="335.9828894305849" y1="334.881296" y2="334.381296"/>
+  <line stroke="#888888" x1="320.73288943058486" x2="325.73288943058486" y1="289.9722050909092" y2="289.9722050909092"/>
+  <line stroke="#888888" x1="325.73288943058486" x2="325.73288943058486" y1="289.9722050909092" y2="301.0631141818182"/>
+  <line stroke="#888888" x1="325.73288943058486" x2="320.73288943058486" y1="301.0631141818182" y2="301.0631141818182"/>
+  <line stroke="#888888" x1="320.73288943058486" x2="325.73288943058486" y1="317.6994778181819" y2="317.6994778181819"/>
+  <line stroke="#888888" x1="325.73288943058486" x2="325.73288943058486" y1="317.6994778181819" y2="328.790386909091"/>
+  <line stroke="#888888" x1="325.73288943058486" x2="320.73288943058486" y1="328.790386909091" y2="328.790386909091"/>
+  <line stroke="#888888" x1="345.9828894305849" x2="349.4828894305849" y1="262.881296" y2="262.881296"/>
+  <line stroke="#888888" x1="349.4828894305849" x2="349.4828894305849" y1="262.881296" y2="270.8812960000001"/>
+  <line stroke="#888888" x1="349.4828894305849" x2="345.9828894305849" y1="270.8812960000001" y2="270.8812960000001"/>
 </svg>
diff --git a/rocolib/output/HouseboatWithServoMountAndStack/graph-model.png b/rocolib/output/HouseboatWithServoMountAndStack/graph-model.png
index 6dea381a460ffda5f7bff9aa67e290a5ef9465ab..43892522818b60db8d562b5724a187388e26ab45 100644
Binary files a/rocolib/output/HouseboatWithServoMountAndStack/graph-model.png and b/rocolib/output/HouseboatWithServoMountAndStack/graph-model.png differ
diff --git a/rocolib/output/HouseboatWithServoMountAndStack/graph-model.stl b/rocolib/output/HouseboatWithServoMountAndStack/graph-model.stl
index 23f562e7734972a9797533cffc9b06d2b29be155..c40310233ec37e587dad8a99af523c37448be224 100644
--- a/rocolib/output/HouseboatWithServoMountAndStack/graph-model.stl
+++ b/rocolib/output/HouseboatWithServoMountAndStack/graph-model.stl
@@ -1,506 +1,912 @@
 solid python
 facet normal 0 0 0
 outer loop
-vertex -0.0180 0.0120 0.0000
-vertex -0.0180 -0.0120 0.0000
-vertex 0.0180 -0.0120 0.0000
+vertex -0.0450 0.1490 0.0000
+vertex -0.0450 -0.1490 0.0000
+vertex 0.0450 -0.1490 0.0000
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0180 -0.0120 0.0000
-vertex 0.0180 0.0120 0.0000
-vertex -0.0180 0.0120 0.0000
+vertex 0.0450 -0.1490 0.0000
+vertex 0.0450 0.1490 0.0000
+vertex -0.0450 0.1490 0.0000
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0180 0.0120 0.0000
-vertex -0.0180 -0.0120 0.0000
-vertex 0.0180 -0.0120 0.0000
+vertex -0.0450 0.1490 -0.0300
+vertex -0.0450 -0.1490 -0.0300
+vertex -0.0450 -0.1490 0.0000
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0180 -0.0120 0.0000
-vertex 0.0180 0.0120 0.0000
-vertex -0.0180 0.0120 0.0000
+vertex -0.0450 -0.1490 0.0000
+vertex -0.0450 0.1490 0.0000
+vertex -0.0450 0.1490 -0.0300
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0180 -0.0120 0.0450
-vertex 0.0180 0.0120 0.0450
-vertex 0.0180 0.0120 0.0000
+vertex 0.0450 0.1490 0.0000
+vertex 0.0450 -0.1490 -0.0000
+vertex 0.0450 -0.1490 -0.0300
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0180 0.0120 0.0000
-vertex 0.0180 -0.0120 0.0000
-vertex 0.0180 -0.0120 0.0450
+vertex 0.0450 -0.1490 -0.0300
+vertex 0.0450 0.1490 -0.0300
+vertex 0.0450 0.1490 0.0000
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0180 0.0120 -0.0000
-vertex -0.0290 0.0120 -0.0150
-vertex -0.0410 0.0120 -0.0150
+vertex -0.0450 -0.1490 0.0000
+vertex -0.0450 -0.1490 -0.0300
+vertex -0.0416 -0.1577 -0.0300
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0290 0.0120 -0.0150
-vertex -0.0180 0.0120 -0.0000
-vertex -0.0180 0.0120 -0.0200
+vertex -0.0416 -0.1577 -0.0300
+vertex -0.0000 -0.2630 -0.0300
+vertex -0.0450 -0.1490 0.0000
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0520 0.0120 -0.0000
-vertex -0.0410 0.0120 -0.0150
-vertex -0.0520 0.0120 -0.0200
+vertex 0.0000 -0.1490 0.0000
+vertex -0.0450 -0.1490 0.0000
+vertex 0.0000 -0.2630 -0.0300
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0410 0.0120 -0.0150
-vertex -0.0520 0.0120 -0.0000
-vertex -0.0180 0.0120 -0.0000
+vertex -0.0000 -0.1490 -0.0000
+vertex -0.0000 -0.2630 -0.0300
+vertex 0.0450 -0.1490 -0.0000
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0290 0.0120 -0.0190
-vertex -0.0180 0.0120 -0.0200
-vertex -0.0520 0.0120 -0.0200
+vertex 0.0416 -0.1577 -0.0300
+vertex 0.0450 -0.1490 -0.0300
+vertex 0.0450 -0.1490 -0.0000
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0180 0.0120 -0.0200
-vertex -0.0290 0.0120 -0.0190
-vertex -0.0290 0.0120 -0.0150
+vertex 0.0450 -0.1490 -0.0000
+vertex -0.0000 -0.2630 -0.0300
+vertex 0.0416 -0.1577 -0.0300
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0410 0.0120 -0.0190
-vertex -0.0520 0.0120 -0.0200
-vertex -0.0410 0.0120 -0.0150
+vertex -0.0450 -0.1490 -0.0300
+vertex -0.0450 -0.1490 0.0000
+vertex -0.0416 -0.1577 -0.0300
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0520 0.0120 -0.0200
-vertex -0.0410 0.0120 -0.0190
-vertex -0.0290 0.0120 -0.0190
+vertex -0.0450 -0.1490 -0.0300
+vertex -0.0416 -0.1577 -0.0300
+vertex -0.0450 -0.1490 0.0000
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0180 0.0120 -0.0200
-vertex -0.0290 0.0115 -0.0200
-vertex -0.0410 0.0115 -0.0200
+vertex 0.0450 -0.1490 -0.0300
+vertex 0.0416 -0.1577 -0.0300
+vertex 0.0450 -0.1490 -0.0000
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0290 0.0115 -0.0200
-vertex -0.0180 0.0120 -0.0200
-vertex -0.0180 -0.0120 -0.0200
+vertex 0.0450 -0.1490 -0.0300
+vertex 0.0450 -0.1490 -0.0000
+vertex 0.0416 -0.1577 -0.0300
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0520 0.0120 -0.0200
-vertex -0.0410 0.0115 -0.0200
-vertex -0.0410 -0.0115 -0.0200
+vertex 0.0450 0.1490 0.0000
+vertex 0.0450 0.1490 -0.0300
+vertex 0.0249 0.1617 -0.0300
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0410 0.0115 -0.0200
-vertex -0.0520 0.0120 -0.0200
-vertex -0.0180 0.0120 -0.0200
+vertex 0.0249 0.1617 -0.0300
+vertex 0.0000 0.1775 -0.0300
+vertex 0.0450 0.1490 0.0000
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0290 -0.0115 -0.0200
-vertex -0.0180 -0.0120 -0.0200
-vertex -0.0520 -0.0120 -0.0200
+vertex 0.0000 0.1490 0.0000
+vertex 0.0450 0.1490 0.0000
+vertex 0.0000 0.1775 -0.0300
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0180 -0.0120 -0.0200
-vertex -0.0290 -0.0115 -0.0200
-vertex -0.0290 0.0115 -0.0200
+vertex 0.0000 0.1490 0.0000
+vertex 0.0000 0.1775 -0.0300
+vertex -0.0450 0.1490 0.0000
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0410 -0.0115 -0.0200
-vertex -0.0520 -0.0120 -0.0200
-vertex -0.0520 0.0120 -0.0200
+vertex -0.0249 0.1617 -0.0300
+vertex -0.0450 0.1490 -0.0300
+vertex -0.0450 0.1490 0.0000
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0520 -0.0120 -0.0200
-vertex -0.0410 -0.0115 -0.0200
-vertex -0.0290 -0.0115 -0.0200
+vertex -0.0450 0.1490 0.0000
+vertex 0.0000 0.1775 -0.0300
+vertex -0.0249 0.1617 -0.0300
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0180 -0.0120 -0.0200
-vertex -0.0290 -0.0120 -0.0150
-vertex -0.0290 -0.0120 -0.0190
+vertex 0.0450 0.1490 -0.0300
+vertex 0.0450 0.1490 0.0000
+vertex 0.0249 0.1617 -0.0300
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0290 -0.0120 -0.0150
-vertex -0.0180 -0.0120 -0.0200
-vertex -0.0180 -0.0120 0.0000
+vertex 0.0450 0.1490 -0.0300
+vertex 0.0249 0.1617 -0.0300
+vertex 0.0450 0.1490 0.0000
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0180 -0.0120 -0.0200
-vertex -0.0290 -0.0120 -0.0190
-vertex -0.0410 -0.0120 -0.0190
+vertex -0.0450 0.1490 -0.0300
+vertex -0.0249 0.1617 -0.0300
+vertex -0.0450 0.1490 0.0000
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0520 -0.0120 -0.0200
-vertex -0.0410 -0.0120 -0.0190
-vertex -0.0410 -0.0120 -0.0150
+vertex -0.0450 0.1490 -0.0300
+vertex -0.0450 0.1490 0.0000
+vertex -0.0249 0.1617 -0.0300
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0410 -0.0120 -0.0190
-vertex -0.0520 -0.0120 -0.0200
-vertex -0.0180 -0.0120 -0.0200
+vertex -0.0450 -0.0350 -0.0600
+vertex -0.0450 0.0350 -0.0600
+vertex 0.0450 0.0350 -0.0600
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0520 -0.0120 -0.0200
-vertex -0.0410 -0.0120 -0.0150
-vertex -0.0520 -0.0120 0.0000
+vertex 0.0450 0.0350 -0.0600
+vertex 0.0450 -0.0350 -0.0600
+vertex -0.0450 -0.0350 -0.0600
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0290 -0.0120 -0.0150
-vertex -0.0305 -0.0120 -0.0070
-vertex -0.0410 -0.0120 -0.0150
+vertex -0.0450 -0.0350 -0.0300
+vertex -0.0450 0.0350 -0.0300
+vertex -0.0450 0.0350 -0.0600
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0305 -0.0120 -0.0070
-vertex -0.0180 -0.0120 0.0000
-vertex -0.0305 -0.0120 -0.0030
+vertex -0.0450 0.0350 -0.0600
+vertex -0.0450 -0.0350 -0.0600
+vertex -0.0450 -0.0350 -0.0300
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0180 -0.0120 0.0000
-vertex -0.0305 -0.0120 -0.0070
-vertex -0.0290 -0.0120 -0.0150
+vertex -0.0450 -0.0350 -0.0300
+vertex -0.0450 -0.0350 -0.0600
+vertex 0.0450 -0.0350 -0.0600
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0305 -0.0120 -0.0030
-vertex -0.0180 -0.0120 0.0000
-vertex -0.0520 -0.0120 0.0000
+vertex 0.0450 -0.0350 -0.0600
+vertex 0.0450 -0.0350 -0.0300
+vertex -0.0450 -0.0350 -0.0300
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0395 -0.0120 -0.0070
-vertex -0.0395 -0.0120 -0.0030
-vertex -0.0520 -0.0120 0.0000
+vertex 0.0450 -0.0350 -0.0600
+vertex 0.0450 0.0350 -0.0600
+vertex 0.0450 0.0350 -0.0300
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0520 -0.0120 0.0000
-vertex -0.0395 -0.0120 -0.0030
-vertex -0.0305 -0.0120 -0.0030
+vertex 0.0450 0.0350 -0.0300
+vertex 0.0450 -0.0350 -0.0300
+vertex 0.0450 -0.0350 -0.0600
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0395 -0.0120 -0.0070
-vertex -0.0520 -0.0120 0.0000
-vertex -0.0410 -0.0120 -0.0150
+vertex -0.0450 0.0350 -0.0600
+vertex -0.0450 0.0350 -0.0300
+vertex 0.0450 0.0350 -0.0300
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0305 -0.0120 -0.0070
-vertex -0.0395 -0.0120 -0.0070
-vertex -0.0410 -0.0120 -0.0150
+vertex 0.0450 0.0350 -0.0300
+vertex 0.0450 0.0350 -0.0600
+vertex -0.0450 0.0350 -0.0600
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0520 -0.0120 0.0000
-vertex -0.0180 -0.0120 0.0000
-vertex -0.0180 0.0120 0.0000
+vertex 0.0450 0.0190 -0.0917
+vertex 0.0450 0.0790 -0.0917
+vertex 0.0450 0.0790 -0.0300
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0180 0.0120 0.0000
-vertex -0.0520 0.0120 0.0000
-vertex -0.0520 -0.0120 0.0000
+vertex 0.0450 0.0790 -0.0300
+vertex 0.0450 0.0190 -0.0300
+vertex 0.0450 0.0190 -0.0917
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0520 -0.0120 -0.0000
-vertex -0.0410 -0.0120 -0.0150
-vertex -0.0290 -0.0120 -0.0150
+vertex 0.0641 0.0790 -0.1107
+vertex 0.0641 0.0190 -0.1107
+vertex 0.1257 0.0190 -0.1107
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0410 -0.0120 -0.0150
-vertex -0.0520 -0.0120 -0.0000
-vertex -0.0520 -0.0120 -0.0200
+vertex 0.1257 0.0190 -0.1107
+vertex 0.1257 0.0790 -0.1107
+vertex 0.0641 0.0790 -0.1107
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0180 -0.0120 -0.0000
-vertex -0.0290 -0.0120 -0.0150
-vertex -0.0180 -0.0120 -0.0200
+vertex 0.0641 0.0190 -0.1107
+vertex 0.0450 0.0190 -0.0917
+vertex 0.0330 0.0190 -0.1037
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0290 -0.0120 -0.0150
-vertex -0.0180 -0.0120 -0.0000
-vertex -0.0520 -0.0120 -0.0000
+vertex 0.0330 0.0190 -0.1037
+vertex 0.0521 0.0190 -0.1228
+vertex 0.0641 0.0190 -0.1107
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0410 -0.0120 -0.0190
-vertex -0.0520 -0.0120 -0.0200
-vertex -0.0180 -0.0120 -0.0200
+vertex 0.0521 0.0190 -0.1228
+vertex 0.0330 0.0190 -0.1037
+vertex 0.0330 0.0790 -0.1037
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0520 -0.0120 -0.0200
-vertex -0.0410 -0.0120 -0.0190
-vertex -0.0410 -0.0120 -0.0150
+vertex 0.0330 0.0790 -0.1037
+vertex 0.0521 0.0790 -0.1228
+vertex 0.0521 0.0190 -0.1228
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0290 -0.0120 -0.0190
-vertex -0.0180 -0.0120 -0.0200
-vertex -0.0290 -0.0120 -0.0150
+vertex 0.0330 0.0790 -0.1037
+vertex 0.0461 0.0790 -0.0970
+vertex 0.0588 0.0790 -0.1097
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0180 -0.0120 -0.0200
-vertex -0.0290 -0.0120 -0.0190
-vertex -0.0410 -0.0120 -0.0190
+vertex 0.0461 0.0790 -0.0970
+vertex 0.0330 0.0790 -0.1037
+vertex 0.0450 0.0790 -0.0917
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0520 -0.0120 -0.0200
-vertex -0.0410 -0.0115 -0.0200
-vertex -0.0290 -0.0115 -0.0200
+vertex 0.0521 0.0790 -0.1228
+vertex 0.0588 0.0790 -0.1097
+vertex 0.0641 0.0790 -0.1107
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0410 -0.0115 -0.0200
-vertex -0.0520 -0.0120 -0.0200
-vertex -0.0520 0.0120 -0.0200
+vertex 0.0588 0.0790 -0.1097
+vertex 0.0521 0.0790 -0.1228
+vertex 0.0330 0.0790 -0.1037
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0180 -0.0120 -0.0200
-vertex -0.0290 -0.0115 -0.0200
-vertex -0.0290 0.0115 -0.0200
+vertex 0.0450 0.0790 -0.0917
+vertex 0.0482 0.0790 -0.0948
+vertex 0.0461 0.0790 -0.0970
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0290 -0.0115 -0.0200
-vertex -0.0180 -0.0120 -0.0200
-vertex -0.0520 -0.0120 -0.0200
+vertex 0.0609 0.0790 -0.1076
+vertex 0.0641 0.0790 -0.1107
+vertex 0.0588 0.0790 -0.1097
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0410 0.0115 -0.0200
-vertex -0.0520 0.0120 -0.0200
-vertex -0.0180 0.0120 -0.0200
+vertex 0.0450 0.0790 -0.0917
+vertex 0.0482 0.0785 -0.0948
+vertex 0.0609 0.0785 -0.1076
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0520 0.0120 -0.0200
-vertex -0.0410 0.0115 -0.0200
-vertex -0.0410 -0.0115 -0.0200
+vertex 0.0482 0.0785 -0.0948
+vertex 0.0450 0.0790 -0.0917
+vertex 0.0482 0.0755 -0.0948
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0290 0.0115 -0.0200
-vertex -0.0180 0.0120 -0.0200
-vertex -0.0180 -0.0120 -0.0200
+vertex 0.0641 0.0790 -0.1107
+vertex 0.0609 0.0785 -0.1076
+vertex 0.0609 0.0755 -0.1076
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0180 0.0120 -0.0200
-vertex -0.0290 0.0115 -0.0200
-vertex -0.0410 0.0115 -0.0200
+vertex 0.0609 0.0785 -0.1076
+vertex 0.0641 0.0790 -0.1107
+vertex 0.0450 0.0790 -0.0917
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0520 0.0120 -0.0200
-vertex -0.0410 0.0120 -0.0150
-vertex -0.0410 0.0120 -0.0190
+vertex 0.0482 0.0755 -0.0948
+vertex 0.0450 0.0190 -0.0917
+vertex 0.0641 0.0190 -0.1107
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0410 0.0120 -0.0150
-vertex -0.0520 0.0120 -0.0200
-vertex -0.0520 0.0120 0.0000
+vertex 0.0450 0.0190 -0.0917
+vertex 0.0482 0.0755 -0.0948
+vertex 0.0450 0.0790 -0.0917
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0520 0.0120 -0.0200
-vertex -0.0410 0.0120 -0.0190
-vertex -0.0290 0.0120 -0.0190
+vertex 0.0609 0.0755 -0.1076
+vertex 0.0641 0.0190 -0.1107
+vertex 0.0641 0.0790 -0.1107
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0180 0.0120 -0.0200
-vertex -0.0290 0.0120 -0.0190
-vertex -0.0290 0.0120 -0.0150
+vertex 0.0641 0.0190 -0.1107
+vertex 0.0609 0.0755 -0.1076
+vertex 0.0482 0.0755 -0.0948
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0290 0.0120 -0.0190
-vertex -0.0180 0.0120 -0.0200
-vertex -0.0520 0.0120 -0.0200
+vertex -0.0450 -0.0080 -0.0640
+vertex -0.0450 0.0160 -0.0640
+vertex -0.0450 0.0160 -0.1000
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0180 0.0120 -0.0200
-vertex -0.0290 0.0120 -0.0150
-vertex -0.0180 0.0120 0.0000
+vertex -0.0450 0.0160 -0.1000
+vertex -0.0450 -0.0080 -0.1000
+vertex -0.0450 -0.0080 -0.0640
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0410 0.0120 -0.0150
-vertex -0.0395 0.0120 -0.0070
-vertex -0.0290 0.0120 -0.0150
+vertex 0.0450 -0.0540 -0.0640
+vertex 0.0450 -0.0780 -0.0640
+vertex 0.0450 -0.0780 -0.1000
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0395 0.0120 -0.0070
-vertex -0.0520 0.0120 0.0000
-vertex -0.0395 0.0120 -0.0030
+vertex 0.0450 -0.0780 -0.1000
+vertex 0.0450 -0.0540 -0.1000
+vertex 0.0450 -0.0540 -0.0640
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0520 0.0120 0.0000
-vertex -0.0395 0.0120 -0.0070
-vertex -0.0410 0.0120 -0.0150
+vertex -0.0900 0.0160 -0.1000
+vertex -0.0900 -0.0080 -0.1000
+vertex -0.0450 -0.0080 -0.1000
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0395 0.0120 -0.0030
-vertex -0.0520 0.0120 0.0000
-vertex -0.0180 0.0120 0.0000
+vertex -0.0450 -0.0080 -0.1000
+vertex -0.0450 0.0160 -0.1000
+vertex -0.0900 0.0160 -0.1000
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0305 0.0120 -0.0070
-vertex -0.0305 0.0120 -0.0030
-vertex -0.0180 0.0120 0.0000
+vertex -0.0450 -0.0080 -0.0640
+vertex -0.0300 -0.0080 -0.0530
+vertex -0.0300 -0.0080 -0.0410
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0180 0.0120 0.0000
-vertex -0.0305 0.0120 -0.0030
-vertex -0.0395 0.0120 -0.0030
+vertex -0.0300 -0.0080 -0.0530
+vertex -0.0450 -0.0080 -0.0640
+vertex -0.0250 -0.0080 -0.0640
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0305 0.0120 -0.0070
-vertex -0.0180 0.0120 0.0000
-vertex -0.0290 0.0120 -0.0150
+vertex -0.0450 -0.0080 -0.0300
+vertex -0.0300 -0.0080 -0.0410
+vertex -0.0250 -0.0080 -0.0300
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0395 0.0120 -0.0070
-vertex -0.0305 0.0120 -0.0070
-vertex -0.0290 0.0120 -0.0150
+vertex -0.0300 -0.0080 -0.0410
+vertex -0.0450 -0.0080 -0.0300
+vertex -0.0450 -0.0080 -0.0640
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0260 -0.0080 -0.0530
+vertex -0.0250 -0.0080 -0.0640
+vertex -0.0250 -0.0080 -0.0300
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0250 -0.0080 -0.0640
+vertex -0.0260 -0.0080 -0.0530
+vertex -0.0300 -0.0080 -0.0530
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0260 -0.0080 -0.0410
+vertex -0.0250 -0.0080 -0.0300
+vertex -0.0300 -0.0080 -0.0410
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0250 -0.0080 -0.0300
+vertex -0.0260 -0.0080 -0.0410
+vertex -0.0260 -0.0080 -0.0530
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0250 -0.0080 -0.0640
+vertex -0.0250 -0.0075 -0.0530
+vertex -0.0250 -0.0075 -0.0410
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0250 -0.0075 -0.0530
+vertex -0.0250 -0.0080 -0.0640
+vertex -0.0250 0.0160 -0.0640
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0250 -0.0080 -0.0300
+vertex -0.0250 -0.0075 -0.0410
+vertex -0.0250 0.0155 -0.0410
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0250 -0.0075 -0.0410
+vertex -0.0250 -0.0080 -0.0300
+vertex -0.0250 -0.0080 -0.0640
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0250 0.0155 -0.0530
+vertex -0.0250 0.0160 -0.0640
+vertex -0.0250 0.0160 -0.0300
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0250 0.0160 -0.0640
+vertex -0.0250 0.0155 -0.0530
+vertex -0.0250 -0.0075 -0.0530
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0250 0.0155 -0.0410
+vertex -0.0250 0.0160 -0.0300
+vertex -0.0250 -0.0080 -0.0300
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0250 0.0160 -0.0300
+vertex -0.0250 0.0155 -0.0410
+vertex -0.0250 0.0155 -0.0530
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0250 0.0160 -0.0640
+vertex -0.0300 0.0160 -0.0530
+vertex -0.0260 0.0160 -0.0530
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0300 0.0160 -0.0530
+vertex -0.0250 0.0160 -0.0640
+vertex -0.0450 0.0160 -0.0640
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0250 0.0160 -0.0640
+vertex -0.0260 0.0160 -0.0530
+vertex -0.0260 0.0160 -0.0410
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0250 0.0160 -0.0300
+vertex -0.0260 0.0160 -0.0410
+vertex -0.0300 0.0160 -0.0410
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0260 0.0160 -0.0410
+vertex -0.0250 0.0160 -0.0300
+vertex -0.0250 0.0160 -0.0640
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0250 0.0160 -0.0300
+vertex -0.0300 0.0160 -0.0410
+vertex -0.0450 0.0160 -0.0300
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0300 0.0160 -0.0530
+vertex -0.0380 0.0160 -0.0515
+vertex -0.0300 0.0160 -0.0410
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0380 0.0160 -0.0515
+vertex -0.0450 0.0160 -0.0640
+vertex -0.0420 0.0160 -0.0515
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0450 0.0160 -0.0640
+vertex -0.0380 0.0160 -0.0515
+vertex -0.0300 0.0160 -0.0530
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0420 0.0160 -0.0515
+vertex -0.0450 0.0160 -0.0640
+vertex -0.0450 0.0160 -0.0300
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0380 0.0160 -0.0425
+vertex -0.0420 0.0160 -0.0425
+vertex -0.0450 0.0160 -0.0300
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0450 0.0160 -0.0300
+vertex -0.0420 0.0160 -0.0425
+vertex -0.0420 0.0160 -0.0515
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0380 0.0160 -0.0425
+vertex -0.0450 0.0160 -0.0300
+vertex -0.0300 0.0160 -0.0410
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0380 0.0160 -0.0515
+vertex -0.0380 0.0160 -0.0425
+vertex -0.0300 0.0160 -0.0410
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0450 0.0160 -0.0300
+vertex -0.0450 0.0160 -0.0640
+vertex -0.0450 -0.0080 -0.0640
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0450 -0.0080 -0.0640
+vertex -0.0450 -0.0080 -0.0300
+vertex -0.0450 0.0160 -0.0300
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0450 -0.0780 -0.0300
+vertex 0.0300 -0.0780 -0.0410
+vertex 0.0300 -0.0780 -0.0530
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0300 -0.0780 -0.0410
+vertex 0.0450 -0.0780 -0.0300
+vertex 0.0250 -0.0780 -0.0300
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0450 -0.0780 -0.0640
+vertex 0.0300 -0.0780 -0.0530
+vertex 0.0250 -0.0780 -0.0640
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0300 -0.0780 -0.0530
+vertex 0.0450 -0.0780 -0.0640
+vertex 0.0450 -0.0780 -0.0300
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0260 -0.0780 -0.0410
+vertex 0.0250 -0.0780 -0.0300
+vertex 0.0250 -0.0780 -0.0640
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0250 -0.0780 -0.0300
+vertex 0.0260 -0.0780 -0.0410
+vertex 0.0300 -0.0780 -0.0410
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0260 -0.0780 -0.0530
+vertex 0.0250 -0.0780 -0.0640
+vertex 0.0300 -0.0780 -0.0530
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0250 -0.0780 -0.0640
+vertex 0.0260 -0.0780 -0.0530
+vertex 0.0260 -0.0780 -0.0410
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0250 -0.0780 -0.0300
+vertex 0.0250 -0.0775 -0.0410
+vertex 0.0250 -0.0775 -0.0530
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0250 -0.0775 -0.0410
+vertex 0.0250 -0.0780 -0.0300
+vertex 0.0250 -0.0540 -0.0300
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0180 0.0120 0.0000
-vertex -0.0520 0.0120 0.0000
-vertex -0.0520 -0.0120 0.0000
+vertex 0.0250 -0.0780 -0.0640
+vertex 0.0250 -0.0775 -0.0530
+vertex 0.0250 -0.0545 -0.0530
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0520 -0.0120 0.0000
-vertex -0.0180 -0.0120 0.0000
-vertex -0.0180 0.0120 0.0000
+vertex 0.0250 -0.0775 -0.0530
+vertex 0.0250 -0.0780 -0.0640
+vertex 0.0250 -0.0780 -0.0300
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0180 -0.0120 0.0450
-vertex 0.0180 0.0120 0.0450
-vertex 0.0180 0.0120 0.0000
+vertex 0.0250 -0.0545 -0.0410
+vertex 0.0250 -0.0540 -0.0300
+vertex 0.0250 -0.0540 -0.0640
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0180 0.0120 0.0000
-vertex 0.0180 -0.0120 0.0000
-vertex 0.0180 -0.0120 0.0450
+vertex 0.0250 -0.0540 -0.0300
+vertex 0.0250 -0.0545 -0.0410
+vertex 0.0250 -0.0775 -0.0410
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0250 -0.0545 -0.0530
+vertex 0.0250 -0.0540 -0.0640
+vertex 0.0250 -0.0780 -0.0640
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0250 -0.0540 -0.0640
+vertex 0.0250 -0.0545 -0.0530
+vertex 0.0250 -0.0545 -0.0410
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0250 -0.0540 -0.0300
+vertex 0.0300 -0.0540 -0.0410
+vertex 0.0260 -0.0540 -0.0410
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0300 -0.0540 -0.0410
+vertex 0.0250 -0.0540 -0.0300
+vertex 0.0450 -0.0540 -0.0300
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0250 -0.0540 -0.0300
+vertex 0.0260 -0.0540 -0.0410
+vertex 0.0260 -0.0540 -0.0530
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0250 -0.0540 -0.0640
+vertex 0.0260 -0.0540 -0.0530
+vertex 0.0300 -0.0540 -0.0530
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0260 -0.0540 -0.0530
+vertex 0.0250 -0.0540 -0.0640
+vertex 0.0250 -0.0540 -0.0300
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0250 -0.0540 -0.0640
+vertex 0.0300 -0.0540 -0.0530
+vertex 0.0450 -0.0540 -0.0640
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0300 -0.0540 -0.0410
+vertex 0.0380 -0.0540 -0.0425
+vertex 0.0300 -0.0540 -0.0530
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0380 -0.0540 -0.0425
+vertex 0.0450 -0.0540 -0.0300
+vertex 0.0420 -0.0540 -0.0425
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0450 -0.0540 -0.0300
+vertex 0.0380 -0.0540 -0.0425
+vertex 0.0300 -0.0540 -0.0410
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0420 -0.0540 -0.0425
+vertex 0.0450 -0.0540 -0.0300
+vertex 0.0450 -0.0540 -0.0640
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0380 -0.0540 -0.0515
+vertex 0.0420 -0.0540 -0.0515
+vertex 0.0450 -0.0540 -0.0640
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0450 -0.0540 -0.0640
+vertex 0.0420 -0.0540 -0.0515
+vertex 0.0420 -0.0540 -0.0425
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0380 -0.0540 -0.0515
+vertex 0.0450 -0.0540 -0.0640
+vertex 0.0300 -0.0540 -0.0530
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0380 -0.0540 -0.0425
+vertex 0.0380 -0.0540 -0.0515
+vertex 0.0300 -0.0540 -0.0530
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0450 -0.0540 -0.0640
+vertex 0.0450 -0.0540 -0.0300
+vertex 0.0450 -0.0780 -0.0300
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0450 -0.0780 -0.0300
+vertex 0.0450 -0.0780 -0.0640
+vertex 0.0450 -0.0540 -0.0640
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0900 -0.0780 -0.1000
+vertex 0.0900 -0.0540 -0.1000
+vertex 0.0450 -0.0540 -0.1000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0450 -0.0540 -0.1000
+vertex 0.0450 -0.0780 -0.1000
+vertex 0.0900 -0.0780 -0.1000
 endloop
 endfacet
 facet normal 0 0 0
@@ -519,128 +925,128 @@ endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0520 0.0220 0.0000
-vertex -0.0159 0.0220 0.0000
-vertex -0.0159 0.0830 0.0000
+vertex -0.0450 -0.0180 -0.0300
+vertex -0.0450 -0.0180 -0.0661
+vertex -0.0450 -0.0790 -0.0661
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0159 0.0830 0.0000
-vertex -0.0520 0.0830 0.0000
-vertex -0.0520 0.0220 0.0000
+vertex -0.0450 -0.0790 -0.0661
+vertex -0.0450 -0.0790 -0.0300
+vertex -0.0450 -0.0180 -0.0300
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0011 0.0830 -0.0531
-vertex 0.0011 0.0830 -0.0170
-vertex 0.0011 0.0220 -0.0170
+vertex 0.0081 -0.0790 -0.0831
+vertex -0.0280 -0.0790 -0.0831
+vertex -0.0280 -0.0180 -0.0831
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0011 0.0220 -0.0170
-vertex 0.0011 0.0220 -0.0531
-vertex 0.0011 0.0830 -0.0531
+vertex -0.0280 -0.0180 -0.0831
+vertex 0.0081 -0.0180 -0.0831
+vertex 0.0081 -0.0790 -0.0831
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0011 0.0220 -0.0170
-vertex -0.0028 0.0510 -0.0131
-vertex -0.0028 0.0400 -0.0131
+vertex -0.0280 -0.0180 -0.0831
+vertex -0.0319 -0.0470 -0.0792
+vertex -0.0319 -0.0360 -0.0792
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0028 0.0510 -0.0131
-vertex 0.0011 0.0220 -0.0170
-vertex 0.0011 0.0830 -0.0170
+vertex -0.0319 -0.0470 -0.0792
+vertex -0.0280 -0.0180 -0.0831
+vertex -0.0280 -0.0790 -0.0831
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0011 0.0220 -0.0170
-vertex -0.0028 0.0400 -0.0131
-vertex -0.0120 0.0400 -0.0039
+vertex -0.0280 -0.0180 -0.0831
+vertex -0.0319 -0.0360 -0.0792
+vertex -0.0411 -0.0360 -0.0700
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0159 0.0220 0.0000
-vertex -0.0120 0.0400 -0.0039
-vertex -0.0120 0.0510 -0.0039
+vertex -0.0450 -0.0180 -0.0661
+vertex -0.0411 -0.0360 -0.0700
+vertex -0.0411 -0.0470 -0.0700
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0120 0.0400 -0.0039
-vertex -0.0159 0.0220 0.0000
-vertex 0.0011 0.0220 -0.0170
+vertex -0.0411 -0.0360 -0.0700
+vertex -0.0450 -0.0180 -0.0661
+vertex -0.0280 -0.0180 -0.0831
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0159 0.0220 0.0000
-vertex -0.0120 0.0510 -0.0039
-vertex -0.0159 0.0830 0.0000
+vertex -0.0450 -0.0180 -0.0661
+vertex -0.0411 -0.0470 -0.0700
+vertex -0.0450 -0.0790 -0.0661
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0028 0.0510 -0.0131
-vertex -0.0038 0.0715 -0.0120
-vertex -0.0120 0.0510 -0.0039
+vertex -0.0319 -0.0470 -0.0792
+vertex -0.0330 -0.0675 -0.0782
+vertex -0.0411 -0.0470 -0.0700
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0038 0.0715 -0.0120
-vertex 0.0011 0.0830 -0.0170
-vertex -0.0038 0.0775 -0.0120
+vertex -0.0330 -0.0675 -0.0782
+vertex -0.0280 -0.0790 -0.0831
+vertex -0.0330 -0.0735 -0.0782
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0011 0.0830 -0.0170
-vertex -0.0038 0.0715 -0.0120
-vertex -0.0028 0.0510 -0.0131
+vertex -0.0280 -0.0790 -0.0831
+vertex -0.0330 -0.0675 -0.0782
+vertex -0.0319 -0.0470 -0.0792
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0038 0.0775 -0.0120
-vertex 0.0011 0.0830 -0.0170
-vertex -0.0159 0.0830 0.0000
+vertex -0.0330 -0.0735 -0.0782
+vertex -0.0280 -0.0790 -0.0831
+vertex -0.0450 -0.0790 -0.0661
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0109 0.0715 -0.0049
-vertex -0.0109 0.0775 -0.0049
-vertex -0.0159 0.0830 0.0000
+vertex -0.0401 -0.0675 -0.0711
+vertex -0.0401 -0.0735 -0.0711
+vertex -0.0450 -0.0790 -0.0661
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0159 0.0830 0.0000
-vertex -0.0109 0.0775 -0.0049
-vertex -0.0038 0.0775 -0.0120
+vertex -0.0450 -0.0790 -0.0661
+vertex -0.0401 -0.0735 -0.0711
+vertex -0.0330 -0.0735 -0.0782
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0109 0.0715 -0.0049
-vertex -0.0159 0.0830 0.0000
-vertex -0.0120 0.0510 -0.0039
+vertex -0.0401 -0.0675 -0.0711
+vertex -0.0450 -0.0790 -0.0661
+vertex -0.0411 -0.0470 -0.0700
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0038 0.0715 -0.0120
-vertex -0.0109 0.0715 -0.0049
-vertex -0.0120 0.0510 -0.0039
+vertex -0.0330 -0.0675 -0.0782
+vertex -0.0401 -0.0675 -0.0711
+vertex -0.0411 -0.0470 -0.0700
 endloop
 endfacet
 facet normal 0 0 0
@@ -3473,310 +3879,198 @@ endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0300 0.1250 0.0000
-vertex -0.0300 -0.1250 0.0000
-vertex 0.0300 -0.1250 0.0000
-endloop
-endfacet
-facet normal 0 0 0
-outer loop
-vertex 0.0300 -0.1250 0.0000
-vertex 0.0300 0.1250 0.0000
-vertex -0.0300 0.1250 0.0000
-endloop
-endfacet
-facet normal 0 0 0
-outer loop
-vertex -0.0300 0.1250 -0.0200
-vertex -0.0300 -0.1250 -0.0200
-vertex -0.0300 -0.1250 0.0000
-endloop
-endfacet
-facet normal 0 0 0
-outer loop
-vertex -0.0300 -0.1250 0.0000
-vertex -0.0300 0.1250 0.0000
-vertex -0.0300 0.1250 -0.0200
-endloop
-endfacet
-facet normal 0 0 0
-outer loop
-vertex 0.0300 0.1250 0.0000
-vertex 0.0300 -0.1250 0.0000
-vertex 0.0300 -0.1250 -0.0200
-endloop
-endfacet
-facet normal 0 0 0
-outer loop
-vertex 0.0300 -0.1250 -0.0200
-vertex 0.0300 0.1250 -0.0200
-vertex 0.0300 0.1250 0.0000
+vertex -0.0419 -0.1578 -0.0269
+vertex -0.0416 -0.1577 -0.0300
+vertex -0.0450 -0.1490 -0.0300
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0300 -0.1250 -0.0000
-vertex -0.0300 -0.1250 -0.0200
-vertex -0.0286 -0.1296 -0.0200
+vertex -0.0450 -0.1490 -0.0300
+vertex -0.0453 -0.1491 -0.0269
+vertex -0.0419 -0.1578 -0.0269
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0286 -0.1296 -0.0200
-vertex 0.0000 -0.2250 -0.0200
-vertex -0.0300 -0.1250 -0.0000
+vertex 0.0453 -0.1491 -0.0269
+vertex 0.0450 -0.1490 -0.0300
+vertex 0.0416 -0.1577 -0.0300
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0000 -0.1250 0.0000
-vertex -0.0300 -0.1250 0.0000
-vertex 0.0000 -0.2250 -0.0200
+vertex 0.0416 -0.1577 -0.0300
+vertex 0.0419 -0.1578 -0.0269
+vertex 0.0453 -0.1491 -0.0269
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0000 -0.1250 0.0000
-vertex -0.0000 -0.2250 -0.0200
-vertex 0.0300 -0.1250 0.0000
+vertex 0.0254 0.1624 -0.0221
+vertex 0.0249 0.1617 -0.0300
+vertex 0.0450 0.1490 -0.0300
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0286 -0.1296 -0.0200
-vertex 0.0300 -0.1250 -0.0200
-vertex 0.0300 -0.1250 0.0000
+vertex 0.0450 0.1490 -0.0300
+vertex 0.0454 0.1497 -0.0221
+vertex 0.0254 0.1624 -0.0221
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0300 -0.1250 0.0000
-vertex -0.0000 -0.2250 -0.0200
-vertex 0.0286 -0.1296 -0.0200
+vertex -0.0454 0.1497 -0.0221
+vertex -0.0450 0.1490 -0.0300
+vertex -0.0249 0.1617 -0.0300
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0300 -0.1250 -0.0200
-vertex -0.0300 -0.1250 0.0000
-vertex -0.0286 -0.1296 -0.0200
+vertex -0.0249 0.1617 -0.0300
+vertex -0.0254 0.1624 -0.0221
+vertex -0.0454 0.1497 -0.0221
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0300 -0.1250 -0.0200
-vertex -0.0286 -0.1296 -0.0200
-vertex -0.0300 -0.1250 0.0000
+vertex -0.0350 -0.0350 -0.0300
+vertex -0.0450 -0.0350 -0.0300
+vertex -0.0450 -0.0350 -0.0600
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0300 -0.1250 -0.0200
-vertex 0.0286 -0.1296 -0.0200
-vertex 0.0300 -0.1250 0.0000
+vertex -0.0450 -0.0350 -0.0600
+vertex -0.0350 -0.0350 -0.0600
+vertex -0.0350 -0.0350 -0.0300
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0300 -0.1250 -0.0200
-vertex 0.0300 -0.1250 0.0000
-vertex 0.0286 -0.1296 -0.0200
+vertex 0.0450 -0.0250 -0.0300
+vertex 0.0450 -0.0350 -0.0300
+vertex 0.0450 -0.0350 -0.0600
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0300 0.1250 0.0000
-vertex 0.0300 0.1250 -0.0200
-vertex 0.0192 0.1340 -0.0200
+vertex 0.0450 -0.0350 -0.0600
+vertex 0.0450 -0.0250 -0.0600
+vertex 0.0450 -0.0250 -0.0300
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0192 0.1340 -0.0200
-vertex 0.0000 0.1500 -0.0200
-vertex 0.0300 0.1250 0.0000
+vertex 0.0350 0.0350 -0.0300
+vertex 0.0450 0.0350 -0.0300
+vertex 0.0450 0.0350 -0.0600
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0000 0.1250 0.0000
-vertex 0.0300 0.1250 0.0000
-vertex 0.0000 0.1500 -0.0200
+vertex 0.0450 0.0350 -0.0600
+vertex 0.0350 0.0350 -0.0600
+vertex 0.0350 0.0350 -0.0300
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0000 0.1250 0.0000
-vertex 0.0000 0.1500 -0.0200
-vertex -0.0300 0.1250 0.0000
+vertex -0.0350 0.0350 -0.0600
+vertex -0.0450 0.0350 -0.0600
+vertex -0.0450 0.0350 -0.0300
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0192 0.1340 -0.0200
-vertex -0.0300 0.1250 -0.0200
-vertex -0.0300 0.1250 0.0000
+vertex -0.0450 0.0350 -0.0300
+vertex -0.0350 0.0350 -0.0300
+vertex -0.0350 0.0350 -0.0600
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0300 0.1250 0.0000
-vertex 0.0000 0.1500 -0.0200
-vertex -0.0192 0.1340 -0.0200
+vertex -0.0450 0.0890 -0.0400
+vertex -0.0450 0.0890 -0.0300
+vertex -0.0450 0.1490 -0.0300
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0300 0.1250 -0.0200
-vertex 0.0300 0.1250 0.0000
-vertex 0.0192 0.1340 -0.0200
+vertex -0.0450 0.1490 -0.0300
+vertex -0.0450 0.1490 -0.0400
+vertex -0.0450 0.0890 -0.0400
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0300 0.1250 -0.0200
-vertex 0.0192 0.1340 -0.0200
-vertex 0.0300 0.1250 0.0000
+vertex 0.0450 0.0290 -0.0917
+vertex 0.0450 0.0190 -0.0917
+vertex 0.0641 0.0190 -0.1107
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0300 0.1250 -0.0200
-vertex -0.0192 0.1340 -0.0200
-vertex -0.0300 0.1250 0.0000
+vertex 0.0641 0.0190 -0.1107
+vertex 0.0641 0.0290 -0.1107
+vertex 0.0450 0.0290 -0.0917
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0300 0.1250 -0.0200
-vertex -0.0300 0.1250 0.0000
-vertex -0.0192 0.1340 -0.0200
+vertex -0.0450 0.0020 -0.0640
+vertex -0.0450 -0.0080 -0.0640
+vertex -0.0450 -0.0080 -0.0300
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0300 -0.0250 -0.0500
-vertex -0.0300 0.0250 -0.0500
-vertex 0.0300 0.0250 -0.0500
+vertex -0.0450 -0.0080 -0.0300
+vertex -0.0450 0.0020 -0.0300
+vertex -0.0450 0.0020 -0.0640
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0300 0.0250 -0.0500
-vertex 0.0300 -0.0250 -0.0500
-vertex -0.0300 -0.0250 -0.0500
+vertex 0.0450 -0.0680 -0.0300
+vertex 0.0450 -0.0780 -0.0300
+vertex 0.0450 -0.0780 -0.0640
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0300 -0.0250 -0.0200
-vertex -0.0300 0.0250 -0.0200
-vertex -0.0300 0.0250 -0.0500
+vertex 0.0450 -0.0780 -0.0640
+vertex 0.0450 -0.0680 -0.0640
+vertex 0.0450 -0.0680 -0.0300
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0300 0.0250 -0.0500
-vertex -0.0300 -0.0250 -0.0500
-vertex -0.0300 -0.0250 -0.0200
+vertex -0.0950 -0.0080 -0.1000
+vertex -0.0900 -0.0080 -0.1000
+vertex -0.0900 0.0160 -0.1000
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0300 -0.0250 -0.0200
-vertex -0.0300 -0.0250 -0.0500
-vertex 0.0300 -0.0250 -0.0500
+vertex -0.0900 0.0160 -0.1000
+vertex -0.0950 0.0160 -0.1000
+vertex -0.0950 -0.0080 -0.1000
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0300 -0.0250 -0.0500
-vertex 0.0300 -0.0250 -0.0200
-vertex -0.0300 -0.0250 -0.0200
+vertex -0.0280 -0.0080 -0.0831
+vertex -0.0280 -0.0180 -0.0831
+vertex -0.0450 -0.0180 -0.0661
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0300 -0.0250 -0.0500
-vertex 0.0300 0.0250 -0.0500
-vertex 0.0300 0.0250 -0.0200
-endloop
-endfacet
-facet normal 0 0 0
-outer loop
-vertex 0.0300 0.0250 -0.0200
-vertex 0.0300 -0.0250 -0.0200
-vertex 0.0300 -0.0250 -0.0500
-endloop
-endfacet
-facet normal 0 0 0
-outer loop
-vertex -0.0300 0.0250 -0.0500
-vertex -0.0300 0.0250 -0.0200
-vertex 0.0300 0.0250 -0.0200
-endloop
-endfacet
-facet normal 0 0 0
-outer loop
-vertex 0.0300 0.0250 -0.0200
-vertex 0.0300 0.0250 -0.0500
-vertex -0.0300 0.0250 -0.0500
-endloop
-endfacet
-facet normal 0 0 0
-outer loop
-vertex -0.0180 0.0020 -0.0000
-vertex -0.0180 0.0120 -0.0000
-vertex -0.0520 0.0120 -0.0000
-endloop
-endfacet
-facet normal 0 0 0
-outer loop
-vertex -0.0520 0.0120 -0.0000
-vertex -0.0520 0.0020 -0.0000
-vertex -0.0180 0.0020 -0.0000
-endloop
-endfacet
-facet normal 0 0 0
-outer loop
-vertex -0.0520 -0.0020 -0.0000
-vertex -0.0520 -0.0120 -0.0000
-vertex -0.0180 -0.0120 -0.0000
-endloop
-endfacet
-facet normal 0 0 0
-outer loop
-vertex -0.0180 -0.0120 -0.0000
-vertex -0.0180 -0.0020 -0.0000
-vertex -0.0520 -0.0020 -0.0000
-endloop
-endfacet
-facet normal 0 0 0
-outer loop
-vertex 0.0180 0.0120 0.0500
-vertex 0.0180 0.0120 0.0450
-vertex 0.0180 -0.0120 0.0450
-endloop
-endfacet
-facet normal 0 0 0
-outer loop
-vertex 0.0180 -0.0120 0.0450
-vertex 0.0180 -0.0120 0.0500
-vertex 0.0180 0.0120 0.0500
-endloop
-endfacet
-facet normal 0 0 0
-outer loop
-vertex 0.0011 0.0120 -0.0170
-vertex 0.0011 0.0220 -0.0170
-vertex -0.0159 0.0220 0.0000
-endloop
-endfacet
-facet normal 0 0 0
-outer loop
-vertex -0.0159 0.0220 0.0000
-vertex -0.0159 0.0120 0.0000
-vertex 0.0011 0.0120 -0.0170
+vertex -0.0450 -0.0180 -0.0661
+vertex -0.0450 -0.0080 -0.0661
+vertex -0.0280 -0.0080 -0.0831
 endloop
 endfacet
 facet normal 0 0 0
@@ -3795,16 +4089,16 @@ endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0229 0.0830 -0.0071
-vertex -0.0159 0.0830 0.0000
-vertex 0.0011 0.0830 -0.0170
+vertex -0.0379 -0.0790 -0.0591
+vertex -0.0450 -0.0790 -0.0661
+vertex -0.0280 -0.0790 -0.0831
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0011 0.0830 -0.0170
-vertex -0.0060 0.0830 -0.0240
-vertex -0.0229 0.0830 -0.0071
+vertex -0.0280 -0.0790 -0.0831
+vertex -0.0210 -0.0790 -0.0760
+vertex -0.0379 -0.0790 -0.0591
 endloop
 endfacet
 facet normal 0 0 0
@@ -3851,142 +4145,16 @@ endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0011 0.0830 -0.0631
-vertex 0.0011 0.0830 -0.0531
-vertex 0.0011 0.0220 -0.0531
-endloop
-endfacet
-facet normal 0 0 0
-outer loop
-vertex 0.0011 0.0220 -0.0531
-vertex 0.0011 0.0220 -0.0631
-vertex 0.0011 0.0830 -0.0631
-endloop
-endfacet
-facet normal 0 0 0
-outer loop
-vertex 0.0300 -0.1250 -0.0100
-vertex 0.0300 -0.1250 -0.0200
-vertex 0.0300 0.1250 -0.0200
-endloop
-endfacet
-facet normal 0 0 0
-outer loop
-vertex 0.0300 0.1250 -0.0200
-vertex 0.0300 0.1250 -0.0100
-vertex 0.0300 -0.1250 -0.0100
-endloop
-endfacet
-facet normal 0 0 0
-outer loop
-vertex -0.0288 -0.1297 -0.0184
-vertex -0.0286 -0.1296 -0.0200
-vertex -0.0300 -0.1250 -0.0200
-endloop
-endfacet
-facet normal 0 0 0
-outer loop
-vertex -0.0300 -0.1250 -0.0200
-vertex -0.0302 -0.1250 -0.0184
-vertex -0.0288 -0.1297 -0.0184
-endloop
-endfacet
-facet normal 0 0 0
-outer loop
-vertex 0.0302 -0.1250 -0.0184
-vertex 0.0300 -0.1250 -0.0200
-vertex 0.0286 -0.1296 -0.0200
-endloop
-endfacet
-facet normal 0 0 0
-outer loop
-vertex 0.0286 -0.1296 -0.0200
-vertex 0.0288 -0.1297 -0.0184
-vertex 0.0302 -0.1250 -0.0184
-endloop
-endfacet
-facet normal 0 0 0
-outer loop
-vertex 0.0195 0.1344 -0.0153
-vertex 0.0192 0.1340 -0.0200
-vertex 0.0300 0.1250 -0.0200
-endloop
-endfacet
-facet normal 0 0 0
-outer loop
-vertex 0.0300 0.1250 -0.0200
-vertex 0.0303 0.1254 -0.0153
-vertex 0.0195 0.1344 -0.0153
-endloop
-endfacet
-facet normal 0 0 0
-outer loop
-vertex -0.0303 0.1254 -0.0153
-vertex -0.0300 0.1250 -0.0200
-vertex -0.0192 0.1340 -0.0200
-endloop
-endfacet
-facet normal 0 0 0
-outer loop
-vertex -0.0192 0.1340 -0.0200
-vertex -0.0195 0.1344 -0.0153
-vertex -0.0303 0.1254 -0.0153
-endloop
-endfacet
-facet normal 0 0 0
-outer loop
-vertex -0.0200 -0.0250 -0.0200
-vertex -0.0300 -0.0250 -0.0200
-vertex -0.0300 -0.0250 -0.0500
-endloop
-endfacet
-facet normal 0 0 0
-outer loop
-vertex -0.0300 -0.0250 -0.0500
-vertex -0.0200 -0.0250 -0.0500
-vertex -0.0200 -0.0250 -0.0200
-endloop
-endfacet
-facet normal 0 0 0
-outer loop
-vertex 0.0300 -0.0150 -0.0200
-vertex 0.0300 -0.0250 -0.0200
-vertex 0.0300 -0.0250 -0.0500
-endloop
-endfacet
-facet normal 0 0 0
-outer loop
-vertex 0.0300 -0.0250 -0.0500
-vertex 0.0300 -0.0150 -0.0500
-vertex 0.0300 -0.0150 -0.0200
-endloop
-endfacet
-facet normal 0 0 0
-outer loop
-vertex 0.0200 0.0250 -0.0200
-vertex 0.0300 0.0250 -0.0200
-vertex 0.0300 0.0250 -0.0500
-endloop
-endfacet
-facet normal 0 0 0
-outer loop
-vertex 0.0300 0.0250 -0.0500
-vertex 0.0200 0.0250 -0.0500
-vertex 0.0200 0.0250 -0.0200
-endloop
-endfacet
-facet normal 0 0 0
-outer loop
-vertex -0.0200 0.0250 -0.0500
-vertex -0.0300 0.0250 -0.0500
-vertex -0.0300 0.0250 -0.0200
+vertex 0.0181 -0.0790 -0.0831
+vertex 0.0081 -0.0790 -0.0831
+vertex 0.0081 -0.0180 -0.0831
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0300 0.0250 -0.0200
-vertex -0.0200 0.0250 -0.0200
-vertex -0.0200 0.0250 -0.0500
+vertex 0.0081 -0.0180 -0.0831
+vertex 0.0181 -0.0180 -0.0831
+vertex 0.0181 -0.0790 -0.0831
 endloop
 endfacet
 endsolid python
diff --git a/rocolib/output/HouseboatWithServoMountAndStack/graph-silhouette.dxf b/rocolib/output/HouseboatWithServoMountAndStack/graph-silhouette.dxf
index 4c45313c8a9cdb747487370067f355451a8fae9b..9c7ba8efa7052741ae517f56d1811b531f893c69 100644
--- a/rocolib/output/HouseboatWithServoMountAndStack/graph-silhouette.dxf
+++ b/rocolib/output/HouseboatWithServoMountAndStack/graph-silhouette.dxf
@@ -938,20 +938,22 @@ MVIEW
 }
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
 0
  10
-70.00000000000001
+127.92433336086202
  20
-214.98039000000003
+117.88129600000003
  30
 0.0
  11
-34.0
+127.92433336086202
  21
-214.98039000000003
+415.8812960000001
  31
 0.0
   0
@@ -959,73 +961,79 @@ LINE
   6
 DOTTED
  62
-3
+1
   8
 0
  10
-70.00000000000001
+37.924333360862015
  20
-214.98039000000003
+117.88129600000003
  30
 0.0
  11
-70.00000000000001
+37.924333360862015
  21
-238.98039000000003
+415.8812960000001
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
 0
  10
-34.0
+82.92433336086202
  20
-238.98039000000003
+117.88129600000003
  30
 0.0
  11
-70.00000000000001
+37.924333360862015
  21
-238.98039000000003
+117.88129600000003
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
 0
  10
-70.00000000000001
+127.92433336086202
  20
-238.98039000000003
+117.88129600000003
  30
 0.0
  11
-115.00000000000001
+82.92433336086202
  21
-238.98039000000003
+117.88129600000003
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
 0
  10
-115.00000000000001
+82.92433336086202
  20
-214.98039000000003
+-2.2633099661106828e-07
  30
 0.0
  11
-70.00000000000001
+37.924333360862015
  21
-214.98039000000003
+117.88129600000003
  31
 0.0
   0
@@ -1035,15 +1043,15 @@ LINE
   8
 0
  10
-120.00000000000001
+18.56479320700301
  20
-214.98039000000003
+93.12697584332294
  30
 0.0
  11
-115.00000000000001
+13.244563283932509
  21
-214.98039000000003
+100.82524285309951
  31
 0.0
   0
@@ -1053,51 +1061,73 @@ LINE
   8
 0
  10
-120.00000000000001
+82.92433336086201
  20
-238.98039000000003
+-2.2633093976764942e-07
  30
 0.0
  11
-120.00000000000001
+18.56479320700301
  21
-214.98039000000003
+93.12697584332294
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
 0
  10
-115.00000000000001
+37.92433336086201
  20
-238.98039000000003
+117.88129600000006
  30
 0.0
  11
-120.00000000000001
+13.244563283932509
  21
-238.98039000000003
+100.82524285309951
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+3
   8
 0
  10
+37.924333360862015
+ 20
+117.88129600000003
+ 30
 0.0
+ 11
+7.924333360862009
+ 21
+108.52350986287608
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+13.244563283932523
  20
-238.98039000000003
+100.82524285309951
  30
 0.0
  11
-34.0
+7.924333360862009
  21
-238.98039000000003
+108.52350986287608
  31
 0.0
   0
@@ -1105,37 +1135,39 @@ LINE
   6
 DOTTED
  62
-1
+3
   8
 0
  10
-34.0
+7.924333360862009
  20
-214.98039000000003
+117.88129600000003
  30
 0.0
  11
-0.0
+7.924333360862009
  21
-214.98039000000003
+108.52350986287608
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
 0
  10
-0.0
+37.924333360862015
  20
-214.98039000000003
+117.88129600000003
  30
 0.0
  11
-0.0
+7.924333360862009
  21
-141.98039000000003
+117.88129600000003
  31
 0.0
   0
@@ -1145,15 +1177,15 @@ LINE
   8
 0
  10
-0.0
+4.8050713151540245
  20
-248.98039000000003
+117.88129600000003
  30
 0.0
  11
-0.0
+7.924333360862009
  21
-238.98039000000003
+117.88129600000003
  31
 0.0
   0
@@ -1163,15 +1195,15 @@ LINE
   8
 0
  10
-0.0
+4.8050713151540245
  20
-309.98039000000006
+108.52350986287608
  30
 0.0
  11
-0.0
+4.8050713151540245
  21
-309.98039000000006
+117.88129600000003
  31
 0.0
   0
@@ -1181,15 +1213,15 @@ LINE
   8
 0
  10
-0.0
+7.924333360862009
  20
-141.98039000000003
+108.52350986287608
  30
 0.0
  11
-0.0
+4.8050713151540245
  21
-309.98039000000006
+108.52350986287608
  31
 0.0
   0
@@ -1199,15 +1231,15 @@ LINE
   8
 0
  10
-0.0
+7.924333360861966
  20
-141.98039000000003
+415.88129600000013
  30
 0.0
  11
-0.0
+7.924333360862009
  21
-141.98039000000003
+117.88129600000003
  31
 0.0
   0
@@ -1219,33 +1251,55 @@ DOTTED
   8
 0
  10
-36.138621999185304
+7.924333360861966
  20
-248.98039000000003
+415.88129600000013
  30
 0.0
  11
-36.138621999185304
+37.924333360861965
  21
-309.98039000000006
+415.88129600000013
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+3
   8
 0
  10
+7.924333360861966
+ 20
+439.65429608258603
+ 30
 0.0
+ 11
+37.924333360861965
+ 21
+415.88129600000013
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+3
+  8
+0
+ 10
+7.924333360861966
  20
-309.98039000000006
+439.65429608258603
  30
 0.0
  11
-36.138621999185304
+7.924333360861966
  21
-309.98039000000006
+415.88129600000013
  31
 0.0
   0
@@ -1255,15 +1309,15 @@ LINE
   8
 0
  10
-36.138621999185304
+7.924333360861952
  20
-248.98039000000003
+439.65429608258603
  30
 0.0
  11
-0.0
+31.068177965444168
  21
-248.98039000000003
+445.08734217530235
  31
 0.0
   0
@@ -1275,15 +1329,15 @@ DOTTED
   8
 0
  10
-60.13862199918531
+31.068177965444168
  20
-309.98039000000006
+445.08734217530235
  30
 0.0
  11
-60.13862199918531
+37.924333360861965
  21
-248.98039000000003
+415.88129600000013
  31
 0.0
   0
@@ -1295,15 +1349,15 @@ DOTTED
   8
 0
  10
-60.13862199918531
+82.92433336086197
  20
-309.98039000000006
+457.26063867240134
  30
 0.0
  11
-36.138621999185304
+37.924333360861965
  21
-309.98039000000006
+415.88129600000013
  31
 0.0
   0
@@ -1313,15 +1367,15 @@ LINE
   8
 0
  10
-96.27724399837062
+54.21202257002637
  20
-248.98039000000003
+450.5203882680186
  30
 0.0
  11
-60.13862199918531
+82.92433336086197
  21
-248.98039000000003
+457.26063867240134
  31
 0.0
   0
@@ -1331,69 +1385,75 @@ LINE
   8
 0
  10
-60.13862199918531
+31.068177965444168
  20
-309.98039000000006
+445.08734217530235
  30
 0.0
  11
-96.27724399837062
+54.21202257002637
  21
-309.98039000000006
+450.5203882680186
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
 0
  10
-106.27724399837062
+37.924333360861965
  20
-248.98039000000003
+415.88129600000013
  30
 0.0
  11
-96.27724399837062
+82.92433336086197
  21
-248.98039000000003
+415.88129600000013
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
 0
  10
-106.27724399837062
+82.92433336086197
  20
-309.98039000000006
+415.88129600000013
  30
 0.0
  11
-106.27724399837062
+127.92433336086198
  21
-248.98039000000003
+415.88129600000013
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
 0
  10
-96.27724399837062
+82.92433336086195
  20
-309.98039000000006
+457.2606386724013
  30
 0.0
  11
-106.27724399837062
+127.92433336086198
  21
-309.98039000000006
+415.88129600000013
  31
 0.0
   0
@@ -1403,15 +1463,15 @@ LINE
   8
 0
  10
-60.13862199918531
+111.63664415169755
  20
-319.98039
+450.5203882680186
  30
 0.0
  11
-60.13862199918531
+134.78048875627974
  21
-309.98039000000006
+445.08734217530235
  31
 0.0
   0
@@ -1421,51 +1481,55 @@ LINE
   8
 0
  10
-36.138621999185304
+82.92433336086197
  20
-319.98039
+457.2606386724013
  30
 0.0
  11
-60.13862199918531
+111.63664415169755
  21
-319.98039
+450.5203882680186
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
 0
  10
-36.138621999185304
+127.92433336086198
  20
-309.98039000000006
+415.88129600000013
  30
 0.0
  11
-36.138621999185304
+134.78048875627974
  21
-319.98039
+445.08734217530235
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+3
   8
 0
  10
-36.138621999185304
+127.92433336086198
  20
-238.98039000000003
+415.88129600000013
  30
 0.0
  11
-36.138621999185304
+157.924333360862
  21
-248.98039000000003
+439.65429608258603
  31
 0.0
   0
@@ -1475,51 +1539,55 @@ LINE
   8
 0
  10
-60.13862199918531
+134.78048875627974
  20
-238.98039000000003
+445.08734217530235
  30
 0.0
  11
-36.138621999185304
+157.924333360862
  21
-238.98039000000003
+439.65429608258603
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+3
   8
 0
  10
-60.13862199918531
+157.924333360862
  20
-248.98039000000003
+415.88129600000013
  30
 0.0
  11
-60.13862199918531
+157.924333360862
  21
-238.98039000000003
+439.65429608258603
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
 0
  10
-34.0
+127.92433336086197
  20
-214.98039000000003
+415.88129600000013
  30
 0.0
  11
-34.0
+157.924333360862
  21
-194.98039000000003
+415.88129600000013
  31
 0.0
   0
@@ -1529,35 +1597,33 @@ LINE
   8
 0
  10
-0.0
+165.84866672172393
  20
-194.98039000000003
+415.88129600000013
  30
 0.0
  11
-0.0
+157.924333360862
  21
-214.98039000000003
+415.88129600000013
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
 0
  10
-34.0
+165.84866672172393
  20
-194.98039000000003
+439.65429608258603
  30
 0.0
  11
-0.0
+165.84866672172393
  21
-194.98039000000003
+415.88129600000013
  31
 0.0
   0
@@ -1567,15 +1633,15 @@ LINE
   8
 0
  10
-34.0
+157.924333360862
  20
-194.98039000000003
+439.65429608258603
  30
 0.0
  11
-34.0
+165.84866672172393
  21
-170.98039000000003
+439.65429608258603
  31
 0.0
   0
@@ -1585,15 +1651,15 @@ LINE
   8
 0
  10
-0.0
+157.92433336086205
  20
-170.98039000000003
+117.88129600000009
  30
 0.0
  11
-0.0
+157.924333360862
  21
-194.98039000000003
+415.88129600000013
  31
 0.0
   0
@@ -1605,33 +1671,55 @@ DOTTED
   8
 0
  10
-34.0
+157.92433336086205
  20
-170.98039000000003
+117.88129600000009
  30
 0.0
  11
+127.92433336086204
+ 21
+117.88129600000009
+ 31
 0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+3
+  8
+0
+ 10
+157.92433336086205
+ 20
+108.52350986287614
+ 30
+0.0
+ 11
+127.92433336086204
  21
-170.98039000000003
+117.88129600000009
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+3
   8
 0
  10
-34.0
+157.92433336086205
  20
-170.98039000000003
+108.52350986287614
  30
 0.0
  11
-34.0
+157.92433336086205
  21
-150.98039000000003
+117.88129600000009
  31
 0.0
   0
@@ -1641,15 +1729,15 @@ LINE
   8
 0
  10
-0.0
+157.92433336086205
  20
-150.98039000000003
+108.52350986287614
  30
 0.0
  11
-0.0
+152.60410343779157
  21
-170.98039000000003
+100.82524285309957
  31
 0.0
   0
@@ -1661,33 +1749,35 @@ DOTTED
   8
 0
  10
-0.0
+152.60410343779157
  20
-150.98039000000003
+100.82524285309957
  30
 0.0
  11
-34.0
+127.92433336086204
  21
-150.98039000000003
+117.88129600000009
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
 0
  10
-0.0
+82.9243333608621
  20
-140.98039
+-2.2633093976764942e-07
  30
 0.0
  11
-0.0
+127.92433336086204
  21
-150.98039000000003
+117.88129600000009
  31
 0.0
   0
@@ -1697,15 +1787,15 @@ LINE
   8
 0
  10
-34.0
+147.28387351472105
  20
-140.98039
+93.126975843323
  30
 0.0
  11
-0.0
+82.9243333608621
  21
-140.98039
+-2.2633093976764942e-07
  31
 0.0
   0
@@ -1715,15 +1805,15 @@ LINE
   8
 0
  10
-34.0
+152.60410343779157
  20
-150.98039000000003
+100.82524285309957
  30
 0.0
  11
-34.0
+147.28387351472105
  21
-140.98039
+93.126975843323
  31
 0.0
   0
@@ -1733,15 +1823,15 @@ LINE
   8
 0
  10
-118.75000000000001
+161.04359540657003
  20
-230.98039000000003
+108.52350986287614
  30
 0.0
  11
-118.75000000000001
+157.92433336086205
  21
-233.48039000000003
+108.52350986287614
  31
 0.0
   0
@@ -1751,15 +1841,15 @@ LINE
   8
 0
  10
-118.75000000000001
+161.04359540657003
  20
-233.48039000000003
+117.88129600000009
  30
 0.0
  11
-116.25000000000001
+161.04359540657003
  21
-230.98039000000003
+108.52350986287614
  31
 0.0
   0
@@ -1769,15 +1859,15 @@ LINE
   8
 0
  10
-116.25000000000001
+157.92433336086205
  20
-230.98039000000003
+117.88129600000009
  30
 0.0
  11
-116.25000000000001
+161.04359540657003
  21
-222.98039000000003
+117.88129600000009
  31
 0.0
   0
@@ -1787,15 +1877,15 @@ LINE
   8
 0
  10
-116.25000000000001
+157.924333360862
  20
-222.98039000000003
+345.88129600000013
  30
 0.0
  11
-118.75000000000001
+157.924333360862
  21
-220.48039
+345.88129600000013
  31
 0.0
   0
@@ -1805,15 +1895,15 @@ LINE
   8
 0
  10
-118.75000000000001
+157.92433336086205
  20
-220.48039
+117.88129600000009
  30
 0.0
  11
-118.75000000000001
+157.92433336086205
  21
-222.98039000000003
+117.88129600000009
  31
 0.0
   0
@@ -1823,15 +1913,15 @@ LINE
   8
 0
  10
-11.08333333333333
+157.92433336086205
  20
-231.23039000000003
+178.8812960000001
  30
 0.0
  11
-22.916666666666668
+157.92433336086205
  21
-231.23039000000003
+117.88129600000009
  31
 0.0
   0
@@ -1841,15 +1931,15 @@ LINE
   8
 0
  10
-22.916666666666668
+157.92433336086205
  20
-231.23039000000003
+188.88129600000008
  30
 0.0
  11
-22.916666666666668
+157.92433336086205
  21
-231.73039000000003
+178.8812960000001
  31
 0.0
   0
@@ -1859,15 +1949,15 @@ LINE
   8
 0
  10
-22.916666666666668
+157.92433336086202
  20
-231.73039000000003
+285.88129600000013
  30
 0.0
  11
-11.08333333333333
+157.92433336086205
  21
-231.73039000000003
+212.8812960000001
  31
 0.0
   0
@@ -1877,15 +1967,15 @@ LINE
   8
 0
  10
-11.08333333333333
+157.92433336086202
  20
-231.73039000000003
+285.88129600000013
  30
 0.0
  11
-11.08333333333333
+157.92433336086202
  21
-231.23039000000003
+285.88129600000013
  31
 0.0
   0
@@ -1895,15 +1985,15 @@ LINE
   8
 0
  10
-54.63862199918531
+157.92433336086205
  20
-266.98039
+117.88129600000009
  30
 0.0
  11
-54.63862199918531
+157.92433336086205
  21
-277.98039000000006
+117.88129600000009
  31
 0.0
   0
@@ -1913,33 +2003,35 @@ LINE
   8
 0
  10
-54.63862199918531
+191.92433336086205
  20
-277.98039000000006
+188.88129600000008
  30
 0.0
  11
-41.63862199918531
+157.92433336086205
  21
-277.98039000000006
+188.88129600000008
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
 0
  10
-41.63862199918531
+157.92433336086205
  20
-277.98039000000006
+212.8812960000001
  30
 0.0
  11
-41.63862199918531
+191.92433336086205
  21
-266.98039
+212.8812960000001
  31
 0.0
   0
@@ -1949,33 +2041,35 @@ LINE
   8
 0
  10
-41.63862199918531
+227.92433336086205
  20
-266.98039
+188.8812960000001
  30
 0.0
  11
-54.63862199918531
+191.92433336086205
  21
-266.98039
+188.8812960000001
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+3
   8
 0
  10
-53.13862199918531
+227.92433336086205
  20
-298.48039
+188.8812960000001
  30
 0.0
  11
-53.13862199918531
+227.92433336086205
  21
-304.48039000000006
+212.88129600000013
  31
 0.0
   0
@@ -1985,15 +2079,15 @@ LINE
   8
 0
  10
-53.13862199918531
+191.92433336086205
  20
-304.48039000000006
+212.88129600000013
  30
 0.0
  11
-43.13862199918531
+227.92433336086205
  21
-304.48039000000006
+212.88129600000013
  31
 0.0
   0
@@ -2003,15 +2097,15 @@ LINE
   8
 0
  10
-43.13862199918531
+227.92433336086205
  20
-304.48039000000006
+212.88129600000013
  30
 0.0
  11
-43.13862199918531
+272.924333360862
  21
-298.48039
+212.88129600000016
  31
 0.0
   0
@@ -2021,15 +2115,15 @@ LINE
   8
 0
  10
-43.13862199918531
+272.924333360862
  20
-298.48039
+188.88129600000013
  30
 0.0
  11
-53.13862199918531
+227.92433336086205
  21
-298.48039
+188.8812960000001
  31
 0.0
   0
@@ -2039,15 +2133,15 @@ LINE
   8
 0
  10
-103.77724399837062
+272.924333360862
  20
-298.88948090909093
+212.88129600000016
  30
 0.0
  11
-98.77724399837062
+272.924333360862
  21
-298.88948090909093
+188.88129600000013
  31
 0.0
   0
@@ -2057,15 +2151,15 @@ LINE
   8
 0
  10
-98.77724399837062
+157.92433336086205
  20
-298.88948090909093
+212.8812960000001
  30
 0.0
  11
-98.77724399837062
+157.92433336086205
  21
-287.79857181818187
+232.8812960000001
  31
 0.0
   0
@@ -2075,33 +2169,35 @@ LINE
   8
 0
  10
-98.77724399837062
+191.92433336086205
  20
-287.79857181818187
+232.8812960000001
  30
 0.0
  11
-103.77724399837062
+191.92433336086205
  21
-287.79857181818187
+212.8812960000001
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
 0
  10
-103.77724399837062
+157.92433336086205
  20
-271.16220818181824
+232.8812960000001
  30
 0.0
  11
-98.77724399837062
+191.92433336086205
  21
-271.16220818181824
+232.8812960000001
  31
 0.0
   0
@@ -2111,15 +2207,15 @@ LINE
   8
 0
  10
-98.77724399837062
+157.92433336086205
  20
-271.16220818181824
+232.8812960000001
  30
 0.0
  11
-98.77724399837062
+157.92433336086205
  21
-260.0712990909091
+256.88129600000013
  31
 0.0
   0
@@ -2129,33 +2225,35 @@ LINE
   8
 0
  10
-98.77724399837062
+191.92433336086205
  20
-260.0712990909091
+256.88129600000013
  30
 0.0
  11
-103.77724399837062
+191.92433336086205
  21
-260.0712990909091
+232.8812960000001
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
 0
  10
-44.138621999185304
+157.92433336086205
  20
-317.48039000000006
+256.88129600000013
  30
 0.0
  11
-44.138621999185304
+191.92433336086205
  21
-312.48039000000006
+256.88129600000013
  31
 0.0
   0
@@ -2165,15 +2263,15 @@ LINE
   8
 0
  10
-44.138621999185304
+157.92433336086205
  20
-312.48039000000006
+256.88129600000013
  30
 0.0
  11
-52.13862199918531
+157.92433336086205
  21
-312.48039000000006
+276.88129600000013
  31
 0.0
   0
@@ -2183,33 +2281,35 @@ LINE
   8
 0
  10
-52.13862199918531
+191.92433336086205
  20
-312.48039000000006
+276.88129600000013
  30
 0.0
  11
-52.13862199918531
+191.92433336086205
  21
-317.48039000000006
+256.88129600000013
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
 0
  10
-52.13862199918531
+191.92433336086205
  20
-241.48039000000003
+276.88129600000013
  30
 0.0
  11
-52.13862199918531
+157.92433336086205
  21
-246.48039000000003
+276.88129600000013
  31
 0.0
   0
@@ -2219,15 +2319,15 @@ LINE
   8
 0
  10
-52.13862199918531
+191.92433336086205
  20
-246.48039000000003
+286.88129600000013
  30
 0.0
  11
-44.138621999185304
+191.92433336086205
  21
-246.48039000000003
+276.88129600000013
  31
 0.0
   0
@@ -2237,15 +2337,15 @@ LINE
   8
 0
  10
-44.138621999185304
+157.92433336086205
  20
-246.48039000000003
+286.88129600000013
  30
 0.0
  11
-44.138621999185304
+191.92433336086205
  21
-241.48039000000003
+286.88129600000013
  31
 0.0
   0
@@ -2255,15 +2355,15 @@ LINE
   8
 0
  10
-23.000000000000004
+157.92433336086205
  20
-195.98039000000003
+276.88129600000013
  30
 0.0
  11
-23.000000000000004
+157.92433336086205
  21
-199.98039
+286.88129600000013
  31
 0.0
   0
@@ -2273,15 +2373,15 @@ LINE
   8
 0
  10
-23.000000000000004
+157.924333360862
  20
-199.98039
+345.88129600000013
  30
 0.0
  11
-11.000000000000002
+219.57861139572347
  21
-199.98039
+345.8812960000002
  31
 0.0
   0
@@ -2291,33 +2391,35 @@ LINE
   8
 0
  10
-11.000000000000002
+219.57861139572347
  20
-199.98039
+285.88129600000013
  30
 0.0
  11
-11.000000000000002
+157.92433336086202
  21
-195.98039000000003
+285.88129600000013
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+3
   8
 0
  10
-11.000000000000002
+219.57861139572347
  20
-195.98039000000003
+285.88129600000013
  30
 0.0
  11
-23.000000000000004
+219.57861139572347
  21
-195.98039000000003
+345.8812960000002
  31
 0.0
   0
@@ -2327,51 +2429,55 @@ LINE
   8
 0
  10
-21.500000000000004
+246.5786113957235
  20
-207.98039000000003
+285.8812960000002
  30
 0.0
  11
-21.500000000000004
+219.57861139572347
  21
-211.98039000000003
+285.88129600000013
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+3
   8
 0
  10
-21.500000000000004
+246.5786113957235
  20
-211.98039000000003
+345.8812960000002
  30
 0.0
  11
-12.5
+246.5786113957235
  21
-211.98039000000003
+285.8812960000002
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
 0
  10
-12.5
+219.57861139572347
  20
-211.98039000000003
+345.8812960000002
  30
 0.0
  11
-12.5
+246.5786113957235
  21
-207.98039000000003
+345.8812960000002
  31
 0.0
   0
@@ -2381,15 +2487,15 @@ LINE
   8
 0
  10
-12.5
+308.2328894305849
  20
-207.98039000000003
+285.8812960000002
  30
 0.0
  11
-21.500000000000004
+246.5786113957235
  21
-207.98039000000003
+285.8812960000002
  31
 0.0
   0
@@ -2399,15 +2505,15 @@ LINE
   8
 0
  10
-23.000000000000004
+308.2328894305849
  20
-171.48039000000003
+345.8812960000002
  30
 0.0
  11
-23.000000000000004
+308.2328894305849
  21
-194.48039000000003
+285.8812960000002
  31
 0.0
   0
@@ -2417,15 +2523,15 @@ LINE
   8
 0
  10
-23.000000000000004
+246.5786113957234
  20
-194.48039000000003
+345.8812960000002
  30
 0.0
  11
-11.000000000000002
+308.2328894305849
  21
-194.48039000000003
+345.8812960000002
  31
 0.0
   0
@@ -2435,15 +2541,15 @@ LINE
   8
 0
  10
-11.000000000000002
+219.57861139572339
  20
-194.48039000000003
+345.8812960000002
  30
 0.0
  11
-11.000000000000002
+219.57861139572339
  21
-171.48039000000003
+362.8812960000002
  31
 0.0
   0
@@ -2453,33 +2559,35 @@ LINE
   8
 0
  10
-11.000000000000002
+246.5786113957234
  20
-171.48039000000003
+362.8812960000002
  30
 0.0
  11
-23.000000000000004
+246.5786113957234
  21
-171.48039000000003
+345.8812960000002
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
 0
  10
-23.000000000000004
+219.57861139572339
  20
-165.98039
+362.8812960000002
  30
 0.0
  11
-23.000000000000004
+246.5786113957234
  21
-169.98039000000003
+362.8812960000002
  31
 0.0
   0
@@ -2489,15 +2597,15 @@ LINE
   8
 0
  10
-23.000000000000004
+219.57861139572339
  20
-169.98039000000003
+362.8812960000002
  30
 0.0
  11
-11.000000000000002
+219.57861139572339
  21
-169.98039000000003
+422.8812960000002
  31
 0.0
   0
@@ -2507,33 +2615,35 @@ LINE
   8
 0
  10
-11.000000000000002
+246.5786113957234
  20
-169.98039000000003
+422.8812960000002
  30
 0.0
  11
-11.000000000000002
+246.5786113957234
  21
-165.98039
+362.8812960000002
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
 0
  10
-11.000000000000002
+219.57861139572339
  20
-165.98039
+422.8812960000002
  30
 0.0
  11
-23.000000000000004
+246.5786113957234
  21
-165.98039
+422.8812960000002
  31
 0.0
   0
@@ -2543,15 +2653,15 @@ LINE
   8
 0
  10
-22.666666666666668
+219.57861139572339
  20
-143.48039
+422.8812960000002
  30
 0.0
  11
-22.666666666666668
+219.57861139572339
  21
-148.48039000000003
+439.8812960000002
  31
 0.0
   0
@@ -2561,33 +2671,35 @@ LINE
   8
 0
  10
-22.666666666666668
+246.5786113957234
  20
-148.48039000000003
+439.8812960000002
  30
 0.0
  11
-11.33333333333333
+246.5786113957234
  21
-148.48039000000003
+422.8812960000002
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
 0
  10
-11.33333333333333
+246.5786113957234
  20
-148.48039000000003
+439.8812960000002
  30
 0.0
  11
-11.33333333333333
+219.57861139572339
  21
-143.48039
+439.8812960000002
  31
 0.0
   0
@@ -2597,35 +2709,33 @@ LINE
   8
 0
  10
-200.0
+246.5786113957234
  20
-214.98039000000003
+449.8812960000002
  30
 0.0
  11
-164.0
+246.5786113957234
  21
-214.98039000000003
+439.8812960000002
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-3
+5
   8
 0
  10
-200.0
+219.57861139572339
  20
-214.98039000000003
+449.8812960000002
  30
 0.0
  11
-200.0
+246.5786113957234
  21
-238.98039000000003
+449.8812960000002
  31
 0.0
   0
@@ -2635,15 +2745,15 @@ LINE
   8
 0
  10
-164.0
+219.57861139572339
  20
-238.98039000000003
+439.8812960000002
  30
 0.0
  11
-200.0
+219.57861139572339
  21
-238.98039000000003
+449.8812960000002
  31
 0.0
   0
@@ -2653,15 +2763,15 @@ LINE
   8
 0
  10
-200.0
+157.92433336086205
  20
-238.98039000000003
+117.88129600000009
  30
 0.0
  11
-245.00000000000003
+157.92433336086205
  21
-238.98039000000003
+117.88129600000009
  31
 0.0
   0
@@ -2671,15 +2781,15 @@ LINE
   8
 0
  10
-245.00000000000003
+157.92433336086205
  20
-214.98039000000003
+231.8812960000001
  30
 0.0
  11
-200.0
+157.92433336086205
  21
-214.98039000000003
+117.88129600000009
  31
 0.0
   0
@@ -2689,15 +2799,15 @@ LINE
   8
 0
  10
-245.00000000000003
+157.924333360862
  20
-238.98039000000003
+415.88129600000013
  30
 0.0
  11
-245.00000000000003
+157.92433336086202
  21
-214.98039000000003
+301.88129600000013
  31
 0.0
   0
@@ -2707,15 +2817,15 @@ LINE
   8
 0
  10
-164.0
+157.924333360862
  20
-214.98039000000003
+415.88129600000013
  30
 0.0
  11
-130.0
+157.924333360862
  21
-214.98039000000003
+415.88129600000013
  31
 0.0
   0
@@ -2727,15 +2837,15 @@ DOTTED
   8
 0
  10
-130.0
+187.924333360862
  20
-238.98039000000003
+301.88129600000013
  30
 0.0
  11
-164.0
+157.924333360862
  21
-238.98039000000003
+301.88129600000013
  31
 0.0
   0
@@ -2745,33 +2855,35 @@ LINE
   8
 0
  10
-130.0
+187.92433336086205
  20
-204.98039000000003
+231.8812960000001
  30
 0.0
  11
-130.0
+157.92433336086205
  21
-143.98039000000003
+231.8812960000001
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
 0
  10
-130.0
+187.924333360862
  20
-214.98039000000003
+301.88129600000013
  30
 0.0
  11
-130.0
+187.92433336086205
  21
-204.98039000000003
+231.8812960000001
  31
 0.0
   0
@@ -2781,15 +2893,15 @@ LINE
   8
 0
  10
-130.0
+187.924333360862
  20
-311.98039
+311.8812960000001
  30
 0.0
  11
-130.0
+187.924333360862
  21
-238.98039000000003
+301.88129600000013
  31
 0.0
   0
@@ -2799,15 +2911,15 @@ LINE
   8
 0
  10
-130.0
+157.924333360862
  20
-311.98039
+311.8812960000001
  30
 0.0
  11
-130.0
+187.924333360862
  21
-311.98039
+311.8812960000001
  31
 0.0
   0
@@ -2817,89 +2929,93 @@ LINE
   8
 0
  10
-130.0
+157.924333360862
  20
-143.98039000000003
+301.88129600000013
  30
 0.0
  11
-130.0
+157.924333360862
  21
-311.98039
+311.8812960000001
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
 0
  10
-130.0
+277.924333360862
  20
-143.98039000000003
+301.88129600000013
  30
 0.0
  11
-130.0
+187.92433336086205
  21
-143.98039000000003
+301.88129600000013
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
 0
  10
-130.0
+187.92433336086205
  20
-238.98039000000003
+231.8812960000001
  30
 0.0
  11
-130.0
+277.924333360862
  21
-258.98039000000006
+231.88129600000016
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
 0
  10
-164.0
+277.924333360862
  20
-258.98039000000006
+231.88129600000016
  30
 0.0
  11
-164.0
+277.924333360862
  21
-238.98039000000003
+301.88129600000013
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
 0
  10
-130.0
+187.924333360862
  20
-258.98039000000006
+331.88129600000013
  30
 0.0
  11
-164.0
+277.92433336086197
  21
-258.98039000000006
+331.8812960000002
  31
 0.0
   0
@@ -2909,15 +3025,15 @@ LINE
   8
 0
  10
-130.0
+187.92433336086202
  20
-258.98039000000006
+301.88129600000013
  30
 0.0
  11
-130.0
+187.924333360862
  21
-282.98039000000006
+331.88129600000013
  31
 0.0
   0
@@ -2927,15 +3043,15 @@ LINE
   8
 0
  10
-164.0
+277.92433336086197
  20
-282.98039000000006
+331.8812960000002
  30
 0.0
  11
-164.0
+277.92433336086197
  21
-258.98039000000006
+301.88129600000013
  31
 0.0
   0
@@ -2947,15 +3063,15 @@ DOTTED
   8
 0
  10
-130.0
+187.92433336086205
  20
-282.98039000000006
+231.8812960000001
  30
 0.0
  11
-164.0
+187.92433336086205
  21
-282.98039000000006
+201.8812960000001
  31
 0.0
   0
@@ -2965,15 +3081,15 @@ LINE
   8
 0
  10
-130.0
+277.924333360862
  20
-282.98039000000006
+201.88129600000016
  30
 0.0
  11
-130.0
+187.92433336086205
  21
-302.98039
+201.8812960000001
  31
 0.0
   0
@@ -2983,35 +3099,33 @@ LINE
   8
 0
  10
-164.0
+277.924333360862
  20
-302.98039
+231.88129600000016
  30
 0.0
  11
-164.0
+277.924333360862
  21
-282.98039000000006
+201.88129600000016
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
 0
  10
-164.0
+177.92433336086205
  20
-302.98039
+231.8812960000001
  30
 0.0
  11
-130.0
+187.92433336086205
  21
-302.98039
+231.8812960000001
  31
 0.0
   0
@@ -3021,15 +3135,15 @@ LINE
   8
 0
  10
-164.0
+177.92433336086205
  20
-312.98039000000006
+201.8812960000001
  30
 0.0
  11
-164.0
+177.92433336086205
  21
-302.98039
+231.8812960000001
  31
 0.0
   0
@@ -3039,51 +3153,55 @@ LINE
   8
 0
  10
-130.0
+187.92433336086205
  20
-312.98039000000006
+201.8812960000001
  30
 0.0
  11
-164.0
+177.92433336086205
  21
-312.98039000000006
+201.8812960000001
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
 0
  10
-130.0
+307.9243333608621
  20
-302.98039
+301.88129600000013
  30
 0.0
  11
-130.0
+277.924333360862
  21
-312.98039000000006
+301.88129600000013
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
 0
  10
-241.00000000000003
+277.924333360862
  20
-231.23039000000003
+231.88129600000016
  30
 0.0
  11
-241.00000000000003
+307.9243333608621
  21
-222.73039
+231.88129600000016
  31
 0.0
   0
@@ -3093,15 +3211,15 @@ LINE
   8
 0
  10
-241.00000000000003
+307.924333360862
  20
-222.73039
+311.88129600000013
  30
 0.0
  11
-241.50000000000003
+307.924333360862
  21
-222.73039
+301.88129600000013
  31
 0.0
   0
@@ -3111,15 +3229,15 @@ LINE
   8
 0
  10
-241.50000000000003
+277.92433336086197
  20
-222.73039
+311.88129600000013
  30
 0.0
  11
-241.50000000000003
+307.924333360862
  21
-231.23039000000003
+311.88129600000013
  31
 0.0
   0
@@ -3129,15 +3247,15 @@ LINE
   8
 0
  10
-241.50000000000003
+277.92433336086197
  20
-231.23039000000003
+301.88129600000013
  30
 0.0
  11
-241.00000000000003
+277.92433336086197
  21
-231.23039000000003
+311.88129600000013
  31
 0.0
   0
@@ -3147,15 +3265,15 @@ LINE
   8
 0
  10
-152.91666666666669
+277.924333360862
  20
-222.73039
+221.88129600000016
  30
 0.0
  11
-141.08333333333334
+277.924333360862
  21
-222.73039
+231.88129600000016
  31
 0.0
   0
@@ -3165,15 +3283,15 @@ LINE
   8
 0
  10
-141.08333333333334
+307.9243333608621
  20
-222.73039
+221.88129600000016
  30
 0.0
  11
-141.08333333333334
+277.924333360862
  21
-222.23039000000003
+221.88129600000016
  31
 0.0
   0
@@ -3183,15 +3301,15 @@ LINE
   8
 0
  10
-141.08333333333334
+307.9243333608621
  20
-222.23039000000003
+231.88129600000016
  30
 0.0
  11
-152.91666666666669
+307.9243333608621
  21
-222.23039000000003
+221.88129600000016
  31
 0.0
   0
@@ -3201,15 +3319,15 @@ LINE
   8
 0
  10
-152.91666666666669
+307.924333360862
  20
-222.23039000000003
+415.8812960000002
  30
 0.0
  11
-152.91666666666669
+307.924333360862
  21
-222.73039
+415.8812960000002
  31
 0.0
   0
@@ -3219,15 +3337,15 @@ LINE
   8
 0
  10
-122.25000000000001
+307.924333360862
  20
-166.41220818181822
+301.88129600000013
  30
 0.0
  11
-122.25000000000001
+307.924333360862
  21
-154.82129909090912
+415.8812960000002
  31
 0.0
   0
@@ -3237,15 +3355,15 @@ LINE
   8
 0
  10
-122.25000000000001
+307.9243333608621
  20
-154.82129909090912
+117.88129600000015
  30
 0.0
  11
-122.75000000000001
+307.9243333608621
  21
-154.82129909090912
+231.88129600000016
  31
 0.0
   0
@@ -3255,15 +3373,15 @@ LINE
   8
 0
  10
-122.75000000000001
+307.9243333608621
  20
-154.82129909090912
+117.88129600000015
  30
 0.0
  11
-122.75000000000001
+307.9243333608621
  21
-166.41220818181822
+117.88129600000015
  31
 0.0
   0
@@ -3273,15 +3391,15 @@ LINE
   8
 0
  10
-122.75000000000001
+307.9243333608621
  20
-166.41220818181822
+187.88129600000016
  30
 0.0
  11
-122.25000000000001
+307.9243333608621
  21
-166.41220818181822
+187.88129600000016
  31
 0.0
   0
@@ -3291,15 +3409,15 @@ LINE
   8
 0
  10
-122.25000000000001
+307.924333360862
  20
-194.13948090909093
+415.8812960000002
  30
 0.0
  11
-122.25000000000001
+307.924333360862
  21
-182.54857181818184
+415.8812960000002
  31
 0.0
   0
@@ -3309,15 +3427,15 @@ LINE
   8
 0
  10
-122.25000000000001
+297.924333360862
  20
-182.54857181818184
+415.8812960000002
  30
 0.0
  11
-122.75000000000001
+307.924333360862
  21
-182.54857181818184
+415.8812960000002
  31
 0.0
   0
@@ -3327,15 +3445,15 @@ LINE
   8
 0
  10
-122.75000000000001
+297.924333360862
  20
-182.54857181818184
+355.8812960000002
  30
 0.0
  11
-122.75000000000001
+297.924333360862
  21
-194.13948090909093
+415.8812960000002
  31
 0.0
   0
@@ -3345,15 +3463,15 @@ LINE
   8
 0
  10
-122.75000000000001
+307.924333360862
  20
-194.13948090909093
+355.8812960000002
  30
 0.0
  11
-122.25000000000001
+297.924333360862
  21
-194.13948090909093
+355.8812960000002
  31
 0.0
   0
@@ -3363,15 +3481,15 @@ LINE
   8
 0
  10
-141.0
+307.9243333608621
  20
-257.98039000000006
+282.8812960000002
  30
 0.0
  11
-141.0
+307.924333360862
  21
-253.98039000000003
+355.8812960000002
  31
 0.0
   0
@@ -3381,15 +3499,15 @@ LINE
   8
 0
  10
-141.0
+307.9243333608621
  20
-253.98039000000003
+248.88129600000016
  30
 0.0
  11
-153.00000000000003
+307.9243333608621
  21
-253.98039000000003
+258.8812960000002
  31
 0.0
   0
@@ -3399,15 +3517,15 @@ LINE
   8
 0
  10
-153.00000000000003
+307.9243333608621
  20
-253.98039000000003
+187.88129600000016
  30
 0.0
  11
-153.00000000000003
+307.9243333608621
  21
-257.98039000000006
+187.88129600000016
  31
 0.0
   0
@@ -3417,15 +3535,15 @@ LINE
   8
 0
  10
-153.00000000000003
+307.924333360862
  20
-257.98039000000006
+355.8812960000002
  30
 0.0
  11
-141.0
+307.924333360862
  21
-257.98039000000006
+355.8812960000002
  31
 0.0
   0
@@ -3435,33 +3553,35 @@ LINE
   8
 0
  10
-142.50000000000003
+307.9243333608621
  20
-245.98039000000003
+258.8812960000002
  30
 0.0
  11
-142.50000000000003
+273.9243333608621
  21
-241.98039000000003
+258.8812960000002
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
 0
  10
-142.50000000000003
+273.9243333608621
  20
-241.98039000000003
+282.8812960000002
  30
 0.0
  11
-151.50000000000003
+307.9243333608621
  21
-241.98039000000003
+282.8812960000002
  31
 0.0
   0
@@ -3471,33 +3591,35 @@ LINE
   8
 0
  10
-151.50000000000003
+237.92433336086205
  20
-241.98039000000003
+282.8812960000002
  30
 0.0
  11
-151.50000000000003
+273.9243333608621
  21
-245.98039000000003
+282.8812960000002
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+3
   8
 0
  10
-151.50000000000003
+237.92433336086205
  20
-245.98039000000003
+282.8812960000002
  30
 0.0
  11
-142.50000000000003
+237.92433336086205
  21
-245.98039000000003
+258.8812960000002
  31
 0.0
   0
@@ -3507,15 +3629,15 @@ LINE
   8
 0
  10
-141.0
+273.9243333608621
  20
-282.48039000000006
+258.8812960000002
  30
 0.0
  11
-141.0
+237.92433336086205
  21
-259.48039
+258.8812960000002
  31
 0.0
   0
@@ -3525,15 +3647,15 @@ LINE
   8
 0
  10
-141.0
+237.92433336086205
  20
-259.48039
+258.8812960000002
  30
 0.0
  11
-153.00000000000003
+192.92433336086202
  21
-259.48039
+258.88129600000013
  31
 0.0
   0
@@ -3543,15 +3665,15 @@ LINE
   8
 0
  10
-153.00000000000003
+192.92433336086202
  20
-259.48039
+282.88129600000013
  30
 0.0
  11
-153.00000000000003
+237.92433336086205
  21
-282.48039000000006
+282.8812960000002
  31
 0.0
   0
@@ -3561,15 +3683,15 @@ LINE
   8
 0
  10
-153.00000000000003
+187.92433336086205
  20
-282.48039000000006
+282.88129600000013
  30
 0.0
  11
-141.0
+192.92433336086202
  21
-282.48039000000006
+282.88129600000013
  31
 0.0
   0
@@ -3579,15 +3701,15 @@ LINE
   8
 0
  10
-141.0
+187.92433336086205
  20
-287.98039
+258.88129600000013
  30
 0.0
  11
-141.0
+187.92433336086205
  21
-283.98039
+282.88129600000013
  31
 0.0
   0
@@ -3597,15 +3719,15 @@ LINE
   8
 0
  10
-141.0
+192.92433336086202
  20
-283.98039
+258.88129600000013
  30
 0.0
  11
-153.00000000000003
+187.92433336086205
  21
-283.98039
+258.88129600000013
  31
 0.0
   0
@@ -3615,15 +3737,15 @@ LINE
   8
 0
  10
-153.00000000000003
+273.9243333608621
  20
-283.98039
+282.8812960000002
  30
 0.0
  11
-153.00000000000003
+273.9243333608621
  21
-287.98039
+302.88129600000013
  31
 0.0
   0
@@ -3633,33 +3755,35 @@ LINE
   8
 0
  10
-153.00000000000003
+307.9243333608621
  20
-287.98039
+302.88129600000013
  30
 0.0
  11
-141.0
+307.9243333608621
  21
-287.98039
+282.8812960000002
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
 0
  10
-141.33333333333334
+273.9243333608621
  20
-310.48039000000006
+302.88129600000013
  30
 0.0
  11
-141.33333333333334
+307.9243333608621
  21
-305.48039000000006
+302.88129600000013
  31
 0.0
   0
@@ -3669,15 +3793,15 @@ LINE
   8
 0
  10
-141.33333333333334
+273.9243333608621
  20
-305.48039000000006
+302.88129600000013
  30
 0.0
  11
-152.66666666666666
+273.9243333608621
  21
-305.48039000000006
+326.8812960000002
  31
 0.0
   0
@@ -3687,15 +3811,15 @@ LINE
   8
 0
  10
-152.66666666666666
+307.9243333608621
  20
-305.48039000000006
+326.8812960000002
  30
 0.0
  11
-152.66666666666666
+307.9243333608621
  21
-310.48039000000006
+302.88129600000013
  31
 0.0
   0
@@ -3707,55 +3831,51 @@ DOTTED
   8
 0
  10
-288.00000000000006
+273.9243333608621
  20
-214.98039000000003
+326.8812960000002
  30
 0.0
  11
-349.00000000000006
+307.9243333608621
  21
-214.98039000000003
+326.8812960000002
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
 0
  10
-349.00000000000006
+273.9243333608621
  20
-214.98039000000003
+326.8812960000002
  30
 0.0
  11
-349.00000000000006
+273.9243333608621
  21
-238.98039000000003
+346.8812960000002
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
 0
  10
-349.00000000000006
+307.9243333608621
  20
-238.98039000000003
+346.8812960000002
  30
 0.0
  11
-288.00000000000006
+307.9243333608621
  21
-238.98039000000003
+326.8812960000002
  31
 0.0
   0
@@ -3767,15 +3887,15 @@ DOTTED
   8
 0
  10
-288.00000000000006
+307.9243333608621
  20
-238.98039000000003
+346.8812960000002
  30
 0.0
  11
-288.00000000000006
+273.9243333608621
  21
-214.98039000000003
+346.8812960000002
  31
 0.0
   0
@@ -3785,15 +3905,15 @@ LINE
   8
 0
  10
-288.00000000000006
+307.9243333608621
  20
-207.98039000000003
+356.88129600000013
  30
 0.0
  11
-288.00000000000006
+307.9243333608621
  21
-214.98039000000003
+346.8812960000002
  31
 0.0
   0
@@ -3803,15 +3923,15 @@ LINE
   8
 0
  10
-348.00000000000006
+273.9243333608621
  20
-207.98039000000003
+356.88129600000013
  30
 0.0
  11
-288.00000000000006
+307.9243333608621
  21
-207.98039000000003
+356.88129600000013
  31
 0.0
   0
@@ -3821,33 +3941,35 @@ LINE
   8
 0
  10
-348.00000000000006
+273.9243333608621
  20
-214.98039000000003
+346.8812960000002
  30
 0.0
  11
-348.00000000000006
+273.9243333608621
  21
-207.98039000000003
+356.88129600000013
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
 0
  10
-356.00000000000006
+271.78571136167676
  20
-214.98039000000003
+248.88129600000016
  30
 0.0
  11
-349.00000000000006
+271.7857113616768
  21
-214.98039000000003
+187.88129600000016
  31
 0.0
   0
@@ -3857,15 +3979,15 @@ LINE
   8
 0
  10
-356.00000000000006
+307.9243333608621
  20
-238.98039000000003
+187.88129600000016
  30
 0.0
  11
-356.00000000000006
+271.7857113616768
  21
-214.98039000000003
+187.88129600000016
  31
 0.0
   0
@@ -3875,15 +3997,15 @@ LINE
   8
 0
  10
-349.00000000000006
+271.78571136167676
  20
-238.98039000000003
+248.88129600000016
  30
 0.0
  11
-356.00000000000006
+307.9243333608621
  21
-238.98039000000003
+248.88129600000016
  31
 0.0
   0
@@ -3895,53 +4017,53 @@ DOTTED
   8
 0
  10
-349.00000000000006
+247.78571136167673
  20
-238.98039000000003
+187.88129600000016
  30
 0.0
  11
-349.00000000000006
+247.78571136167673
  21
-299.98039000000006
+248.88129600000013
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
 0
  10
-289.00000000000006
+247.78571136167673
  20
-299.98039000000006
+187.88129600000016
  30
 0.0
  11
-349.00000000000006
+271.78571136167676
  21
-299.98039000000006
+187.88129600000016
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
 0
  10
-289.00000000000006
+211.64708936249147
  20
-238.98039000000003
+248.88129600000013
  30
 0.0
  11
-289.00000000000006
+247.78571136167673
  21
-299.98039000000006
+248.88129600000013
  31
 0.0
   0
@@ -3951,35 +4073,33 @@ LINE
   8
 0
  10
-373.0
+247.7857113616768
  20
-238.98039000000003
+187.88129600000013
  30
 0.0
  11
-349.00000000000006
+211.64708936249147
  21
-238.98039000000003
+187.88129600000013
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
 0
  10
-373.0
+201.64708936249147
  20
-238.98039000000003
+248.8812960000001
  30
 0.0
  11
-373.0
+211.64708936249147
  21
-299.98039000000006
+248.8812960000001
  31
 0.0
   0
@@ -3989,15 +4109,15 @@ LINE
   8
 0
  10
-349.00000000000006
+201.64708936249147
  20
-299.98039000000006
+187.8812960000001
  30
 0.0
  11
-373.0
+201.64708936249147
  21
-299.98039000000006
+248.8812960000001
  31
 0.0
   0
@@ -4007,15 +4127,15 @@ LINE
   8
 0
  10
-433.00000000000006
+211.64708936249147
  20
-238.98039000000003
+187.8812960000001
  30
 0.0
  11
-373.0
+201.64708936249147
  21
-238.98039000000003
+187.8812960000001
  31
 0.0
   0
@@ -4025,15 +4145,15 @@ LINE
   8
 0
  10
-433.00000000000006
+247.7857113616768
  20
-299.98039000000006
+177.8812960000001
  30
 0.0
  11
-433.00000000000006
+247.7857113616768
  21
-238.98039000000003
+187.88129600000013
  31
 0.0
   0
@@ -4043,15 +4163,15 @@ LINE
   8
 0
  10
-373.0
+271.7857113616768
  20
-299.98039000000006
+177.88129600000016
  30
 0.0
  11
-433.00000000000006
+247.7857113616768
  21
-299.98039000000006
+177.8812960000001
  31
 0.0
   0
@@ -4061,15 +4181,15 @@ LINE
   8
 0
  10
-289.00000000000006
+271.7857113616768
  20
-238.98039000000003
+187.88129600000016
  30
 0.0
  11
-265.00000000000006
+271.7857113616768
  21
-238.98039000000003
+177.88129600000016
  31
 0.0
   0
@@ -4079,35 +4199,33 @@ LINE
   8
 0
  10
-265.00000000000006
+271.78571136167676
  20
-299.98039000000006
+258.8812960000002
  30
 0.0
  11
-289.00000000000006
+271.78571136167676
  21
-299.98039000000006
+248.88129600000016
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
 0
  10
-265.00000000000006
+247.78571136167673
  20
-299.98039000000006
+258.8812960000002
  30
 0.0
  11
-265.00000000000006
+271.78571136167676
  21
-238.98039000000003
+258.8812960000002
  31
 0.0
   0
@@ -4117,15 +4235,15 @@ LINE
   8
 0
  10
-255.00000000000003
+247.78571136167673
  20
-299.98039000000006
+248.88129600000013
  30
 0.0
  11
-265.00000000000006
+247.78571136167673
  21
-299.98039000000006
+258.8812960000002
  31
 0.0
   0
@@ -4135,15 +4253,15 @@ LINE
   8
 0
  10
-255.00000000000003
+0.0
  20
-238.98039000000003
+439.65429608258603
  30
 0.0
  11
-255.00000000000003
+7.924333360861966
  21
-299.98039000000006
+439.65429608258603
  31
 0.0
   0
@@ -4153,15 +4271,15 @@ LINE
   8
 0
  10
-265.00000000000006
+0.0
  20
-238.98039000000003
+415.88129600000013
  30
 0.0
  11
-255.00000000000003
+0.0
  21
-238.98039000000003
+439.65429608258603
  31
 0.0
   0
@@ -4171,15 +4289,15 @@ LINE
   8
 0
  10
-281.00000000000006
+7.924333360861966
  20
-238.98039000000003
+415.88129600000013
  30
 0.0
  11
-288.00000000000006
+0.0
  21
-238.98039000000003
+415.88129600000013
  31
 0.0
   0
@@ -4189,15 +4307,15 @@ LINE
   8
 0
  10
-281.00000000000006
+19.063748511955573
  20
-214.98039000000003
+96.95959135293252
  30
 0.0
  11
-281.00000000000006
+17.006070985150405
  21
-238.98039000000003
+99.93700985747354
  31
 0.0
   0
@@ -4207,15 +4325,15 @@ LINE
   8
 0
  10
-288.00000000000006
+17.006070985150405
  20
-214.98039000000003
+99.93700985747354
  30
 0.0
  11
-281.00000000000006
+16.594741483868248
  21
-214.98039000000003
+99.6527423050252
  31
 0.0
   0
@@ -4225,15 +4343,15 @@ LINE
   8
 0
  10
-337.0909090909092
+16.594741483868248
  20
-209.73039000000003
+99.6527423050252
  30
 0.0
  11
-340.59090909090907
+18.652419010673427
  21
-209.73039000000003
+96.67532380048418
  31
 0.0
   0
@@ -4243,15 +4361,15 @@ LINE
   8
 0
  10
-340.59090909090907
+18.652419010673427
  20
-209.73039000000003
+96.67532380048418
  30
 0.0
  11
-337.0909090909092
+19.063748511955573
  21
-213.23039000000003
+96.95959135293252
  31
 0.0
   0
@@ -4261,15 +4379,15 @@ LINE
   8
 0
  10
-337.0909090909092
+5.584886826581027
  20
-213.23039000000003
+111.64277190858407
  30
 0.0
  11
-326.18181818181824
+7.14451784943502
  21
-213.23039000000003
+111.64277190858407
  31
 0.0
   0
@@ -4279,15 +4397,15 @@ LINE
   8
 0
  10
-326.18181818181824
+7.14451784943502
  20
-213.23039000000003
+111.64277190858407
  30
 0.0
  11
-322.68181818181824
+7.14451784943502
  21
-209.73039000000003
+114.76203395429205
  31
 0.0
   0
@@ -4297,15 +4415,15 @@ LINE
   8
 0
  10
-322.68181818181824
+7.14451784943502
  20
-209.73039000000003
+114.76203395429205
  30
 0.0
  11
-326.18181818181824
+5.584886826581027
  21
-209.73039000000003
+114.76203395429205
  31
 0.0
   0
@@ -4315,15 +4433,15 @@ LINE
   8
 0
  10
-309.81818181818187
+39.954805266984934
  20
-209.73039000000003
+440.8118780419729
  30
 0.0
  11
-313.31818181818187
+48.156187571434046
  21
-209.73039000000003
+442.73716266280195
  31
 0.0
   0
@@ -4333,15 +4451,15 @@ LINE
   8
 0
  10
-313.31818181818187
+48.156187571434046
  20
-209.73039000000003
+442.73716266280195
  30
 0.0
  11
-309.81818181818187
+48.04191831484375
  21
-213.23039000000003
+443.223930099057
  31
 0.0
   0
@@ -4351,15 +4469,15 @@ LINE
   8
 0
  10
-309.81818181818187
+48.04191831484375
  20
-213.23039000000003
+443.223930099057
  30
 0.0
  11
-298.909090909091
+39.84053601039464
  21
-213.23039000000003
+441.29864547822785
  31
 0.0
   0
@@ -4369,15 +4487,15 @@ LINE
   8
 0
  10
-298.909090909091
+39.84053601039464
  20
-213.23039000000003
+441.29864547822785
  30
 0.0
  11
-295.409090909091
+39.954805266984934
  21
-209.73039000000003
+440.8118780419729
  31
 0.0
   0
@@ -4387,15 +4505,15 @@ LINE
   8
 0
  10
-295.409090909091
+117.69247915028988
  20
-209.73039000000003
+442.73716266280195
  30
 0.0
  11
-298.909090909091
+125.893861454739
  21
-209.73039000000003
+440.8118780419729
  31
 0.0
   0
@@ -4405,15 +4523,15 @@ LINE
   8
 0
  10
-354.25000000000006
+125.893861454739
  20
-230.98039000000003
+440.8118780419729
  30
 0.0
  11
-350.75
+126.00813071132929
  21
-230.98039000000003
+441.29864547822785
  31
 0.0
   0
@@ -4423,15 +4541,15 @@ LINE
   8
 0
  10
-350.75
+126.00813071132929
  20
-230.98039000000003
+441.29864547822785
  30
 0.0
  11
-350.75
+117.80674840688017
  21
-222.98039000000003
+443.223930099057
  31
 0.0
   0
@@ -4441,15 +4559,15 @@ LINE
   8
 0
  10
-350.75
+117.80674840688017
  20
-222.98039000000003
+443.223930099057
  30
 0.0
  11
-354.25000000000006
+117.69247915028988
  21
-222.98039000000003
+442.73716266280195
  31
 0.0
   0
@@ -4459,15 +4577,15 @@ LINE
   8
 0
  10
-296.5
+163.86758338150847
  20
-290.48039000000006
+431.72996272172406
  30
 0.0
  11
-296.5
+159.90541670107746
  21
-272.48039000000006
+431.72996272172406
  31
 0.0
   0
@@ -4477,15 +4595,15 @@ LINE
   8
 0
  10
-296.5
+159.90541670107746
  20
-272.48039000000006
+431.72996272172406
  30
 0.0
  11
-331.5
+159.90541670107746
  21
-272.48039000000006
+423.8056293608621
  31
 0.0
   0
@@ -4495,15 +4613,15 @@ LINE
   8
 0
  10
-331.5
+159.90541670107746
  20
-272.48039000000006
+423.8056293608621
  30
 0.0
  11
-331.5
+163.86758338150847
  21
-290.48039000000006
+423.8056293608621
  31
 0.0
   0
@@ -4513,15 +4631,15 @@ LINE
   8
 0
  10
-331.5
+148.84259573657366
  20
-290.48039000000006
+99.9370098574736
  30
 0.0
  11
-296.5
+146.78491820976848
  21
-290.48039000000006
+96.95959135293258
  31
 0.0
   0
@@ -4531,15 +4649,15 @@ LINE
   8
 0
  10
-349.50000000000006
+146.78491820976848
  20
-252.23039000000003
+96.95959135293258
  30
 0.0
  11
-349.50000000000006
+147.19624771105066
  21
-249.23039000000003
+96.67532380048424
  31
 0.0
   0
@@ -4549,15 +4667,15 @@ LINE
   8
 0
  10
-349.50000000000006
+147.19624771105066
  20
-249.23039000000003
+96.67532380048424
  30
 0.0
  11
-352.50000000000006
+149.25392523785584
  21
-249.23039000000003
+99.65274230502526
  31
 0.0
   0
@@ -4567,15 +4685,15 @@ LINE
   8
 0
  10
-352.50000000000006
+149.25392523785584
  20
-249.23039000000003
+99.65274230502526
  30
 0.0
  11
-352.50000000000006
+148.84259573657366
  21
-252.23039000000003
+99.9370098574736
  31
 0.0
   0
@@ -4585,15 +4703,15 @@ LINE
   8
 0
  10
-352.50000000000006
+160.26377989514305
  20
-252.23039000000003
+114.76203395429211
  30
 0.0
  11
-349.50000000000006
+158.70414887228904
  21
-252.23039000000003
+114.76203395429211
  31
 0.0
   0
@@ -4603,15 +4721,15 @@ LINE
   8
 0
  10
-370.50000000000006
+158.70414887228904
  20
-251.23039000000003
+114.76203395429211
  30
 0.0
  11
-370.50000000000006
+158.70414887228904
  21
-250.23039000000003
+111.64277190858412
  31
 0.0
   0
@@ -4621,15 +4739,15 @@ LINE
   8
 0
  10
-370.50000000000006
+158.70414887228904
  20
-250.23039000000003
+111.64277190858412
  30
 0.0
  11
-371.50000000000006
+160.26377989514305
  21
-250.23039000000003
+111.64277190858412
  31
 0.0
   0
@@ -4639,15 +4757,15 @@ LINE
   8
 0
  10
-371.50000000000006
+150.17433336086205
  20
-250.23039000000003
+140.3131141818183
  30
 0.0
  11
-371.50000000000006
+150.17433336086205
  21
-251.23039000000003
+128.7222050909092
  31
 0.0
   0
@@ -4657,15 +4775,15 @@ LINE
   8
 0
  10
-371.50000000000006
+150.17433336086205
  20
-251.23039000000003
+128.7222050909092
  30
 0.0
  11
-370.50000000000006
+150.67433336086205
  21
-251.23039000000003
+128.7222050909092
  31
 0.0
   0
@@ -4675,15 +4793,15 @@ LINE
   8
 0
  10
-350.5
+150.67433336086205
  20
-253.73039000000003
+128.7222050909092
  30
 0.0
  11
-350.5
+150.67433336086205
  21
-252.73039000000003
+140.3131141818183
  31
 0.0
   0
@@ -4693,15 +4811,15 @@ LINE
   8
 0
  10
-350.5
+150.67433336086205
  20
-252.73039000000003
+140.3131141818183
  30
 0.0
  11
-351.50000000000006
+150.17433336086205
  21
-252.73039000000003
+140.3131141818183
  31
 0.0
   0
@@ -4711,15 +4829,15 @@ LINE
   8
 0
  10
-351.50000000000006
+150.17433336086205
  20
-252.73039000000003
+168.040386909091
  30
 0.0
  11
-351.50000000000006
+150.17433336086205
  21
-253.73039000000003
+156.44947781818192
  31
 0.0
   0
@@ -4729,15 +4847,15 @@ LINE
   8
 0
  10
-351.50000000000006
+150.17433336086205
  20
-253.73039000000003
+156.44947781818192
  30
 0.0
  11
-350.5
+150.67433336086205
  21
-253.73039000000003
+156.44947781818192
  31
 0.0
   0
@@ -4747,15 +4865,15 @@ LINE
   8
 0
  10
-370.50000000000006
+150.67433336086205
  20
-253.73039000000003
+156.44947781818192
  30
 0.0
  11
-370.50000000000006
+150.67433336086205
  21
-252.73039000000003
+168.040386909091
  31
 0.0
   0
@@ -4765,15 +4883,15 @@ LINE
   8
 0
  10
-370.50000000000006
+150.67433336086205
  20
-252.73039000000003
+168.040386909091
  30
 0.0
  11
-371.50000000000006
+150.17433336086205
  21
-252.73039000000003
+168.040386909091
  31
 0.0
   0
@@ -4783,15 +4901,15 @@ LINE
   8
 0
  10
-371.50000000000006
+180.84100002752874
  20
-252.73039000000003
+196.6312960000001
  30
 0.0
  11
-371.50000000000006
+169.0076666941954
  21
-253.73039000000003
+196.6312960000001
  31
 0.0
   0
@@ -4801,15 +4919,15 @@ LINE
   8
 0
  10
-371.50000000000006
+169.0076666941954
  20
-253.73039000000003
+196.6312960000001
  30
 0.0
  11
-370.50000000000006
+169.0076666941954
  21
-253.73039000000003
+196.13129600000008
  31
 0.0
   0
@@ -4819,15 +4937,15 @@ LINE
   8
 0
  10
-350.5
+169.0076666941954
  20
-256.23039000000006
+196.13129600000008
  30
 0.0
  11
-350.5
+180.84100002752874
  21
-255.23039000000003
+196.13129600000008
  31
 0.0
   0
@@ -4837,15 +4955,15 @@ LINE
   8
 0
  10
-350.5
+180.84100002752874
  20
-255.23039000000003
+196.13129600000008
  30
 0.0
  11
-351.50000000000006
+180.84100002752874
  21
-255.23039000000003
+196.6312960000001
  31
 0.0
   0
@@ -4855,15 +4973,15 @@ LINE
   8
 0
  10
-351.50000000000006
+268.924333360862
  20
-255.23039000000003
+205.13129600000016
  30
 0.0
  11
-351.50000000000006
+268.924333360862
  21
-256.23039000000006
+196.63129600000016
  31
 0.0
   0
@@ -4873,15 +4991,15 @@ LINE
   8
 0
  10
-351.50000000000006
+268.924333360862
  20
-256.23039000000006
+196.63129600000016
  30
 0.0
  11
-350.5
+269.4243333608621
  21
-256.23039000000006
+196.63129600000016
  31
 0.0
   0
@@ -4891,15 +5009,15 @@ LINE
   8
 0
  10
-370.50000000000006
+269.4243333608621
  20
-256.23039000000006
+196.63129600000016
  30
 0.0
  11
-370.50000000000006
+269.4243333608621
  21
-255.23039000000003
+205.13129600000016
  31
 0.0
   0
@@ -4909,15 +5027,15 @@ LINE
   8
 0
  10
-370.50000000000006
+269.4243333608621
  20
-255.23039000000003
+205.13129600000016
  30
 0.0
  11
-371.50000000000006
+268.924333360862
  21
-255.23039000000003
+205.13129600000016
  31
 0.0
   0
@@ -4927,15 +5045,15 @@ LINE
   8
 0
  10
-371.50000000000006
+168.92433336086205
  20
-255.23039000000003
+231.8812960000001
  30
 0.0
  11
-371.50000000000006
+168.92433336086205
  21
-256.23039000000006
+227.88129600000008
  31
 0.0
   0
@@ -4945,15 +5063,15 @@ LINE
   8
 0
  10
-371.50000000000006
+168.92433336086205
  20
-256.23039000000006
+227.88129600000008
  30
 0.0
  11
-370.50000000000006
+180.92433336086205
  21
-256.23039000000006
+227.88129600000008
  31
 0.0
   0
@@ -4963,15 +5081,15 @@ LINE
   8
 0
  10
-350.5
+180.92433336086205
  20
-258.73039000000006
+227.88129600000008
  30
 0.0
  11
-350.5
+180.92433336086205
  21
-257.73039
+231.8812960000001
  31
 0.0
   0
@@ -4981,15 +5099,15 @@ LINE
   8
 0
  10
-350.5
+180.92433336086205
  20
-257.73039
+231.8812960000001
  30
 0.0
  11
-351.50000000000006
+168.92433336086205
  21
-257.73039
+231.8812960000001
  31
 0.0
   0
@@ -4999,15 +5117,15 @@ LINE
   8
 0
  10
-351.50000000000006
+170.42433336086202
  20
-257.73039
+219.8812960000001
  30
 0.0
  11
-351.50000000000006
+170.42433336086202
  21
-258.73039000000006
+215.8812960000001
  31
 0.0
   0
@@ -5017,15 +5135,15 @@ LINE
   8
 0
  10
-351.50000000000006
+170.42433336086202
  20
-258.73039000000006
+215.8812960000001
  30
 0.0
  11
-350.5
+179.42433336086202
  21
-258.73039000000006
+215.8812960000001
  31
 0.0
   0
@@ -5035,15 +5153,15 @@ LINE
   8
 0
  10
-370.50000000000006
+179.42433336086202
  20
-258.73039000000006
+215.8812960000001
  30
 0.0
  11
-370.50000000000006
+179.42433336086202
  21
-257.73039
+219.8812960000001
  31
 0.0
   0
@@ -5053,15 +5171,15 @@ LINE
   8
 0
  10
-370.50000000000006
+179.42433336086202
  20
-257.73039
+219.8812960000001
  30
 0.0
  11
-371.50000000000006
+170.42433336086202
  21
-257.73039
+219.8812960000001
  31
 0.0
   0
@@ -5071,15 +5189,15 @@ LINE
   8
 0
  10
-371.50000000000006
+168.92433336086205
  20
-257.73039
+256.38129600000013
  30
 0.0
  11
-371.50000000000006
+168.92433336086205
  21
-258.73039000000006
+233.3812960000001
  31
 0.0
   0
@@ -5089,15 +5207,15 @@ LINE
   8
 0
  10
-371.50000000000006
+168.92433336086205
  20
-258.73039000000006
+233.3812960000001
  30
 0.0
  11
-370.50000000000006
+180.92433336086205
  21
-258.73039000000006
+233.3812960000001
  31
 0.0
   0
@@ -5107,15 +5225,15 @@ LINE
   8
 0
  10
-350.5
+180.92433336086205
  20
-261.23039000000006
+233.3812960000001
  30
 0.0
  11
-350.5
+180.92433336086205
  21
-260.23039000000006
+256.38129600000013
  31
 0.0
   0
@@ -5125,15 +5243,15 @@ LINE
   8
 0
  10
-350.5
+180.92433336086205
  20
-260.23039000000006
+256.38129600000013
  30
 0.0
  11
-351.50000000000006
+168.92433336086205
  21
-260.23039000000006
+256.38129600000013
  31
 0.0
   0
@@ -5143,15 +5261,15 @@ LINE
   8
 0
  10
-351.50000000000006
+168.92433336086205
  20
-260.23039000000006
+261.88129600000013
  30
 0.0
  11
-351.50000000000006
+168.92433336086205
  21
-261.23039000000006
+257.8812960000001
  31
 0.0
   0
@@ -5161,15 +5279,15 @@ LINE
   8
 0
  10
-351.50000000000006
+168.92433336086205
  20
-261.23039000000006
+257.8812960000001
  30
 0.0
  11
-350.5
+180.92433336086205
  21
-261.23039000000006
+257.8812960000001
  31
 0.0
   0
@@ -5179,15 +5297,15 @@ LINE
   8
 0
  10
-370.50000000000006
+180.92433336086205
  20
-261.23039000000006
+257.8812960000001
  30
 0.0
  11
-370.50000000000006
+180.92433336086205
  21
-260.23039000000006
+261.88129600000013
  31
 0.0
   0
@@ -5197,15 +5315,15 @@ LINE
   8
 0
  10
-370.50000000000006
+180.92433336086205
  20
-260.23039000000006
+261.88129600000013
  30
 0.0
  11
-371.50000000000006
+168.92433336086205
  21
-260.23039000000006
+261.88129600000013
  31
 0.0
   0
@@ -5215,15 +5333,15 @@ LINE
   8
 0
  10
-371.50000000000006
+169.25766669419536
  20
-260.23039000000006
+284.3812960000001
  30
 0.0
  11
-371.50000000000006
+169.25766669419536
  21
-261.23039000000006
+279.3812960000001
  31
 0.0
   0
@@ -5233,15 +5351,15 @@ LINE
   8
 0
  10
-371.50000000000006
+169.25766669419536
  20
-261.23039000000006
+279.3812960000001
  30
 0.0
  11
-370.50000000000006
+180.59100002752868
  21
-261.23039000000006
+279.3812960000001
  31
 0.0
   0
@@ -5251,15 +5369,15 @@ LINE
   8
 0
  10
-350.5
+180.59100002752868
  20
-263.73039000000006
+279.3812960000001
  30
 0.0
  11
-350.5
+180.59100002752868
  21
-262.73039000000006
+284.3812960000001
  31
 0.0
   0
@@ -5269,15 +5387,15 @@ LINE
   8
 0
  10
-350.5
+224.07861139572347
  20
-262.73039000000006
+345.3812960000002
  30
 0.0
  11
-351.50000000000006
+224.07861139572347
  21
-262.73039000000006
+342.3812960000002
  31
 0.0
   0
@@ -5287,15 +5405,15 @@ LINE
   8
 0
  10
-351.50000000000006
+224.07861139572347
  20
-262.73039000000006
+342.3812960000002
  30
 0.0
  11
-351.50000000000006
+242.07861139572344
  21
-263.73039000000006
+342.3812960000002
  31
 0.0
   0
@@ -5305,15 +5423,15 @@ LINE
   8
 0
  10
-351.50000000000006
+242.07861139572344
  20
-263.73039000000006
+342.3812960000002
  30
 0.0
  11
-350.5
+242.07861139572344
  21
-263.73039000000006
+345.3812960000002
  31
 0.0
   0
@@ -5323,15 +5441,15 @@ LINE
   8
 0
  10
-370.50000000000006
+242.07861139572344
  20
-263.73039000000006
+345.3812960000002
  30
 0.0
  11
-370.50000000000006
+224.07861139572347
  21
-262.73039000000006
+345.3812960000002
  31
 0.0
   0
@@ -5341,15 +5459,15 @@ LINE
   8
 0
  10
-370.50000000000006
+237.82861139572347
  20
-262.73039000000006
+293.63129600000013
  30
 0.0
  11
-371.50000000000006
+228.32861139572347
  21
-262.73039000000006
+293.63129600000013
  31
 0.0
   0
@@ -5359,15 +5477,15 @@ LINE
   8
 0
  10
-371.50000000000006
+228.32861139572347
  20
-262.73039000000006
+293.63129600000013
  30
 0.0
  11
-371.50000000000006
+228.32861139572347
  21
-263.73039000000006
+293.13129600000013
  31
 0.0
   0
@@ -5377,15 +5495,15 @@ LINE
   8
 0
  10
-371.50000000000006
+228.32861139572347
  20
-263.73039000000006
+293.13129600000013
  30
 0.0
  11
-370.50000000000006
+237.82861139572347
  21
-263.73039000000006
+293.13129600000013
  31
 0.0
   0
@@ -5395,15 +5513,15 @@ LINE
   8
 0
  10
-350.5
+237.82861139572347
  20
-266.23039
+293.13129600000013
  30
 0.0
  11
-350.5
+237.82861139572347
  21
-265.23039000000006
+293.63129600000013
  31
 0.0
   0
@@ -5413,15 +5531,15 @@ LINE
   8
 0
  10
-350.5
+300.4828894305849
  20
-265.23039000000006
+326.13129600000013
  30
 0.0
  11
-351.50000000000006
+300.4828894305849
  21
-265.23039000000006
+305.6312960000002
  31
 0.0
   0
@@ -5431,15 +5549,15 @@ LINE
   8
 0
  10
-351.50000000000006
+300.4828894305849
  20
-265.23039000000006
+305.6312960000002
  30
 0.0
  11
-351.50000000000006
+300.9828894305849
  21
-266.23039
+305.6312960000002
  31
 0.0
   0
@@ -5449,15 +5567,15 @@ LINE
   8
 0
  10
-351.50000000000006
+300.9828894305849
  20
-266.23039
+305.6312960000002
  30
 0.0
  11
-350.5
+300.9828894305849
  21
-266.23039
+326.13129600000013
  31
 0.0
   0
@@ -5467,15 +5585,15 @@ LINE
   8
 0
  10
-370.50000000000006
+300.9828894305849
  20
-266.23039
+326.13129600000013
  30
 0.0
  11
-370.50000000000006
+300.4828894305849
  21
-265.23039000000006
+326.13129600000013
  31
 0.0
   0
@@ -5485,15 +5603,15 @@ LINE
   8
 0
  10
-370.50000000000006
+224.07861139572339
  20
-265.23039000000006
+348.8812960000002
  30
 0.0
  11
-371.50000000000006
+224.07861139572339
  21
-265.23039000000006
+345.8812960000002
  31
 0.0
   0
@@ -5503,15 +5621,15 @@ LINE
   8
 0
  10
-371.50000000000006
+224.07861139572339
  20
-265.23039000000006
+345.8812960000002
  30
 0.0
  11
-371.50000000000006
+242.0786113957234
  21
-266.23039
+345.8812960000002
  31
 0.0
   0
@@ -5521,15 +5639,15 @@ LINE
   8
 0
  10
-371.50000000000006
+242.0786113957234
  20
-266.23039
+345.8812960000002
  30
 0.0
  11
-370.50000000000006
+242.0786113957234
  21
-266.23039
+348.8812960000002
  31
 0.0
   0
@@ -5539,15 +5657,15 @@ LINE
   8
 0
  10
-350.5
+242.0786113957234
  20
-268.73039
+348.8812960000002
  30
 0.0
  11
-350.5
+224.07861139572339
  21
-267.73039000000006
+348.8812960000002
  31
 0.0
   0
@@ -5557,15 +5675,15 @@ LINE
   8
 0
  10
-350.5
+228.5786113957234
  20
-267.73039000000006
+447.3812960000002
  30
 0.0
  11
-351.50000000000006
+228.5786113957234
  21
-267.73039000000006
+442.3812960000002
  31
 0.0
   0
@@ -5575,15 +5693,15 @@ LINE
   8
 0
  10
-351.50000000000006
+228.5786113957234
  20
-267.73039000000006
+442.3812960000002
  30
 0.0
  11
-351.50000000000006
+237.5786113957234
  21
-268.73039
+442.3812960000002
  31
 0.0
   0
@@ -5593,15 +5711,15 @@ LINE
   8
 0
  10
-351.50000000000006
+237.5786113957234
  20
-268.73039
+442.3812960000002
  30
 0.0
  11
-350.5
+237.5786113957234
  21
-268.73039
+447.3812960000002
  31
 0.0
   0
@@ -5611,15 +5729,15 @@ LINE
   8
 0
  10
-370.50000000000006
+178.17433336086202
  20
-268.73039
+239.6312960000001
  30
 0.0
  11
-370.50000000000006
+167.674333360862
  21
-267.73039000000006
+239.6312960000001
  31
 0.0
   0
@@ -5629,15 +5747,15 @@ LINE
   8
 0
  10
-370.50000000000006
+167.674333360862
  20
-267.73039000000006
+239.6312960000001
  30
 0.0
  11
-371.50000000000006
+167.674333360862
  21
-267.73039000000006
+239.13129600000013
  31
 0.0
   0
@@ -5647,15 +5765,15 @@ LINE
   8
 0
  10
-371.50000000000006
+167.674333360862
  20
-267.73039000000006
+239.13129600000013
  30
 0.0
  11
-371.50000000000006
+178.17433336086202
  21
-268.73039
+239.13129600000013
  31
 0.0
   0
@@ -5665,15 +5783,15 @@ LINE
   8
 0
  10
-371.50000000000006
+178.17433336086202
  20
-268.73039
+239.13129600000013
  30
 0.0
  11
-370.50000000000006
+178.17433336086202
  21
-268.73039
+239.6312960000001
  31
 0.0
   0
@@ -5683,15 +5801,15 @@ LINE
   8
 0
  10
-350.5
+167.92433336086197
  20
-271.23039
+309.38129600000013
  30
 0.0
  11
-350.5
+167.92433336086197
  21
-270.23039000000006
+304.38129600000013
  31
 0.0
   0
@@ -5701,15 +5819,15 @@ LINE
   8
 0
  10
-350.5
+167.92433336086197
  20
-270.23039000000006
+304.38129600000013
  30
 0.0
  11
-351.50000000000006
+177.924333360862
  21
-270.23039000000006
+304.38129600000013
  31
 0.0
   0
@@ -5719,15 +5837,15 @@ LINE
   8
 0
  10
-351.50000000000006
+177.924333360862
  20
-270.23039000000006
+304.38129600000013
  30
 0.0
  11
-351.50000000000006
+177.924333360862
  21
-271.23039
+309.38129600000013
  31
 0.0
   0
@@ -5737,15 +5855,15 @@ LINE
   8
 0
  10
-351.50000000000006
+195.674333360862
  20
-271.23039
+311.6312960000001
  30
 0.0
  11
-350.5
+195.674333360862
  21
-271.23039
+322.13129600000013
  31
 0.0
   0
@@ -5755,15 +5873,15 @@ LINE
   8
 0
  10
-370.50000000000006
+195.674333360862
  20
-271.23039
+322.13129600000013
  30
 0.0
  11
-370.50000000000006
+195.17433336086197
  21
-270.23039000000006
+322.13129600000013
  31
 0.0
   0
@@ -5773,15 +5891,15 @@ LINE
   8
 0
  10
-370.50000000000006
+195.17433336086197
  20
-270.23039000000006
+322.13129600000013
  30
 0.0
  11
-371.50000000000006
+195.17433336086197
  21
-270.23039000000006
+311.6312960000001
  31
 0.0
   0
@@ -5791,15 +5909,15 @@ LINE
   8
 0
  10
-371.50000000000006
+195.17433336086197
  20
-270.23039000000006
+311.6312960000001
  30
 0.0
  11
-371.50000000000006
+195.674333360862
  21
-271.23039
+311.6312960000001
  31
 0.0
   0
@@ -5809,15 +5927,15 @@ LINE
   8
 0
  10
-371.50000000000006
+270.174333360862
  20
-271.23039
+322.1312960000002
  30
 0.0
  11
-370.50000000000006
+270.174333360862
  21
-271.23039
+311.63129600000013
  31
 0.0
   0
@@ -5827,15 +5945,15 @@ LINE
   8
 0
  10
-350.5
+270.174333360862
  20
-273.73039000000006
+311.63129600000013
  30
 0.0
  11
-350.5
+270.67433336086197
  21
-272.73039000000006
+311.63129600000013
  31
 0.0
   0
@@ -5845,15 +5963,15 @@ LINE
   8
 0
  10
-350.5
+270.67433336086197
  20
-272.73039000000006
+311.63129600000013
  30
 0.0
  11
-351.50000000000006
+270.67433336086197
  21
-272.73039000000006
+322.1312960000002
  31
 0.0
   0
@@ -5863,15 +5981,15 @@ LINE
   8
 0
  10
-351.50000000000006
+270.67433336086197
  20
-272.73039000000006
+322.1312960000002
  30
 0.0
  11
-351.50000000000006
+270.174333360862
  21
-273.73039000000006
+322.1312960000002
  31
 0.0
   0
@@ -5881,15 +5999,15 @@ LINE
   8
 0
  10
-351.50000000000006
+270.1743333608621
  20
-273.73039000000006
+222.13129600000016
  30
 0.0
  11
-350.5
+270.1743333608621
  21
-273.73039000000006
+211.63129600000013
  31
 0.0
   0
@@ -5899,15 +6017,15 @@ LINE
   8
 0
  10
-370.50000000000006
+270.1743333608621
  20
-273.73039000000006
+211.63129600000013
  30
 0.0
  11
-370.50000000000006
+270.674333360862
  21
-272.73039000000006
+211.63129600000013
  31
 0.0
   0
@@ -5917,15 +6035,15 @@ LINE
   8
 0
  10
-370.50000000000006
+270.674333360862
  20
-272.73039000000006
+211.63129600000013
  30
 0.0
  11
-371.50000000000006
+270.674333360862
  21
-272.73039000000006
+222.13129600000016
  31
 0.0
   0
@@ -5935,15 +6053,15 @@ LINE
   8
 0
  10
-371.50000000000006
+270.674333360862
  20
-272.73039000000006
+222.13129600000016
  30
 0.0
  11
-371.50000000000006
+270.1743333608621
  21
-273.73039000000006
+222.13129600000016
  31
 0.0
   0
@@ -5953,15 +6071,15 @@ LINE
   8
 0
  10
-371.50000000000006
+180.42433336086205
  20
-273.73039000000006
+211.88129600000008
  30
 0.0
  11
-370.50000000000006
+185.42433336086205
  21
-273.73039000000006
+211.88129600000008
  31
 0.0
   0
@@ -5971,15 +6089,15 @@ LINE
   8
 0
  10
-350.5
+185.42433336086205
  20
-276.23039000000006
+211.88129600000008
  30
 0.0
  11
-350.5
+185.42433336086205
  21
-275.23039
+221.8812960000001
  31
 0.0
   0
@@ -5989,15 +6107,15 @@ LINE
   8
 0
  10
-350.5
+185.42433336086205
  20
-275.23039
+221.8812960000001
  30
 0.0
  11
-351.50000000000006
+180.42433336086205
  21
-275.23039
+221.8812960000001
  31
 0.0
   0
@@ -6007,15 +6125,15 @@ LINE
   8
 0
  10
-351.50000000000006
+287.924333360862
  20
-275.23039
+309.3812960000002
  30
 0.0
  11
-351.50000000000006
+287.924333360862
  21
-276.23039000000006
+304.3812960000002
  31
 0.0
   0
@@ -6025,15 +6143,15 @@ LINE
   8
 0
  10
-351.50000000000006
+287.924333360862
  20
-276.23039000000006
+304.3812960000002
  30
 0.0
  11
-350.5
+297.924333360862
  21
-276.23039000000006
+304.3812960000002
  31
 0.0
   0
@@ -6043,15 +6161,15 @@ LINE
   8
 0
  10
-370.50000000000006
+297.924333360862
  20
-276.23039000000006
+304.3812960000002
  30
 0.0
  11
-370.50000000000006
+297.924333360862
  21
-275.23039
+309.3812960000002
  31
 0.0
   0
@@ -6061,15 +6179,15 @@ LINE
   8
 0
  10
-370.50000000000006
+297.9243333608621
  20
-275.23039
+224.38129600000016
  30
 0.0
  11
-371.50000000000006
+297.9243333608621
  21
-275.23039
+229.38129600000016
  31
 0.0
   0
@@ -6079,15 +6197,15 @@ LINE
   8
 0
  10
-371.50000000000006
+297.9243333608621
  20
-275.23039
+229.38129600000016
  30
 0.0
  11
-371.50000000000006
+287.9243333608621
  21
-276.23039000000006
+229.38129600000016
  31
 0.0
   0
@@ -6097,15 +6215,15 @@ LINE
   8
 0
  10
-371.50000000000006
+287.9243333608621
  20
-276.23039000000006
+229.38129600000016
  30
 0.0
  11
-370.50000000000006
+287.9243333608621
  21
-276.23039000000006
+224.38129600000016
  31
 0.0
   0
@@ -6115,15 +6233,15 @@ LINE
   8
 0
  10
-350.5
+300.42433336086197
  20
-278.73039
+375.88129600000013
  30
 0.0
  11
-350.5
+300.42433336086197
  21
-277.73039000000006
+370.88129600000013
  31
 0.0
   0
@@ -6133,15 +6251,15 @@ LINE
   8
 0
  10
-350.5
+300.42433336086197
  20
-277.73039000000006
+370.88129600000013
  30
 0.0
  11
-351.50000000000006
+305.42433336086197
  21
-277.73039000000006
+375.88129600000013
  31
 0.0
   0
@@ -6151,15 +6269,15 @@ LINE
   8
 0
  10
-351.50000000000006
+305.42433336086197
  20
-277.73039000000006
+375.88129600000013
  30
 0.0
  11
-351.50000000000006
+305.42433336086197
  21
-278.73039
+395.8812960000002
  31
 0.0
   0
@@ -6169,15 +6287,15 @@ LINE
   8
 0
  10
-351.50000000000006
+305.42433336086197
  20
-278.73039
+395.8812960000002
  30
 0.0
  11
-350.5
+300.42433336086197
  21
-278.73039
+400.8812960000002
  31
 0.0
   0
@@ -6187,15 +6305,15 @@ LINE
   8
 0
  10
-370.50000000000006
+300.42433336086197
  20
-278.73039
+400.8812960000002
  30
 0.0
  11
-370.50000000000006
+300.42433336086197
  21
-277.73039000000006
+395.8812960000002
  31
 0.0
   0
@@ -6205,15 +6323,15 @@ LINE
   8
 0
  10
-370.50000000000006
+296.8410000275287
  20
-277.73039000000006
+266.63129600000013
  30
 0.0
  11
-371.50000000000006
+285.0076666941954
  21
-277.73039000000006
+266.63129600000013
  31
 0.0
   0
@@ -6223,15 +6341,15 @@ LINE
   8
 0
  10
-371.50000000000006
+285.0076666941954
  20
-277.73039000000006
+266.63129600000013
  30
 0.0
  11
-371.50000000000006
+285.0076666941954
  21
-278.73039
+266.1312960000002
  31
 0.0
   0
@@ -6241,15 +6359,15 @@ LINE
   8
 0
  10
-371.50000000000006
+285.0076666941954
  20
-278.73039
+266.1312960000002
  30
 0.0
  11
-370.50000000000006
+296.8410000275287
  21
-278.73039
+266.1312960000002
  31
 0.0
   0
@@ -6259,15 +6377,15 @@ LINE
   8
 0
  10
-350.5
+296.8410000275287
  20
-281.23039000000006
+266.1312960000002
  30
 0.0
  11
-350.5
+296.8410000275287
  21
-280.23039
+266.63129600000013
  31
 0.0
   0
@@ -6277,15 +6395,15 @@ LINE
   8
 0
  10
-350.5
+189.17433336086205
  20
-280.23039
+266.8812960000001
  30
 0.0
  11
-351.50000000000006
+189.17433336086205
  21
-280.23039
+264.3812960000001
  31
 0.0
   0
@@ -6295,15 +6413,15 @@ LINE
   8
 0
  10
-351.50000000000006
+189.17433336086205
  20
-280.23039
+264.3812960000001
  30
 0.0
  11
-351.50000000000006
+191.67433336086205
  21
-281.23039000000006
+266.8812960000001
  31
 0.0
   0
@@ -6313,15 +6431,15 @@ LINE
   8
 0
  10
-351.50000000000006
+191.67433336086205
  20
-281.23039000000006
+266.8812960000001
  30
 0.0
  11
-350.5
+191.67433336086205
  21
-281.23039000000006
+274.8812960000001
  31
 0.0
   0
@@ -6331,15 +6449,15 @@ LINE
   8
 0
  10
-370.50000000000006
+191.67433336086205
  20
-281.23039000000006
+274.8812960000001
  30
 0.0
  11
-370.50000000000006
+189.17433336086205
  21
-280.23039
+277.38129600000013
  31
 0.0
   0
@@ -6349,15 +6467,15 @@ LINE
   8
 0
  10
-370.50000000000006
+189.17433336086205
  20
-280.23039
+277.38129600000013
  30
 0.0
  11
-371.50000000000006
+189.17433336086205
  21
-280.23039
+274.8812960000001
  31
 0.0
   0
@@ -6367,15 +6485,15 @@ LINE
   8
 0
  10
-371.50000000000006
+284.9243333608621
  20
-280.23039
+301.88129600000013
  30
 0.0
  11
-371.50000000000006
+284.9243333608621
  21
-281.23039000000006
+297.88129600000013
  31
 0.0
   0
@@ -6385,15 +6503,15 @@ LINE
   8
 0
  10
-371.50000000000006
+284.9243333608621
  20
-281.23039000000006
+297.88129600000013
  30
 0.0
  11
-370.50000000000006
+296.9243333608621
  21
-281.23039000000006
+297.88129600000013
  31
 0.0
   0
@@ -6403,15 +6521,15 @@ LINE
   8
 0
  10
-350.5
+296.9243333608621
  20
-283.73039
+297.88129600000013
  30
 0.0
  11
-350.5
+296.9243333608621
  21
-282.73039000000006
+301.88129600000013
  31
 0.0
   0
@@ -6421,15 +6539,15 @@ LINE
   8
 0
  10
-350.5
+296.9243333608621
  20
-282.73039000000006
+301.88129600000013
  30
 0.0
  11
-351.50000000000006
+284.9243333608621
  21
-282.73039000000006
+301.88129600000013
  31
 0.0
   0
@@ -6439,15 +6557,15 @@ LINE
   8
 0
  10
-351.50000000000006
+286.424333360862
  20
-282.73039000000006
+289.88129600000013
  30
 0.0
  11
-351.50000000000006
+286.424333360862
  21
-283.73039
+285.8812960000002
  31
 0.0
   0
@@ -6457,15 +6575,15 @@ LINE
   8
 0
  10
-351.50000000000006
+286.424333360862
  20
-283.73039
+285.8812960000002
  30
 0.0
  11
-350.5
+295.424333360862
  21
-283.73039
+285.8812960000002
  31
 0.0
   0
@@ -6475,15 +6593,15 @@ LINE
   8
 0
  10
-370.50000000000006
+295.424333360862
  20
-283.73039
+285.8812960000002
  30
 0.0
  11
-370.50000000000006
+295.424333360862
  21
-282.73039000000006
+289.88129600000013
  31
 0.0
   0
@@ -6493,15 +6611,15 @@ LINE
   8
 0
  10
-370.50000000000006
+295.424333360862
  20
-282.73039000000006
+289.88129600000013
  30
 0.0
  11
-371.50000000000006
+286.424333360862
  21
-282.73039000000006
+289.88129600000013
  31
 0.0
   0
@@ -6511,15 +6629,15 @@ LINE
   8
 0
  10
-371.50000000000006
+284.9243333608621
  20
-282.73039000000006
+326.3812960000002
  30
 0.0
  11
-371.50000000000006
+284.9243333608621
  21
-283.73039
+303.38129600000013
  31
 0.0
   0
@@ -6529,15 +6647,15 @@ LINE
   8
 0
  10
-371.50000000000006
+284.9243333608621
  20
-283.73039
+303.38129600000013
  30
 0.0
  11
-370.50000000000006
+296.9243333608621
  21
-283.73039
+303.38129600000013
  31
 0.0
   0
@@ -6547,15 +6665,15 @@ LINE
   8
 0
  10
-350.5
+296.9243333608621
  20
-286.23039000000006
+303.38129600000013
  30
 0.0
  11
-350.5
+296.9243333608621
  21
-285.23039000000006
+326.3812960000002
  31
 0.0
   0
@@ -6565,15 +6683,15 @@ LINE
   8
 0
  10
-350.5
+296.9243333608621
  20
-285.23039000000006
+326.3812960000002
  30
 0.0
  11
-351.50000000000006
+284.9243333608621
  21
-285.23039000000006
+326.3812960000002
  31
 0.0
   0
@@ -6583,15 +6701,15 @@ LINE
   8
 0
  10
-351.50000000000006
+284.9243333608621
  20
-285.23039000000006
+331.8812960000002
  30
 0.0
  11
-351.50000000000006
+284.9243333608621
  21
-286.23039000000006
+327.8812960000002
  31
 0.0
   0
@@ -6601,15 +6719,15 @@ LINE
   8
 0
  10
-351.50000000000006
+284.9243333608621
  20
-286.23039000000006
+327.8812960000002
  30
 0.0
  11
-350.5
+296.9243333608621
  21
-286.23039000000006
+327.8812960000002
  31
 0.0
   0
@@ -6619,15 +6737,15 @@ LINE
   8
 0
  10
-370.50000000000006
+296.9243333608621
  20
-286.23039000000006
+327.8812960000002
  30
 0.0
  11
-370.50000000000006
+296.9243333608621
  21
-285.23039000000006
+331.8812960000002
  31
 0.0
   0
@@ -6637,15 +6755,15 @@ LINE
   8
 0
  10
-370.50000000000006
+296.9243333608621
  20
-285.23039000000006
+331.8812960000002
  30
 0.0
  11
-371.50000000000006
+284.9243333608621
  21
-285.23039000000006
+331.8812960000002
  31
 0.0
   0
@@ -6655,15 +6773,15 @@ LINE
   8
 0
  10
-371.50000000000006
+285.2576666941954
  20
-285.23039000000006
+354.3812960000002
  30
 0.0
  11
-371.50000000000006
+285.2576666941954
  21
-286.23039000000006
+349.3812960000002
  31
 0.0
   0
@@ -6673,15 +6791,15 @@ LINE
   8
 0
  10
-371.50000000000006
+285.2576666941954
  20
-286.23039000000006
+349.3812960000002
  30
 0.0
  11
-370.50000000000006
+296.5910000275287
  21
-286.23039000000006
+349.3812960000002
  31
 0.0
   0
@@ -6691,15 +6809,15 @@ LINE
   8
 0
  10
-350.5
+296.5910000275287
  20
-288.73039
+349.3812960000002
  30
 0.0
  11
-350.5
+296.5910000275287
  21
-287.73039000000006
+354.3812960000002
  31
 0.0
   0
@@ -6709,15 +6827,15 @@ LINE
   8
 0
  10
-350.5
+253.28571136167673
  20
-287.73039000000006
+230.88129600000016
  30
 0.0
  11
-351.50000000000006
+253.28571136167673
  21
-287.73039000000006
+219.88129600000016
  31
 0.0
   0
@@ -6727,15 +6845,15 @@ LINE
   8
 0
  10
-351.50000000000006
+253.28571136167673
  20
-287.73039000000006
+219.88129600000016
  30
 0.0
  11
-351.50000000000006
+266.2857113616767
  21
-288.73039
+219.88129600000016
  31
 0.0
   0
@@ -6745,15 +6863,15 @@ LINE
   8
 0
  10
-351.50000000000006
+266.2857113616767
  20
-288.73039
+219.88129600000016
  30
 0.0
  11
-350.5
+266.2857113616767
  21
-288.73039
+230.88129600000016
  31
 0.0
   0
@@ -6763,15 +6881,15 @@ LINE
   8
 0
  10
-369.50000000000006
+266.2857113616767
  20
-289.73039000000006
+230.88129600000016
  30
 0.0
  11
-369.50000000000006
+253.28571136167673
  21
-286.73039000000006
+230.88129600000016
  31
 0.0
   0
@@ -6781,15 +6899,15 @@ LINE
   8
 0
  10
-369.50000000000006
+254.78571136167673
  20
-286.73039000000006
+199.38129600000016
  30
 0.0
  11
-372.50000000000006
+254.78571136167673
  21
-286.73039000000006
+193.38129600000013
  31
 0.0
   0
@@ -6799,15 +6917,15 @@ LINE
   8
 0
  10
-372.50000000000006
+254.78571136167673
  20
-286.73039000000006
+193.38129600000013
  30
 0.0
  11
-372.50000000000006
+264.78571136167676
  21
-289.73039000000006
+193.38129600000013
  31
 0.0
   0
@@ -6817,15 +6935,15 @@ LINE
   8
 0
  10
-372.50000000000006
+264.78571136167676
  20
-289.73039000000006
+193.38129600000013
  30
 0.0
  11
-369.50000000000006
+264.78571136167676
  21
-289.73039000000006
+199.38129600000016
  31
 0.0
   0
@@ -6835,15 +6953,15 @@ LINE
   8
 0
  10
-365.25000000000006
+264.78571136167676
  20
-246.73039000000003
+199.38129600000016
  30
 0.0
  11
-356.75000000000006
+254.78571136167673
  21
-246.73039000000003
+199.38129600000016
  31
 0.0
   0
@@ -6853,15 +6971,15 @@ LINE
   8
 0
  10
-356.75000000000006
+204.14708936249147
  20
-246.73039000000003
+198.9722050909092
  30
 0.0
  11
-356.75000000000006
+209.14708936249147
  21
-246.23039000000003
+198.9722050909092
  31
 0.0
   0
@@ -6871,15 +6989,15 @@ LINE
   8
 0
  10
-356.75000000000006
+209.14708936249147
  20
-246.23039000000003
+198.9722050909092
  30
 0.0
  11
-365.25000000000006
+209.14708936249147
  21
-246.23039000000003
+210.0631141818183
  31
 0.0
   0
@@ -6889,15 +7007,15 @@ LINE
   8
 0
  10
-365.25000000000006
+209.14708936249147
  20
-246.23039000000003
+210.0631141818183
  30
 0.0
  11
-365.25000000000006
+204.14708936249147
  21
-246.73039000000003
+210.0631141818183
  31
 0.0
   0
@@ -6907,15 +7025,15 @@ LINE
   8
 0
  10
-356.75000000000006
+204.14708936249147
  20
-294.48039000000006
+226.69947781818195
  30
 0.0
  11
-365.25000000000006
+209.14708936249147
  21
-294.48039000000006
+226.69947781818195
  31
 0.0
   0
@@ -6925,15 +7043,15 @@ LINE
   8
 0
  10
-365.25000000000006
+209.14708936249147
  20
-294.48039000000006
+226.69947781818195
  30
 0.0
  11
-365.25000000000006
+209.14708936249147
  21
-294.98039000000006
+237.79038690909104
  31
 0.0
   0
@@ -6943,15 +7061,15 @@ LINE
   8
 0
  10
-365.25000000000006
+209.14708936249147
  20
-294.98039000000006
+237.79038690909104
  30
 0.0
  11
-356.75000000000006
+204.14708936249147
  21
-294.98039000000006
+237.79038690909104
  31
 0.0
   0
@@ -6961,15 +7079,15 @@ LINE
   8
 0
  10
-356.75000000000006
+263.78571136167676
  20
-294.98039000000006
+180.38129600000016
  30
 0.0
  11
-356.75000000000006
+263.78571136167676
  21
-294.48039000000006
+185.38129600000016
  31
 0.0
   0
@@ -6979,15 +7097,15 @@ LINE
   8
 0
  10
-388.00000000000006
+263.78571136167676
  20
-289.98039000000006
+185.38129600000016
  30
 0.0
  11
-388.00000000000006
+255.7857113616768
  21
-276.98039000000006
+185.38129600000016
  31
 0.0
   0
@@ -6997,15 +7115,15 @@ LINE
   8
 0
  10
-388.00000000000006
+255.7857113616768
  20
-276.98039000000006
+185.38129600000016
  30
 0.0
  11
-418.00000000000006
+255.7857113616768
  21
-276.98039000000006
+180.38129600000016
  31
 0.0
   0
@@ -7015,15 +7133,15 @@ LINE
   8
 0
  10
-418.00000000000006
+255.78571136167673
  20
-276.98039000000006
+256.3812960000002
  30
 0.0
  11
-418.00000000000006
+255.78571136167673
  21
-289.98039000000006
+251.38129600000013
  31
 0.0
   0
@@ -7033,15 +7151,15 @@ LINE
   8
 0
  10
-418.00000000000006
+255.78571136167673
  20
-289.98039000000006
+251.38129600000013
  30
 0.0
  11
-388.00000000000006
+263.7857113616767
  21
-289.98039000000006
+251.38129600000013
  31
 0.0
   0
@@ -7051,15 +7169,15 @@ LINE
   8
 0
  10
-395.06818181818187
+263.7857113616767
  20
-244.48039000000003
+251.38129600000013
  30
 0.0
  11
-383.6590909090909
+263.7857113616767
  21
-244.48039000000003
+256.3812960000002
  31
 0.0
   0
@@ -7069,15 +7187,15 @@ LINE
   8
 0
  10
-383.6590909090909
+1.9810833402154915
  20
-244.48039000000003
+423.8056293608621
  30
 0.0
  11
-383.6590909090909
+5.943250020646475
  21
-243.98039000000003
+423.8056293608621
  31
 0.0
   0
@@ -7087,15 +7205,15 @@ LINE
   8
 0
  10
-383.6590909090909
+5.943250020646475
  20
-243.98039000000003
+423.8056293608621
  30
 0.0
  11
-395.06818181818187
+5.943250020646475
  21
-243.98039000000003
+431.72996272172406
  31
 0.0
   0
@@ -7105,87 +7223,95 @@ LINE
   8
 0
  10
-395.06818181818187
+5.943250020646475
  20
-243.98039000000003
+431.72996272172406
  30
 0.0
  11
-395.06818181818187
+1.9810833402154915
  21
-244.48039000000003
+431.72996272172406
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
 0
  10
-422.3409090909092
+351.2328894305849
  20
-244.48039000000003
+254.88129600000005
  30
 0.0
  11
-410.93181818181824
+412.2328894305849
  21
-244.48039000000003
+254.88129600000005
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
 0
  10
-410.93181818181824
+412.2328894305849
  20
-244.48039000000003
+254.88129600000005
  30
 0.0
  11
-410.93181818181824
+412.2328894305849
  21
-243.98039000000003
+278.8812960000001
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
 0
  10
-410.93181818181824
+412.2328894305849
  20
-243.98039000000003
+278.8812960000001
  30
 0.0
  11
-422.3409090909092
+351.2328894305849
  21
-243.98039000000003
+278.8812960000001
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
 0
  10
-422.3409090909092
+351.2328894305849
  20
-243.98039000000003
+278.8812960000001
  30
 0.0
  11
-422.3409090909092
+351.2328894305849
  21
-244.48039000000003
+254.88129600000005
  31
 0.0
   0
@@ -7195,15 +7321,15 @@ LINE
   8
 0
  10
-425.25000000000006
+351.2328894305849
  20
-261.4122081818182
+247.88129600000005
  30
 0.0
  11
-425.25000000000006
+351.2328894305849
  21
-249.82129909090912
+254.88129600000005
  31
 0.0
   0
@@ -7213,15 +7339,15 @@ LINE
   8
 0
  10
-425.25000000000006
+411.2328894305849
  20
-249.82129909090912
+247.88129600000005
  30
 0.0
  11
-425.75000000000006
+351.2328894305849
  21
-249.82129909090912
+247.88129600000005
  31
 0.0
   0
@@ -7231,15 +7357,15 @@ LINE
   8
 0
  10
-425.75000000000006
+411.2328894305849
  20
-249.82129909090912
+254.88129600000005
  30
 0.0
  11
-425.75000000000006
+411.2328894305849
  21
-261.4122081818182
+247.88129600000005
  31
 0.0
   0
@@ -7249,15 +7375,15 @@ LINE
   8
 0
  10
-425.75000000000006
+419.2328894305849
  20
-261.4122081818182
+254.88129600000005
  30
 0.0
  11
-425.25000000000006
+412.2328894305849
  21
-261.4122081818182
+254.88129600000005
  31
 0.0
   0
@@ -7267,15 +7393,15 @@ LINE
   8
 0
  10
-425.25000000000006
+419.2328894305849
  20
-289.13948090909093
+278.8812960000001
  30
 0.0
  11
-425.25000000000006
+419.2328894305849
  21
-277.5485718181818
+254.88129600000005
  31
 0.0
   0
@@ -7285,33 +7411,35 @@ LINE
   8
 0
  10
-425.25000000000006
+412.2328894305849
  20
-277.5485718181818
+278.8812960000001
  30
 0.0
  11
-425.75000000000006
+419.2328894305849
  21
-277.5485718181818
+278.8812960000001
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
 0
  10
-425.75000000000006
+412.2328894305849
  20
-277.5485718181818
+278.8812960000001
  30
 0.0
  11
-425.75000000000006
+412.2328894305849
  21
-289.13948090909093
+339.881296
  31
 0.0
   0
@@ -7321,33 +7449,35 @@ LINE
   8
 0
  10
-425.75000000000006
+352.23288943058486
  20
-289.13948090909093
+339.881296
  30
 0.0
  11
-425.25000000000006
+412.2328894305849
  21
-289.13948090909093
+339.881296
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
 0
  10
-265.50000000000006
+352.23288943058486
  20
-252.23039000000003
+278.8812960000001
  30
 0.0
  11
-265.50000000000006
+352.23288943058486
  21
-249.23039000000003
+339.881296
  31
 0.0
   0
@@ -7357,33 +7487,35 @@ LINE
   8
 0
  10
-265.50000000000006
+436.2328894305849
  20
-249.23039000000003
+278.8812960000001
  30
 0.0
  11
-268.50000000000006
+412.2328894305849
  21
-249.23039000000003
+278.8812960000001
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
 0
  10
-268.50000000000006
+436.2328894305849
  20
-249.23039000000003
+278.8812960000001
  30
 0.0
  11
-268.50000000000006
+436.2328894305849
  21
-252.23039000000003
+339.881296
  31
 0.0
   0
@@ -7393,15 +7525,15 @@ LINE
   8
 0
  10
-268.50000000000006
+412.2328894305849
  20
-252.23039000000003
+339.881296
  30
 0.0
  11
-265.50000000000006
+436.2328894305849
  21
-252.23039000000003
+339.881296
  31
 0.0
   0
@@ -7411,15 +7543,15 @@ LINE
   8
 0
  10
-286.5
+496.2328894305849
  20
-251.23039000000003
+278.8812960000001
  30
 0.0
  11
-286.5
+436.2328894305849
  21
-250.23039000000003
+278.8812960000001
  31
 0.0
   0
@@ -7429,15 +7561,15 @@ LINE
   8
 0
  10
-286.5
+496.2328894305849
  20
-250.23039000000003
+339.881296
  30
 0.0
  11
-287.5
+496.2328894305849
  21
-250.23039000000003
+278.8812960000001
  31
 0.0
   0
@@ -7447,15 +7579,15 @@ LINE
   8
 0
  10
-287.5
+436.2328894305849
  20
-250.23039000000003
+339.881296
  30
 0.0
  11
-287.5
+496.2328894305849
  21
-251.23039000000003
+339.881296
  31
 0.0
   0
@@ -7465,15 +7597,15 @@ LINE
   8
 0
  10
-287.5
+352.23288943058486
  20
-251.23039000000003
+278.8812960000001
  30
 0.0
  11
-286.5
+328.2328894305849
  21
-251.23039000000003
+278.8812960000001
  31
 0.0
   0
@@ -7483,33 +7615,35 @@ LINE
   8
 0
  10
-266.5
+328.2328894305849
  20
-253.73039000000003
+339.881296
  30
 0.0
  11
-266.5
+352.23288943058486
  21
-252.73039000000003
+339.881296
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
 0
  10
-266.5
+328.2328894305849
  20
-252.73039000000003
+339.881296
  30
 0.0
  11
-267.50000000000006
+328.2328894305849
  21
-252.73039000000003
+278.8812960000001
  31
 0.0
   0
@@ -7519,15 +7653,15 @@ LINE
   8
 0
  10
-267.50000000000006
+318.2328894305849
  20
-252.73039000000003
+339.881296
  30
 0.0
  11
-267.50000000000006
+328.2328894305849
  21
-253.73039000000003
+339.881296
  31
 0.0
   0
@@ -7537,15 +7671,15 @@ LINE
   8
 0
  10
-267.50000000000006
+318.2328894305849
  20
-253.73039000000003
+278.8812960000001
  30
 0.0
  11
-266.5
+318.2328894305849
  21
-253.73039000000003
+339.881296
  31
 0.0
   0
@@ -7555,15 +7689,15 @@ LINE
   8
 0
  10
-286.5
+328.2328894305849
  20
-253.73039000000003
+278.8812960000001
  30
 0.0
  11
-286.5
+318.2328894305849
  21
-252.73039000000003
+278.8812960000001
  31
 0.0
   0
@@ -7573,15 +7707,15 @@ LINE
   8
 0
  10
-286.5
+344.23288943058486
  20
-252.73039000000003
+278.8812960000001
  30
 0.0
  11
-287.5
+351.2328894305849
  21
-252.73039000000003
+278.8812960000001
  31
 0.0
   0
@@ -7591,15 +7725,15 @@ LINE
   8
 0
  10
-287.5
+344.23288943058486
  20
-252.73039000000003
+254.88129600000005
  30
 0.0
  11
-287.5
+344.23288943058486
  21
-253.73039000000003
+278.8812960000001
  31
 0.0
   0
@@ -7609,15 +7743,15 @@ LINE
   8
 0
  10
-287.5
+351.2328894305849
  20
-253.73039000000003
+254.88129600000005
  30
 0.0
  11
-286.5
+344.23288943058486
  21
-253.73039000000003
+254.88129600000005
  31
 0.0
   0
@@ -7627,15 +7761,15 @@ LINE
   8
 0
  10
-266.5
+400.323798521494
  20
-256.23039000000006
+249.63129600000005
  30
 0.0
  11
-266.5
+403.823798521494
  21
-255.23039000000003
+249.63129600000005
  31
 0.0
   0
@@ -7645,15 +7779,15 @@ LINE
   8
 0
  10
-266.5
+403.823798521494
  20
-255.23039000000003
+249.63129600000005
  30
 0.0
  11
-267.50000000000006
+400.323798521494
  21
-255.23039000000003
+253.13129600000005
  31
 0.0
   0
@@ -7663,15 +7797,15 @@ LINE
   8
 0
  10
-267.50000000000006
+400.323798521494
  20
-255.23039000000003
+253.13129600000005
  30
 0.0
  11
-267.50000000000006
+389.4147076124031
  21
-256.23039000000006
+253.13129600000005
  31
 0.0
   0
@@ -7681,15 +7815,15 @@ LINE
   8
 0
  10
-267.50000000000006
+389.4147076124031
  20
-256.23039000000006
+253.13129600000005
  30
 0.0
  11
-266.5
+385.9147076124031
  21
-256.23039000000006
+249.63129600000005
  31
 0.0
   0
@@ -7699,15 +7833,15 @@ LINE
   8
 0
  10
-286.5
+385.9147076124031
  20
-256.23039000000006
+249.63129600000005
  30
 0.0
  11
-286.5
+389.4147076124031
  21
-255.23039000000003
+249.63129600000005
  31
 0.0
   0
@@ -7717,15 +7851,15 @@ LINE
   8
 0
  10
-286.5
+373.0510712487667
  20
-255.23039000000003
+249.63129600000005
  30
 0.0
  11
-287.5
+376.55107124876673
  21
-255.23039000000003
+249.63129600000005
  31
 0.0
   0
@@ -7735,15 +7869,15 @@ LINE
   8
 0
  10
-287.5
+376.55107124876673
  20
-255.23039000000003
+249.63129600000005
  30
 0.0
  11
-287.5
+373.0510712487667
  21
-256.23039000000006
+253.13129600000005
  31
 0.0
   0
@@ -7753,15 +7887,15 @@ LINE
   8
 0
  10
-287.5
+373.0510712487667
  20
-256.23039000000006
+253.13129600000005
  30
 0.0
  11
-286.5
+362.14198033967585
  21
-256.23039000000006
+253.13129600000005
  31
 0.0
   0
@@ -7771,15 +7905,15 @@ LINE
   8
 0
  10
-266.5
+362.14198033967585
  20
-258.73039000000006
+253.13129600000005
  30
 0.0
  11
-266.5
+358.6419803396758
  21
-257.73039
+249.63129600000005
  31
 0.0
   0
@@ -7789,15 +7923,15 @@ LINE
   8
 0
  10
-266.5
+358.6419803396758
  20
-257.73039
+249.63129600000005
  30
 0.0
  11
-267.50000000000006
+362.14198033967585
  21
-257.73039
+249.63129600000005
  31
 0.0
   0
@@ -7807,15 +7941,15 @@ LINE
   8
 0
  10
-267.50000000000006
+417.4828894305849
  20
-257.73039
+270.8812960000001
  30
 0.0
  11
-267.50000000000006
+413.9828894305849
  21
-258.73039000000006
+270.8812960000001
  31
 0.0
   0
@@ -7825,15 +7959,15 @@ LINE
   8
 0
  10
-267.50000000000006
+413.9828894305849
  20
-258.73039000000006
+270.8812960000001
  30
 0.0
  11
-266.5
+413.9828894305849
  21
-258.73039000000006
+262.881296
  31
 0.0
   0
@@ -7843,15 +7977,15 @@ LINE
   8
 0
  10
-286.5
+413.9828894305849
  20
-258.73039000000006
+262.881296
  30
 0.0
  11
-286.5
+417.4828894305849
  21
-257.73039
+262.881296
  31
 0.0
   0
@@ -7861,15 +7995,15 @@ LINE
   8
 0
  10
-286.5
+359.7328894305849
  20
-257.73039
+330.381296
  30
 0.0
  11
-287.5
+359.7328894305849
  21
-257.73039
+312.381296
  31
 0.0
   0
@@ -7879,15 +8013,15 @@ LINE
   8
 0
  10
-287.5
+359.7328894305849
  20
-257.73039
+312.381296
  30
 0.0
  11
-287.5
+394.7328894305849
  21
-258.73039000000006
+312.381296
  31
 0.0
   0
@@ -7897,15 +8031,15 @@ LINE
   8
 0
  10
-287.5
+394.7328894305849
  20
-258.73039000000006
+312.381296
  30
 0.0
  11
-286.5
+394.7328894305849
  21
-258.73039000000006
+330.381296
  31
 0.0
   0
@@ -7915,15 +8049,15 @@ LINE
   8
 0
  10
-266.5
+394.7328894305849
  20
-261.23039000000006
+330.381296
  30
 0.0
  11
-266.5
+359.7328894305849
  21
-260.23039000000006
+330.381296
  31
 0.0
   0
@@ -7933,15 +8067,15 @@ LINE
   8
 0
  10
-266.5
+412.7328894305849
  20
-260.23039000000006
+292.1312960000001
  30
 0.0
  11
-267.50000000000006
+412.7328894305849
  21
-260.23039000000006
+289.131296
  31
 0.0
   0
@@ -7951,15 +8085,15 @@ LINE
   8
 0
  10
-267.50000000000006
+412.7328894305849
  20
-260.23039000000006
+289.131296
  30
 0.0
  11
-267.50000000000006
+415.7328894305849
  21
-261.23039000000006
+289.131296
  31
 0.0
   0
@@ -7969,15 +8103,15 @@ LINE
   8
 0
  10
-267.50000000000006
+415.7328894305849
  20
-261.23039000000006
+289.131296
  30
 0.0
  11
-266.5
+415.7328894305849
  21
-261.23039000000006
+292.1312960000001
  31
 0.0
   0
@@ -7987,15 +8121,15 @@ LINE
   8
 0
  10
-286.5
+415.7328894305849
  20
-261.23039000000006
+292.1312960000001
  30
 0.0
  11
-286.5
+412.7328894305849
  21
-260.23039000000006
+292.1312960000001
  31
 0.0
   0
@@ -8005,15 +8139,15 @@ LINE
   8
 0
  10
-286.5
+433.7328894305849
  20
-260.23039000000006
+291.1312960000001
  30
 0.0
  11
-287.5
+433.7328894305849
  21
-260.23039000000006
+290.131296
  31
 0.0
   0
@@ -8023,15 +8157,15 @@ LINE
   8
 0
  10
-287.5
+433.7328894305849
  20
-260.23039000000006
+290.131296
  30
 0.0
  11
-287.5
+434.73288943058486
  21
-261.23039000000006
+290.131296
  31
 0.0
   0
@@ -8041,15 +8175,15 @@ LINE
   8
 0
  10
-287.5
+434.73288943058486
  20
-261.23039000000006
+290.131296
  30
 0.0
  11
-286.5
+434.73288943058486
  21
-261.23039000000006
+291.1312960000001
  31
 0.0
   0
@@ -8059,15 +8193,15 @@ LINE
   8
 0
  10
-266.5
+434.73288943058486
  20
-263.73039000000006
+291.1312960000001
  30
 0.0
  11
-266.5
+433.7328894305849
  21
-262.73039000000006
+291.1312960000001
  31
 0.0
   0
@@ -8077,15 +8211,15 @@ LINE
   8
 0
  10
-266.5
+413.7328894305849
  20
-262.73039000000006
+293.631296
  30
 0.0
  11
-267.50000000000006
+413.7328894305849
  21
-262.73039000000006
+292.6312960000001
  31
 0.0
   0
@@ -8095,15 +8229,15 @@ LINE
   8
 0
  10
-267.50000000000006
+413.7328894305849
  20
-262.73039000000006
+292.6312960000001
  30
 0.0
  11
-267.50000000000006
+414.7328894305849
  21
-263.73039000000006
+292.6312960000001
  31
 0.0
   0
@@ -8113,15 +8247,15 @@ LINE
   8
 0
  10
-267.50000000000006
+414.7328894305849
  20
-263.73039000000006
+292.6312960000001
  30
 0.0
  11
-266.5
+414.7328894305849
  21
-263.73039000000006
+293.631296
  31
 0.0
   0
@@ -8131,15 +8265,15 @@ LINE
   8
 0
  10
-286.5
+414.7328894305849
  20
-263.73039000000006
+293.631296
  30
 0.0
  11
-286.5
+413.7328894305849
  21
-262.73039000000006
+293.631296
  31
 0.0
   0
@@ -8149,15 +8283,15 @@ LINE
   8
 0
  10
-286.5
+433.7328894305849
  20
-262.73039000000006
+293.631296
  30
 0.0
  11
-287.5
+433.7328894305849
  21
-262.73039000000006
+292.6312960000001
  31
 0.0
   0
@@ -8167,15 +8301,15 @@ LINE
   8
 0
  10
-287.5
+433.7328894305849
  20
-262.73039000000006
+292.6312960000001
  30
 0.0
  11
-287.5
+434.73288943058486
  21
-263.73039000000006
+292.6312960000001
  31
 0.0
   0
@@ -8185,15 +8319,15 @@ LINE
   8
 0
  10
-287.5
+434.73288943058486
  20
-263.73039000000006
+292.6312960000001
  30
 0.0
  11
-286.5
+434.73288943058486
  21
-263.73039000000006
+293.631296
  31
 0.0
   0
@@ -8203,15 +8337,15 @@ LINE
   8
 0
  10
-266.5
+434.73288943058486
  20
-266.23039
+293.631296
  30
 0.0
  11
-266.5
+433.7328894305849
  21
-265.23039000000006
+293.631296
  31
 0.0
   0
@@ -8221,15 +8355,15 @@ LINE
   8
 0
  10
-266.5
+413.7328894305849
  20
-265.23039000000006
+296.1312960000001
  30
 0.0
  11
-267.50000000000006
+413.7328894305849
  21
-265.23039000000006
+295.1312960000001
  31
 0.0
   0
@@ -8239,15 +8373,15 @@ LINE
   8
 0
  10
-267.50000000000006
+413.7328894305849
  20
-265.23039000000006
+295.1312960000001
  30
 0.0
  11
-267.50000000000006
+414.7328894305849
  21
-266.23039
+295.1312960000001
  31
 0.0
   0
@@ -8257,15 +8391,15 @@ LINE
   8
 0
  10
-267.50000000000006
+414.7328894305849
  20
-266.23039
+295.1312960000001
  30
 0.0
  11
-266.5
+414.7328894305849
  21
-266.23039
+296.1312960000001
  31
 0.0
   0
@@ -8275,15 +8409,15 @@ LINE
   8
 0
  10
-286.5
+414.7328894305849
  20
-266.23039
+296.1312960000001
  30
 0.0
  11
-286.5
+413.7328894305849
  21
-265.23039000000006
+296.1312960000001
  31
 0.0
   0
@@ -8293,15 +8427,15 @@ LINE
   8
 0
  10
-286.5
+433.7328894305849
  20
-265.23039000000006
+296.1312960000001
  30
 0.0
  11
-287.5
+433.7328894305849
  21
-265.23039000000006
+295.1312960000001
  31
 0.0
   0
@@ -8311,15 +8445,15 @@ LINE
   8
 0
  10
-287.5
+433.7328894305849
  20
-265.23039000000006
+295.1312960000001
  30
 0.0
  11
-287.5
+434.73288943058486
  21
-266.23039
+295.1312960000001
  31
 0.0
   0
@@ -8329,15 +8463,15 @@ LINE
   8
 0
  10
-287.5
+434.73288943058486
  20
-266.23039
+295.1312960000001
  30
 0.0
  11
-286.5
+434.73288943058486
  21
-266.23039
+296.1312960000001
  31
 0.0
   0
@@ -8347,15 +8481,15 @@ LINE
   8
 0
  10
-266.5
+434.73288943058486
  20
-268.73039
+296.1312960000001
  30
 0.0
  11
-266.5
+433.7328894305849
  21
-267.73039000000006
+296.1312960000001
  31
 0.0
   0
@@ -8365,15 +8499,15 @@ LINE
   8
 0
  10
-266.5
+413.7328894305849
  20
-267.73039000000006
+298.631296
  30
 0.0
  11
-267.50000000000006
+413.7328894305849
  21
-267.73039000000006
+297.6312960000001
  31
 0.0
   0
@@ -8383,15 +8517,15 @@ LINE
   8
 0
  10
-267.50000000000006
+413.7328894305849
  20
-267.73039000000006
+297.6312960000001
  30
 0.0
  11
-267.50000000000006
+414.7328894305849
  21
-268.73039
+297.6312960000001
  31
 0.0
   0
@@ -8401,15 +8535,15 @@ LINE
   8
 0
  10
-267.50000000000006
+414.7328894305849
  20
-268.73039
+297.6312960000001
  30
 0.0
  11
-266.5
+414.7328894305849
  21
-268.73039
+298.631296
  31
 0.0
   0
@@ -8419,15 +8553,15 @@ LINE
   8
 0
  10
-286.5
+414.7328894305849
  20
-268.73039
+298.631296
  30
 0.0
  11
-286.5
+413.7328894305849
  21
-267.73039000000006
+298.631296
  31
 0.0
   0
@@ -8437,15 +8571,15 @@ LINE
   8
 0
  10
-286.5
+433.7328894305849
  20
-267.73039000000006
+298.631296
  30
 0.0
  11
-287.5
+433.7328894305849
  21
-267.73039000000006
+297.6312960000001
  31
 0.0
   0
@@ -8455,15 +8589,15 @@ LINE
   8
 0
  10
-287.5
+433.7328894305849
  20
-267.73039000000006
+297.6312960000001
  30
 0.0
  11
-287.5
+434.73288943058486
  21
-268.73039
+297.6312960000001
  31
 0.0
   0
@@ -8473,15 +8607,15 @@ LINE
   8
 0
  10
-287.5
+434.73288943058486
  20
-268.73039
+297.6312960000001
  30
 0.0
  11
-286.5
+434.73288943058486
  21
-268.73039
+298.631296
  31
 0.0
   0
@@ -8491,15 +8625,15 @@ LINE
   8
 0
  10
-266.5
+434.73288943058486
  20
-271.23039
+298.631296
  30
 0.0
  11
-266.5
+433.7328894305849
  21
-270.23039000000006
+298.631296
  31
 0.0
   0
@@ -8509,15 +8643,15 @@ LINE
   8
 0
  10
-266.5
+413.7328894305849
  20
-270.23039000000006
+301.1312960000001
  30
 0.0
  11
-267.50000000000006
+413.7328894305849
  21
-270.23039000000006
+300.1312960000001
  31
 0.0
   0
@@ -8527,15 +8661,15 @@ LINE
   8
 0
  10
-267.50000000000006
+413.7328894305849
  20
-270.23039000000006
+300.1312960000001
  30
 0.0
  11
-267.50000000000006
+414.7328894305849
  21
-271.23039
+300.1312960000001
  31
 0.0
   0
@@ -8545,15 +8679,15 @@ LINE
   8
 0
  10
-267.50000000000006
+414.7328894305849
  20
-271.23039
+300.1312960000001
  30
 0.0
  11
-266.5
+414.7328894305849
  21
-271.23039
+301.1312960000001
  31
 0.0
   0
@@ -8563,15 +8697,15 @@ LINE
   8
 0
  10
-286.5
+414.7328894305849
  20
-271.23039
+301.1312960000001
  30
 0.0
  11
-286.5
+413.7328894305849
  21
-270.23039000000006
+301.1312960000001
  31
 0.0
   0
@@ -8581,15 +8715,15 @@ LINE
   8
 0
  10
-286.5
+433.7328894305849
  20
-270.23039000000006
+301.1312960000001
  30
 0.0
  11
-287.5
+433.7328894305849
  21
-270.23039000000006
+300.1312960000001
  31
 0.0
   0
@@ -8599,15 +8733,15 @@ LINE
   8
 0
  10
-287.5
+433.7328894305849
  20
-270.23039000000006
+300.1312960000001
  30
 0.0
  11
-287.5
+434.73288943058486
  21
-271.23039
+300.1312960000001
  31
 0.0
   0
@@ -8617,15 +8751,15 @@ LINE
   8
 0
  10
-287.5
+434.73288943058486
  20
-271.23039
+300.1312960000001
  30
 0.0
  11
-286.5
+434.73288943058486
  21
-271.23039
+301.1312960000001
  31
 0.0
   0
@@ -8635,15 +8769,15 @@ LINE
   8
 0
  10
-266.5
+434.73288943058486
  20
-273.73039000000006
+301.1312960000001
  30
 0.0
  11
-266.5
+433.7328894305849
  21
-272.73039000000006
+301.1312960000001
  31
 0.0
   0
@@ -8653,15 +8787,15 @@ LINE
   8
 0
  10
-266.5
+413.7328894305849
  20
-272.73039000000006
+303.631296
  30
 0.0
  11
-267.50000000000006
+413.7328894305849
  21
-272.73039000000006
+302.631296
  31
 0.0
   0
@@ -8671,15 +8805,15 @@ LINE
   8
 0
  10
-267.50000000000006
+413.7328894305849
  20
-272.73039000000006
+302.631296
  30
 0.0
  11
-267.50000000000006
+414.7328894305849
  21
-273.73039000000006
+302.631296
  31
 0.0
   0
@@ -8689,15 +8823,15 @@ LINE
   8
 0
  10
-267.50000000000006
+414.7328894305849
  20
-273.73039000000006
+302.631296
  30
 0.0
  11
-266.5
+414.7328894305849
  21
-273.73039000000006
+303.631296
  31
 0.0
   0
@@ -8707,15 +8841,15 @@ LINE
   8
 0
  10
-286.5
+414.7328894305849
  20
-273.73039000000006
+303.631296
  30
 0.0
  11
-286.5
+413.7328894305849
  21
-272.73039000000006
+303.631296
  31
 0.0
   0
@@ -8725,15 +8859,15 @@ LINE
   8
 0
  10
-286.5
+433.7328894305849
  20
-272.73039000000006
+303.631296
  30
 0.0
  11
-287.5
+433.7328894305849
  21
-272.73039000000006
+302.631296
  31
 0.0
   0
@@ -8743,15 +8877,15 @@ LINE
   8
 0
  10
-287.5
+433.7328894305849
  20
-272.73039000000006
+302.631296
  30
 0.0
  11
-287.5
+434.73288943058486
  21
-273.73039000000006
+302.631296
  31
 0.0
   0
@@ -8761,15 +8895,15 @@ LINE
   8
 0
  10
-287.5
+434.73288943058486
  20
-273.73039000000006
+302.631296
  30
 0.0
  11
-286.5
+434.73288943058486
  21
-273.73039000000006
+303.631296
  31
 0.0
   0
@@ -8779,15 +8913,15 @@ LINE
   8
 0
  10
-266.5
+434.73288943058486
  20
-276.23039000000006
+303.631296
  30
 0.0
  11
-266.5
+433.7328894305849
  21
-275.23039
+303.631296
  31
 0.0
   0
@@ -8797,15 +8931,15 @@ LINE
   8
 0
  10
-266.5
+413.7328894305849
  20
-275.23039
+306.1312960000001
  30
 0.0
  11
-267.50000000000006
+413.7328894305849
  21
-275.23039
+305.1312960000001
  31
 0.0
   0
@@ -8815,15 +8949,15 @@ LINE
   8
 0
  10
-267.50000000000006
+413.7328894305849
  20
-275.23039
+305.1312960000001
  30
 0.0
  11
-267.50000000000006
+414.7328894305849
  21
-276.23039000000006
+305.1312960000001
  31
 0.0
   0
@@ -8833,15 +8967,15 @@ LINE
   8
 0
  10
-267.50000000000006
+414.7328894305849
  20
-276.23039000000006
+305.1312960000001
  30
 0.0
  11
-266.5
+414.7328894305849
  21
-276.23039000000006
+306.1312960000001
  31
 0.0
   0
@@ -8851,15 +8985,15 @@ LINE
   8
 0
  10
-286.5
+414.7328894305849
  20
-276.23039000000006
+306.1312960000001
  30
 0.0
  11
-286.5
+413.7328894305849
  21
-275.23039
+306.1312960000001
  31
 0.0
   0
@@ -8869,15 +9003,15 @@ LINE
   8
 0
  10
-286.5
+433.7328894305849
  20
-275.23039
+306.1312960000001
  30
 0.0
  11
-287.5
+433.7328894305849
  21
-275.23039
+305.1312960000001
  31
 0.0
   0
@@ -8887,15 +9021,15 @@ LINE
   8
 0
  10
-287.5
+433.7328894305849
  20
-275.23039
+305.1312960000001
  30
 0.0
  11
-287.5
+434.73288943058486
  21
-276.23039000000006
+305.1312960000001
  31
 0.0
   0
@@ -8905,15 +9039,15 @@ LINE
   8
 0
  10
-287.5
+434.73288943058486
  20
-276.23039000000006
+305.1312960000001
  30
 0.0
  11
-286.5
+434.73288943058486
  21
-276.23039000000006
+306.1312960000001
  31
 0.0
   0
@@ -8923,15 +9057,15 @@ LINE
   8
 0
  10
-266.5
+434.73288943058486
  20
-278.73039
+306.1312960000001
  30
 0.0
  11
-266.5
+433.7328894305849
  21
-277.73039000000006
+306.1312960000001
  31
 0.0
   0
@@ -8941,15 +9075,15 @@ LINE
   8
 0
  10
-266.5
+413.7328894305849
  20
-277.73039000000006
+308.6312960000001
  30
 0.0
  11
-267.50000000000006
+413.7328894305849
  21
-277.73039000000006
+307.631296
  31
 0.0
   0
@@ -8959,15 +9093,15 @@ LINE
   8
 0
  10
-267.50000000000006
+413.7328894305849
  20
-277.73039000000006
+307.631296
  30
 0.0
  11
-267.50000000000006
+414.7328894305849
  21
-278.73039
+307.631296
  31
 0.0
   0
@@ -8977,15 +9111,15 @@ LINE
   8
 0
  10
-267.50000000000006
+414.7328894305849
  20
-278.73039
+307.631296
  30
 0.0
  11
-266.5
+414.7328894305849
  21
-278.73039
+308.6312960000001
  31
 0.0
   0
@@ -8995,15 +9129,15 @@ LINE
   8
 0
  10
-286.5
+414.7328894305849
  20
-278.73039
+308.6312960000001
  30
 0.0
  11
-286.5
+413.7328894305849
  21
-277.73039000000006
+308.6312960000001
  31
 0.0
   0
@@ -9013,15 +9147,15 @@ LINE
   8
 0
  10
-286.5
+433.7328894305849
  20
-277.73039000000006
+308.6312960000001
  30
 0.0
  11
-287.5
+433.7328894305849
  21
-277.73039000000006
+307.631296
  31
 0.0
   0
@@ -9031,15 +9165,15 @@ LINE
   8
 0
  10
-287.5
+433.7328894305849
  20
-277.73039000000006
+307.631296
  30
 0.0
  11
-287.5
+434.73288943058486
  21
-278.73039
+307.631296
  31
 0.0
   0
@@ -9049,15 +9183,15 @@ LINE
   8
 0
  10
-287.5
+434.73288943058486
  20
-278.73039
+307.631296
  30
 0.0
  11
-286.5
+434.73288943058486
  21
-278.73039
+308.6312960000001
  31
 0.0
   0
@@ -9067,15 +9201,15 @@ LINE
   8
 0
  10
-266.5
+434.73288943058486
  20
-281.23039000000006
+308.6312960000001
  30
 0.0
  11
-266.5
+433.7328894305849
  21
-280.23039
+308.6312960000001
  31
 0.0
   0
@@ -9085,15 +9219,15 @@ LINE
   8
 0
  10
-266.5
+413.7328894305849
  20
-280.23039
+311.1312960000001
  30
 0.0
  11
-267.50000000000006
+413.7328894305849
  21
-280.23039
+310.1312960000001
  31
 0.0
   0
@@ -9103,15 +9237,15 @@ LINE
   8
 0
  10
-267.50000000000006
+413.7328894305849
  20
-280.23039
+310.1312960000001
  30
 0.0
  11
-267.50000000000006
+414.7328894305849
  21
-281.23039000000006
+310.1312960000001
  31
 0.0
   0
@@ -9121,15 +9255,15 @@ LINE
   8
 0
  10
-267.50000000000006
+414.7328894305849
  20
-281.23039000000006
+310.1312960000001
  30
 0.0
  11
-266.5
+414.7328894305849
  21
-281.23039000000006
+311.1312960000001
  31
 0.0
   0
@@ -9139,15 +9273,15 @@ LINE
   8
 0
  10
-286.5
+414.7328894305849
  20
-281.23039000000006
+311.1312960000001
  30
 0.0
  11
-286.5
+413.7328894305849
  21
-280.23039
+311.1312960000001
  31
 0.0
   0
@@ -9157,15 +9291,15 @@ LINE
   8
 0
  10
-286.5
+433.7328894305849
  20
-280.23039
+311.1312960000001
  30
 0.0
  11
-287.5
+433.7328894305849
  21
-280.23039
+310.1312960000001
  31
 0.0
   0
@@ -9175,15 +9309,15 @@ LINE
   8
 0
  10
-287.5
+433.7328894305849
  20
-280.23039
+310.1312960000001
  30
 0.0
  11
-287.5
+434.73288943058486
  21
-281.23039000000006
+310.1312960000001
  31
 0.0
   0
@@ -9193,15 +9327,15 @@ LINE
   8
 0
  10
-287.5
+434.73288943058486
  20
-281.23039000000006
+310.1312960000001
  30
 0.0
  11
-286.5
+434.73288943058486
  21
-281.23039000000006
+311.1312960000001
  31
 0.0
   0
@@ -9211,15 +9345,15 @@ LINE
   8
 0
  10
-266.5
+434.73288943058486
  20
-283.73039
+311.1312960000001
  30
 0.0
  11
-266.5
+433.7328894305849
  21
-282.73039000000006
+311.1312960000001
  31
 0.0
   0
@@ -9229,15 +9363,15 @@ LINE
   8
 0
  10
-266.5
+413.7328894305849
  20
-282.73039000000006
+313.6312960000001
  30
 0.0
  11
-267.50000000000006
+413.7328894305849
  21
-282.73039000000006
+312.631296
  31
 0.0
   0
@@ -9247,15 +9381,15 @@ LINE
   8
 0
  10
-267.50000000000006
+413.7328894305849
  20
-282.73039000000006
+312.631296
  30
 0.0
  11
-267.50000000000006
+414.7328894305849
  21
-283.73039
+312.631296
  31
 0.0
   0
@@ -9265,15 +9399,15 @@ LINE
   8
 0
  10
-267.50000000000006
+414.7328894305849
  20
-283.73039
+312.631296
  30
 0.0
  11
-266.5
+414.7328894305849
  21
-283.73039
+313.6312960000001
  31
 0.0
   0
@@ -9283,15 +9417,15 @@ LINE
   8
 0
  10
-286.5
+414.7328894305849
  20
-283.73039
+313.6312960000001
  30
 0.0
  11
-286.5
+413.7328894305849
  21
-282.73039000000006
+313.6312960000001
  31
 0.0
   0
@@ -9301,15 +9435,15 @@ LINE
   8
 0
  10
-286.5
+433.7328894305849
  20
-282.73039000000006
+313.6312960000001
  30
 0.0
  11
-287.5
+433.7328894305849
  21
-282.73039000000006
+312.631296
  31
 0.0
   0
@@ -9319,15 +9453,15 @@ LINE
   8
 0
  10
-287.5
+433.7328894305849
  20
-282.73039000000006
+312.631296
  30
 0.0
  11
-287.5
+434.73288943058486
  21
-283.73039
+312.631296
  31
 0.0
   0
@@ -9337,15 +9471,15 @@ LINE
   8
 0
  10
-287.5
+434.73288943058486
  20
-283.73039
+312.631296
  30
 0.0
  11
-286.5
+434.73288943058486
  21
-283.73039
+313.6312960000001
  31
 0.0
   0
@@ -9355,15 +9489,15 @@ LINE
   8
 0
  10
-266.5
+434.73288943058486
  20
-286.23039000000006
+313.6312960000001
  30
 0.0
  11
-266.5
+433.7328894305849
  21
-285.23039000000006
+313.6312960000001
  31
 0.0
   0
@@ -9373,15 +9507,15 @@ LINE
   8
 0
  10
-266.5
+413.7328894305849
  20
-285.23039000000006
+316.131296
  30
 0.0
  11
-267.50000000000006
+413.7328894305849
  21
-285.23039000000006
+315.1312960000001
  31
 0.0
   0
@@ -9391,15 +9525,15 @@ LINE
   8
 0
  10
-267.50000000000006
+413.7328894305849
  20
-285.23039000000006
+315.1312960000001
  30
 0.0
  11
-267.50000000000006
+414.7328894305849
  21
-286.23039000000006
+315.1312960000001
  31
 0.0
   0
@@ -9409,15 +9543,15 @@ LINE
   8
 0
  10
-267.50000000000006
+414.7328894305849
  20
-286.23039000000006
+315.1312960000001
  30
 0.0
  11
-266.5
+414.7328894305849
  21
-286.23039000000006
+316.131296
  31
 0.0
   0
@@ -9427,15 +9561,15 @@ LINE
   8
 0
  10
-286.5
+414.7328894305849
  20
-286.23039000000006
+316.131296
  30
 0.0
  11
-286.5
+413.7328894305849
  21
-285.23039000000006
+316.131296
  31
 0.0
   0
@@ -9445,15 +9579,15 @@ LINE
   8
 0
  10
-286.5
+433.7328894305849
  20
-285.23039000000006
+316.131296
  30
 0.0
  11
-287.5
+433.7328894305849
  21
-285.23039000000006
+315.1312960000001
  31
 0.0
   0
@@ -9463,15 +9597,15 @@ LINE
   8
 0
  10
-287.5
+433.7328894305849
  20
-285.23039000000006
+315.1312960000001
  30
 0.0
  11
-287.5
+434.73288943058486
  21
-286.23039000000006
+315.1312960000001
  31
 0.0
   0
@@ -9481,15 +9615,15 @@ LINE
   8
 0
  10
-287.5
+434.73288943058486
  20
-286.23039000000006
+315.1312960000001
  30
 0.0
  11
-286.5
+434.73288943058486
  21
-286.23039000000006
+316.131296
  31
 0.0
   0
@@ -9499,15 +9633,15 @@ LINE
   8
 0
  10
-266.5
+434.73288943058486
  20
-288.73039
+316.131296
  30
 0.0
  11
-266.5
+433.7328894305849
  21
-287.73039000000006
+316.131296
  31
 0.0
   0
@@ -9517,15 +9651,15 @@ LINE
   8
 0
  10
-266.5
+413.7328894305849
  20
-287.73039000000006
+318.6312960000001
  30
 0.0
  11
-267.50000000000006
+413.7328894305849
  21
-287.73039000000006
+317.6312960000001
  31
 0.0
   0
@@ -9535,15 +9669,15 @@ LINE
   8
 0
  10
-267.50000000000006
+413.7328894305849
  20
-287.73039000000006
+317.6312960000001
  30
 0.0
  11
-267.50000000000006
+414.7328894305849
  21
-288.73039
+317.6312960000001
  31
 0.0
   0
@@ -9553,15 +9687,15 @@ LINE
   8
 0
  10
-267.50000000000006
+414.7328894305849
  20
-288.73039
+317.6312960000001
  30
 0.0
  11
-266.5
+414.7328894305849
  21
-288.73039
+318.6312960000001
  31
 0.0
   0
@@ -9571,15 +9705,15 @@ LINE
   8
 0
  10
-285.50000000000006
+414.7328894305849
  20
-289.73039000000006
+318.6312960000001
  30
 0.0
  11
-285.50000000000006
+413.7328894305849
  21
-286.73039000000006
+318.6312960000001
  31
 0.0
   0
@@ -9589,15 +9723,15 @@ LINE
   8
 0
  10
-285.50000000000006
+433.7328894305849
  20
-286.73039000000006
+318.6312960000001
  30
 0.0
  11
-288.50000000000006
+433.7328894305849
  21
-286.73039000000006
+317.6312960000001
  31
 0.0
   0
@@ -9607,15 +9741,15 @@ LINE
   8
 0
  10
-288.50000000000006
+433.7328894305849
  20
-286.73039000000006
+317.6312960000001
  30
 0.0
  11
-288.50000000000006
+434.73288943058486
  21
-289.73039000000006
+317.6312960000001
  31
 0.0
   0
@@ -9625,15 +9759,15 @@ LINE
   8
 0
  10
-288.50000000000006
+434.73288943058486
  20
-289.73039000000006
+317.6312960000001
  30
 0.0
  11
-285.50000000000006
+434.73288943058486
  21
-289.73039000000006
+318.6312960000001
  31
 0.0
   0
@@ -9643,15 +9777,15 @@ LINE
   8
 0
  10
-281.25
+434.73288943058486
  20
-246.73039000000003
+318.6312960000001
  30
 0.0
  11
-272.75
+433.7328894305849
  21
-246.73039000000003
+318.6312960000001
  31
 0.0
   0
@@ -9661,15 +9795,15 @@ LINE
   8
 0
  10
-272.75
+413.7328894305849
  20
-246.73039000000003
+321.131296
  30
 0.0
  11
-272.75
+413.7328894305849
  21
-246.23039000000003
+320.1312960000001
  31
 0.0
   0
@@ -9679,15 +9813,15 @@ LINE
   8
 0
  10
-272.75
+413.7328894305849
  20
-246.23039000000003
+320.1312960000001
  30
 0.0
  11
-281.25
+414.7328894305849
  21
-246.23039000000003
+320.1312960000001
  31
 0.0
   0
@@ -9697,15 +9831,15 @@ LINE
   8
 0
  10
-281.25
+414.7328894305849
  20
-246.23039000000003
+320.1312960000001
  30
 0.0
  11
-281.25
+414.7328894305849
  21
-246.73039000000003
+321.131296
  31
 0.0
   0
@@ -9715,15 +9849,15 @@ LINE
   8
 0
  10
-272.75
+414.7328894305849
  20
-294.48039000000006
+321.131296
  30
 0.0
  11
-281.25
+413.7328894305849
  21
-294.48039000000006
+321.131296
  31
 0.0
   0
@@ -9733,15 +9867,15 @@ LINE
   8
 0
  10
-281.25
+433.7328894305849
  20
-294.48039000000006
+321.131296
  30
 0.0
  11
-281.25
+433.7328894305849
  21
-294.98039000000006
+320.1312960000001
  31
 0.0
   0
@@ -9751,15 +9885,15 @@ LINE
   8
 0
  10
-281.25
+433.7328894305849
  20
-294.98039000000006
+320.1312960000001
  30
 0.0
  11
-272.75
+434.73288943058486
  21
-294.98039000000006
+320.1312960000001
  31
 0.0
   0
@@ -9769,15 +9903,15 @@ LINE
   8
 0
  10
-272.75
+434.73288943058486
  20
-294.98039000000006
+320.1312960000001
  30
 0.0
  11
-272.75
+434.73288943058486
  21
-294.48039000000006
+321.131296
  31
 0.0
   0
@@ -9787,15 +9921,15 @@ LINE
   8
 0
  10
-257.5
+434.73288943058486
  20
-250.07129909090912
+321.131296
  30
 0.0
  11
-262.5
+433.7328894305849
  21
-250.07129909090912
+321.131296
  31
 0.0
   0
@@ -9805,15 +9939,15 @@ LINE
   8
 0
  10
-262.5
+413.7328894305849
  20
-250.07129909090912
+323.6312960000001
  30
 0.0
  11
-262.5
+413.7328894305849
  21
-261.16220818181824
+322.6312960000001
  31
 0.0
   0
@@ -9823,15 +9957,15 @@ LINE
   8
 0
  10
-262.5
+413.7328894305849
  20
-261.16220818181824
+322.6312960000001
  30
 0.0
  11
-257.5
+414.7328894305849
  21
-261.16220818181824
+322.6312960000001
  31
 0.0
   0
@@ -9841,15 +9975,15 @@ LINE
   8
 0
  10
-257.5
+414.7328894305849
  20
-277.7985718181818
+322.6312960000001
  30
 0.0
  11
-262.5
+414.7328894305849
  21
-277.7985718181818
+323.6312960000001
  31
 0.0
   0
@@ -9859,15 +9993,15 @@ LINE
   8
 0
  10
-262.5
+414.7328894305849
  20
-277.7985718181818
+323.6312960000001
  30
 0.0
  11
-262.5
+413.7328894305849
  21
-288.889480909091
+323.6312960000001
  31
 0.0
   0
@@ -9877,15 +10011,15 @@ LINE
   8
 0
  10
-262.5
+433.7328894305849
  20
-288.889480909091
+323.6312960000001
  30
 0.0
  11
-257.5
+433.7328894305849
  21
-288.889480909091
+322.6312960000001
  31
 0.0
   0
@@ -9895,15 +10029,15 @@ LINE
   8
 0
  10
-282.75
+433.7328894305849
  20
-222.98039000000003
+322.6312960000001
  30
 0.0
  11
-286.25
+434.73288943058486
  21
-222.98039000000003
+322.6312960000001
  31
 0.0
   0
@@ -9913,15 +10047,15 @@ LINE
   8
 0
  10
-286.25
+434.73288943058486
  20
-222.98039000000003
+322.6312960000001
  30
 0.0
  11
-286.25
+434.73288943058486
  21
-230.98039000000003
+323.6312960000001
  31
 0.0
   0
@@ -9931,115 +10065,105 @@ LINE
   8
 0
  10
-286.25
+434.73288943058486
  20
-230.98039000000003
+323.6312960000001
  30
 0.0
  11
-282.75
+433.7328894305849
  21
-230.98039000000003
+323.6312960000001
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
 0
  10
-653.0000000000001
+413.7328894305849
  20
-101.98039000000001
+326.131296
  30
 0.0
  11
-653.0000000000001
+413.7328894305849
  21
-351.98039
+325.131296
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
 0
  10
-593.0
+413.7328894305849
  20
-101.98039000000001
+325.131296
  30
 0.0
  11
-593.0
+414.7328894305849
  21
-351.98039
+325.131296
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
 0
  10
-623.0000000000001
+414.7328894305849
  20
-101.98039000000001
+325.131296
  30
 0.0
  11
-593.0
+414.7328894305849
  21
-101.98039000000001
+326.131296
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
 0
  10
-653.0000000000001
+414.7328894305849
  20
-101.98039000000001
+326.131296
  30
 0.0
  11
-623.0000000000001
+413.7328894305849
  21
-101.98039000000001
+326.131296
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
 0
  10
-623.0000000000001
+433.7328894305849
  20
--2.718556970648933e-07
+326.131296
  30
 0.0
  11
-593.0
+433.7328894305849
  21
-101.98039000000003
+325.131296
  31
 0.0
   0
@@ -10049,15 +10173,15 @@ LINE
   8
 0
  10
-577.4351669969384
+433.7328894305849
  20
-88.51883783587918
+325.131296
  30
 0.0
  11
-575.2175834984691
+434.73288943058486
  21
-92.82693910068978
+325.131296
  31
 0.0
   0
@@ -10067,55 +10191,51 @@ LINE
   8
 0
  10
-623.0000000000001
+434.73288943058486
  20
--2.718556970648933e-07
+325.131296
  30
 0.0
  11
-577.4351669969384
+434.73288943058486
  21
-88.51883783587918
+326.131296
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
 0
  10
-593.0
+434.73288943058486
  20
-101.98039000000001
+326.131296
  30
 0.0
  11
-575.2175834984691
+433.7328894305849
  21
-92.82693910068978
+326.131296
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-3
+5
   8
 0
  10
-593.0
+413.7328894305849
  20
-101.98039000000001
+328.6312960000001
  30
 0.0
  11
-573.0
+413.7328894305849
  21
-97.13504036550037
+327.6312960000001
  31
 0.0
   0
@@ -10125,55 +10245,51 @@ LINE
   8
 0
  10
-575.2175834984691
+413.7328894305849
  20
-92.82693910068978
+327.6312960000001
  30
 0.0
  11
-573.0
+414.7328894305849
  21
-97.13504036550037
+327.6312960000001
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-3
+5
   8
 0
  10
-573.0
+414.7328894305849
  20
-101.98039000000001
+327.6312960000001
  30
 0.0
  11
-573.0
+414.7328894305849
  21
-97.1350403655004
+328.6312960000001
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
 0
  10
-593.0
+414.7328894305849
  20
-101.98039000000001
+328.6312960000001
  30
 0.0
  11
-573.0
+413.7328894305849
  21
-101.98039000000001
+328.6312960000001
  31
 0.0
   0
@@ -10183,15 +10299,15 @@ LINE
   8
 0
  10
-571.3848834551669
+432.7328894305849
  20
-101.98039000000001
+329.6312960000001
  30
 0.0
  11
-573.0
+432.7328894305849
  21
-101.98039000000001
+326.631296
  31
 0.0
   0
@@ -10201,15 +10317,15 @@ LINE
   8
 0
  10
-571.3848834551669
+432.7328894305849
  20
-97.1350403655004
+326.631296
  30
 0.0
  11
-571.3848834551669
+435.7328894305849
  21
-101.98039000000001
+326.631296
  31
 0.0
   0
@@ -10219,75 +10335,69 @@ LINE
   8
 0
  10
-573.0
+435.7328894305849
  20
-97.1350403655004
+326.631296
  30
 0.0
  11
-571.3848834551669
+435.7328894305849
  21
-97.1350403655004
+329.6312960000001
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
 0
  10
-573.0
+435.7328894305849
  20
-351.98039
+329.6312960000001
  30
 0.0
  11
-593.0
+432.7328894305849
  21
-351.98039
+329.6312960000001
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-3
+5
   8
 0
  10
-573.0
+428.4828894305849
  20
-366.05164438473815
+286.6312960000001
  30
 0.0
  11
-593.0
+419.9828894305849
  21
-351.98039
+286.6312960000001
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-3
+5
   8
 0
  10
-573.0
+419.9828894305849
  20
-366.05164438473815
+286.6312960000001
  30
 0.0
  11
-573.0
+419.9828894305849
  21
-351.98039
+286.1312960000001
  31
 0.0
   0
@@ -10297,55 +10407,51 @@ LINE
   8
 0
  10
-573.0
+419.9828894305849
  20
-366.0516443847381
+286.1312960000001
  30
 0.0
  11
-586.2441561038441
+428.4828894305849
  21
-370.80480428705755
+286.1312960000001
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
 0
  10
-586.2441561038441
+428.4828894305849
  20
-370.80480428705755
+286.1312960000001
  30
 0.0
  11
-593.0
+428.4828894305849
  21
-351.98039
+286.6312960000001
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
 0
  10
-623.0000000000001
+419.9828894305849
  20
-383.99601118716436
+334.381296
  30
 0.0
  11
-593.0
+428.4828894305849
  21
-351.98039
+334.381296
  31
 0.0
   0
@@ -10355,15 +10461,15 @@ LINE
   8
 0
  10
-599.4883122076884
+428.4828894305849
  20
-375.55796418937695
+334.381296
  30
 0.0
  11
-623.0000000000001
+428.4828894305849
  21
-383.99601118716436
+334.881296
  31
 0.0
   0
@@ -10373,75 +10479,69 @@ LINE
   8
 0
  10
-586.2441561038441
+428.4828894305849
  20
-370.80480428705755
+334.881296
  30
 0.0
  11
-599.4883122076884
+419.9828894305849
  21
-375.55796418937695
+334.881296
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
 0
  10
-593.0
+419.9828894305849
  20
-351.98039
+334.881296
  30
 0.0
  11
-623.0000000000001
+419.9828894305849
  21
-351.98039
+334.381296
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
 0
  10
-623.0000000000001
+451.2328894305849
  20
-351.98039
+329.881296
  30
 0.0
  11
-653.0000000000001
+451.2328894305849
  21
-351.98039
+316.881296
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
 0
  10
-623.0000000000001
+451.2328894305849
  20
-383.99601118716436
+316.881296
  30
 0.0
  11
-653.0000000000001
+481.2328894305849
  21
-351.98039
+316.881296
  31
 0.0
   0
@@ -10451,15 +10551,15 @@ LINE
   8
 0
  10
-646.5116877923116
+481.2328894305849
  20
-375.55796418937695
+316.881296
  30
 0.0
  11
-659.7558438961557
+481.2328894305849
  21
-370.80480428705755
+329.881296
  31
 0.0
   0
@@ -10469,55 +10569,51 @@ LINE
   8
 0
  10
-623.0000000000001
+481.2328894305849
  20
-383.9960111871643
+329.881296
  30
 0.0
  11
-646.5116877923116
+451.2328894305849
  21
-375.55796418937695
+329.881296
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
 0
  10
-653.0000000000001
+458.30107124876673
  20
-351.98039
+284.381296
  30
 0.0
  11
-659.7558438961557
+446.89198033967585
  21
-370.80480428705755
+284.381296
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-3
+5
   8
 0
  10
-653.0000000000001
+446.89198033967585
  20
-351.98039000000006
+284.381296
  30
 0.0
  11
-673.0
+446.89198033967585
  21
-366.05164438473815
+283.8812960000001
  31
 0.0
   0
@@ -10527,55 +10623,51 @@ LINE
   8
 0
  10
-659.7558438961557
+446.89198033967585
  20
-370.8048042870576
+283.8812960000001
  30
 0.0
  11
-673.0
+458.30107124876673
  21
-366.05164438473815
+283.8812960000001
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-3
+5
   8
 0
  10
-673.0
+458.30107124876673
  20
-351.98039000000006
+283.8812960000001
  30
 0.0
  11
-673.0
+458.30107124876673
  21
-366.05164438473815
+284.381296
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
 0
  10
-653.0000000000001
+485.573798521494
  20
-351.98039000000006
+284.381296
  30
 0.0
  11
-673.0
+474.1647076124031
  21
-351.98039000000006
+284.381296
  31
 0.0
   0
@@ -10585,15 +10677,15 @@ LINE
   8
 0
  10
-677.690418128246
+474.1647076124031
  20
-351.98039000000006
+284.381296
  30
 0.0
  11
-673.0
+474.1647076124031
  21
-351.98039000000006
+283.8812960000001
  31
 0.0
   0
@@ -10603,15 +10695,15 @@ LINE
   8
 0
  10
-677.690418128246
+474.1647076124031
  20
-366.05164438473815
+283.8812960000001
  30
 0.0
  11
-677.690418128246
+485.573798521494
  21
-351.98039000000006
+283.8812960000001
  31
 0.0
   0
@@ -10621,15 +10713,15 @@ LINE
   8
 0
  10
-673.0
+485.573798521494
  20
-366.05164438473815
+283.8812960000001
  30
 0.0
  11
-677.690418128246
+485.573798521494
  21
-366.05164438473815
+284.381296
  31
 0.0
   0
@@ -10639,75 +10731,69 @@ LINE
   8
 0
  10
-673.0
+488.4828894305849
  20
-351.98039
+301.3131141818182
  30
 0.0
  11
-673.0000000000001
+488.4828894305849
  21
-101.98038999999997
+289.7222050909092
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
 0
  10
-673.0000000000001
+488.4828894305849
  20
-101.98038999999999
+289.7222050909092
  30
 0.0
  11
-653.0000000000001
+488.9828894305849
  21
-101.98038999999997
+289.7222050909092
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-3
+5
   8
 0
  10
-673.0000000000001
+488.9828894305849
  20
-97.13504036550036
+289.7222050909092
  30
 0.0
  11
-653.0000000000001
+488.9828894305849
  21
-101.98038999999997
+301.3131141818182
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-3
+5
   8
 0
  10
-673.0000000000001
+488.9828894305849
  20
-97.13504036550036
+301.3131141818182
  30
 0.0
  11
-673.0000000000001
+488.4828894305849
  21
-101.98038999999997
+301.3131141818182
  31
 0.0
   0
@@ -10717,55 +10803,51 @@ LINE
   8
 0
  10
-673.0000000000001
+488.4828894305849
  20
-97.13504036550036
+329.040386909091
  30
 0.0
  11
-670.782416501531
+488.4828894305849
  21
-92.82693910068974
+317.4494778181819
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
 0
  10
-670.782416501531
+488.4828894305849
  20
-92.82693910068974
+317.4494778181819
  30
 0.0
  11
-653.0000000000001
+488.9828894305849
  21
-101.98038999999997
+317.4494778181819
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
 0
  10
-623.0000000000002
+488.9828894305849
  20
--2.7185575390831223e-07
+317.4494778181819
  30
 0.0
  11
-653.0000000000001
+488.9828894305849
  21
-101.98038999999997
+329.040386909091
  31
 0.0
   0
@@ -10775,15 +10857,15 @@ LINE
   8
 0
  10
-668.5648330030618
+488.9828894305849
  20
-88.51883783587913
+329.040386909091
  30
 0.0
  11
-623.0000000000002
+488.4828894305849
  21
--2.7185575390831223e-07
+329.040386909091
  31
 0.0
   0
@@ -10793,15 +10875,15 @@ LINE
   8
 0
  10
-670.782416501531
+328.7328894305849
  20
-92.82693910068974
+292.1312960000001
  30
 0.0
  11
-668.5648330030618
+328.7328894305849
  21
-88.51883783587913
+289.131296
  31
 0.0
   0
@@ -10811,15 +10893,15 @@ LINE
   8
 0
  10
-674.6151165448334
+328.7328894305849
  20
-97.13504036550036
+289.131296
  30
 0.0
  11
-673.0000000000001
+331.7328894305849
  21
-97.13504036550036
+289.131296
  31
 0.0
   0
@@ -10829,15 +10911,15 @@ LINE
   8
 0
  10
-674.6151165448334
+331.7328894305849
  20
-101.98038999999997
+289.131296
  30
 0.0
  11
-674.6151165448334
+331.7328894305849
  21
-97.13504036550036
+292.1312960000001
  31
 0.0
   0
@@ -10847,15 +10929,15 @@ LINE
   8
 0
  10
-673.0000000000001
+331.7328894305849
  20
-101.98038999999997
+292.1312960000001
  30
 0.0
  11
-674.6151165448334
+328.7328894305849
  21
-101.98038999999997
+292.1312960000001
  31
 0.0
   0
@@ -10865,15 +10947,15 @@ LINE
   8
 0
  10
-568.3095818717541
+349.7328894305849
  20
-366.0516443847381
+291.1312960000001
  30
 0.0
  11
-573.0
+349.7328894305849
  21
-366.0516443847381
+290.131296
  31
 0.0
   0
@@ -10883,15 +10965,15 @@ LINE
   8
 0
  10
-568.3095818717541
+349.7328894305849
  20
-351.98039
+290.131296
  30
 0.0
  11
-568.3095818717541
+350.7328894305849
  21
-366.0516443847381
+290.131296
  31
 0.0
   0
@@ -10901,15 +10983,15 @@ LINE
   8
 0
  10
-573.0
+350.7328894305849
  20
-351.98039
+290.131296
  30
 0.0
  11
-568.3095818717541
+350.7328894305849
  21
-351.98039
+291.1312960000001
  31
 0.0
   0
@@ -10919,15 +11001,15 @@ LINE
   8
 0
  10
-573.0
+350.7328894305849
  20
-351.98039
+291.1312960000001
  30
 0.0
  11
-573.0
+349.7328894305849
  21
-351.98039
+291.1312960000001
  31
 0.0
   0
@@ -10937,15 +11019,15 @@ LINE
   8
 0
  10
-573.0
+329.73288943058486
  20
-251.98039000000003
+293.631296
  30
 0.0
  11
-573.0
+329.73288943058486
  21
-351.98039
+292.6312960000001
  31
 0.0
   0
@@ -10955,15 +11037,15 @@ LINE
   8
 0
  10
-573.0
+329.73288943058486
  20
-101.98039000000001
+292.6312960000001
  30
 0.0
  11
-573.0
+330.7328894305849
  21
-201.98039000000003
+292.6312960000001
  31
 0.0
   0
@@ -10973,75 +11055,69 @@ LINE
   8
 0
  10
-573.0
+330.7328894305849
  20
-101.98039000000001
+292.6312960000001
  30
 0.0
  11
-573.0
+330.7328894305849
  21
-101.98039000000001
+293.631296
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
 0
  10
-573.0
+330.7328894305849
  20
-251.98039000000003
+293.631296
  30
 0.0
  11
-543.0000000000001
+329.73288943058486
  21
-251.98039000000003
+293.631296
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
 0
  10
-543.0000000000001
+349.7328894305849
  20
-201.98039000000003
+293.631296
  30
 0.0
  11
-543.0000000000001
+349.7328894305849
  21
-251.98039000000003
+292.6312960000001
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
 0
  10
-543.0000000000001
+349.7328894305849
  20
-201.98039000000003
+292.6312960000001
  30
 0.0
  11
-573.0
+350.7328894305849
  21
-201.98039000000003
+292.6312960000001
  31
 0.0
   0
@@ -11051,15 +11127,15 @@ LINE
   8
 0
  10
-573.0
+350.7328894305849
  20
-261.98039
+292.6312960000001
  30
 0.0
  11
-573.0
+350.7328894305849
  21
-251.98039000000003
+293.631296
  31
 0.0
   0
@@ -11069,15 +11145,15 @@ LINE
   8
 0
  10
-543.0000000000001
+350.7328894305849
  20
-261.98039
+293.631296
  30
 0.0
  11
-573.0
+349.7328894305849
  21
-261.98039
+293.631296
  31
 0.0
   0
@@ -11087,75 +11163,69 @@ LINE
   8
 0
  10
-543.0000000000001
+329.73288943058486
  20
-251.98039000000003
+296.1312960000001
  30
 0.0
  11
-543.0000000000001
+329.73288943058486
  21
-261.98039
+295.1312960000001
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
 0
  10
-543.0000000000001
+329.73288943058486
  20
-251.98039000000003
+295.1312960000001
  30
 0.0
  11
-483.00000000000006
+330.7328894305849
  21
-251.98039
+295.1312960000001
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
 0
  10
-483.00000000000006
+330.7328894305849
  20
-251.98039
+295.1312960000001
  30
 0.0
  11
-483.00000000000006
+330.7328894305849
  21
-201.98039
+296.1312960000001
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
 0
  10
-483.00000000000006
+330.7328894305849
  20
-201.98039
+296.1312960000001
  30
 0.0
  11
-543.0000000000001
+329.73288943058486
  21
-201.98039000000003
+296.1312960000001
  31
 0.0
   0
@@ -11165,15 +11235,15 @@ LINE
   8
 0
  10
-483.00000000000006
+349.7328894305849
  20
-281.98039000000006
+296.1312960000001
  30
 0.0
  11
-543.0000000000001
+349.7328894305849
  21
-281.98039000000006
+295.1312960000001
  31
 0.0
   0
@@ -11183,15 +11253,15 @@ LINE
   8
 0
  10
-483.00000000000006
+349.7328894305849
  20
-251.98039
+295.1312960000001
  30
 0.0
  11
-483.00000000000006
+350.7328894305849
  21
-281.98039000000006
+295.1312960000001
  31
 0.0
   0
@@ -11201,35 +11271,33 @@ LINE
   8
 0
  10
-543.0000000000001
+350.7328894305849
  20
-281.98039000000006
+295.1312960000001
  30
 0.0
  11
-543.0000000000001
+350.7328894305849
  21
-251.98039000000003
+296.1312960000001
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
 0
  10
-483.00000000000006
+350.7328894305849
  20
-251.98039
+296.1312960000001
  30
 0.0
  11
-453.00000000000006
+349.7328894305849
  21
-251.98039
+296.1312960000001
  31
 0.0
   0
@@ -11239,15 +11307,15 @@ LINE
   8
 0
  10
-483.00000000000006
+329.73288943058486
  20
-201.98039
+298.631296
  30
 0.0
  11
-453.00000000000006
+329.73288943058486
  21
-201.98039
+297.6312960000001
  31
 0.0
   0
@@ -11257,15 +11325,15 @@ LINE
   8
 0
  10
-483.00000000000006
+329.73288943058486
  20
-261.98039
+297.6312960000001
  30
 0.0
  11
-483.00000000000006
+330.7328894305849
  21
-251.98039
+297.6312960000001
  31
 0.0
   0
@@ -11275,15 +11343,15 @@ LINE
   8
 0
  10
-453.00000000000006
+330.7328894305849
  20
-261.98038999999994
+297.6312960000001
  30
 0.0
  11
-483.00000000000006
+330.7328894305849
  21
-261.98039
+298.631296
  31
 0.0
   0
@@ -11293,15 +11361,15 @@ LINE
   8
 0
  10
-453.00000000000006
+330.7328894305849
  20
-251.98039
+298.631296
  30
 0.0
  11
-453.00000000000006
+329.73288943058486
  21
-261.98038999999994
+298.631296
  31
 0.0
   0
@@ -11311,15 +11379,15 @@ LINE
   8
 0
  10
-453.00000000000006
+349.7328894305849
  20
-101.98038999999999
+298.631296
  30
 0.0
  11
-453.00000000000006
+349.7328894305849
  21
-101.98038999999999
+297.6312960000001
  31
 0.0
   0
@@ -11329,15 +11397,15 @@ LINE
   8
 0
  10
-453.00000000000006
+349.7328894305849
  20
-201.98039
+297.6312960000001
  30
 0.0
  11
-453.00000000000006
+350.7328894305849
  21
-101.98038999999999
+297.6312960000001
  31
 0.0
   0
@@ -11347,15 +11415,15 @@ LINE
   8
 0
  10
-453.0
+350.7328894305849
  20
-351.98039
+297.6312960000001
  30
 0.0
  11
-453.00000000000006
+350.7328894305849
  21
-251.98039
+298.631296
  31
 0.0
   0
@@ -11365,15 +11433,15 @@ LINE
   8
 0
  10
-453.0
+350.7328894305849
  20
-351.98039
+298.631296
  30
 0.0
  11
-453.0
+349.7328894305849
  21
-351.98039
+298.631296
  31
 0.0
   0
@@ -11383,15 +11451,15 @@ LINE
   8
 0
  10
-443.0
+329.73288943058486
  20
-351.98039
+301.1312960000001
  30
 0.0
  11
-453.0
+329.73288943058486
  21
-351.98039
+300.1312960000001
  31
 0.0
   0
@@ -11401,15 +11469,15 @@ LINE
   8
 0
  10
-443.00000000000006
+329.73288943058486
  20
-101.98038999999999
+300.1312960000001
  30
 0.0
  11
-443.0
+330.7328894305849
  21
-351.98039
+300.1312960000001
  31
 0.0
   0
@@ -11419,35 +11487,33 @@ LINE
   8
 0
  10
-453.00000000000006
+330.7328894305849
  20
-101.98038999999999
+300.1312960000001
  30
 0.0
  11
-443.00000000000006
+330.7328894305849
  21
-101.98038999999999
+301.1312960000001
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
 0
  10
-483.00000000000006
+330.7328894305849
  20
-201.98039
+301.1312960000001
  30
 0.0
  11
-483.00000000000006
+329.73288943058486
  21
-171.98039
+301.1312960000001
  31
 0.0
   0
@@ -11457,15 +11523,15 @@ LINE
   8
 0
  10
-543.0000000000001
+349.7328894305849
  20
-171.98039000000003
+301.1312960000001
  30
 0.0
  11
-483.00000000000006
+349.7328894305849
  21
-171.98039
+300.1312960000001
  31
 0.0
   0
@@ -11475,15 +11541,15 @@ LINE
   8
 0
  10
-543.0000000000001
+349.7328894305849
  20
-201.98039000000003
+300.1312960000001
  30
 0.0
  11
-543.0000000000001
+350.7328894305849
  21
-171.98039000000003
+300.1312960000001
  31
 0.0
   0
@@ -11493,15 +11559,15 @@ LINE
   8
 0
  10
-473.00000000000006
+350.7328894305849
  20
-201.98039
+300.1312960000001
  30
 0.0
  11
-483.00000000000006
+350.7328894305849
  21
-201.98039
+301.1312960000001
  31
 0.0
   0
@@ -11511,15 +11577,15 @@ LINE
   8
 0
  10
-473.00000000000006
+350.7328894305849
  20
-171.98039
+301.1312960000001
  30
 0.0
  11
-473.00000000000006
+349.7328894305849
  21
-201.98039
+301.1312960000001
  31
 0.0
   0
@@ -11529,15 +11595,15 @@ LINE
   8
 0
  10
-483.00000000000006
+329.73288943058486
  20
-171.98039
+303.631296
  30
 0.0
  11
-473.00000000000006
+329.73288943058486
  21
-171.98039
+302.631296
  31
 0.0
   0
@@ -11547,15 +11613,15 @@ LINE
   8
 0
  10
-543.0000000000001
+329.73288943058486
  20
-191.98039000000003
+302.631296
  30
 0.0
  11
-543.0000000000001
+330.7328894305849
  21
-201.98039000000003
+302.631296
  31
 0.0
   0
@@ -11565,15 +11631,15 @@ LINE
   8
 0
  10
-573.0
+330.7328894305849
  20
-191.98039000000003
+302.631296
  30
 0.0
  11
-543.0000000000001
+330.7328894305849
  21
-191.98039000000003
+303.631296
  31
 0.0
   0
@@ -11583,15 +11649,15 @@ LINE
   8
 0
  10
-573.0
+330.7328894305849
  20
-201.98039000000003
+303.631296
  30
 0.0
  11
-573.0
+329.73288943058486
  21
-191.98039000000003
+303.631296
  31
 0.0
   0
@@ -11601,15 +11667,15 @@ LINE
   8
 0
  10
-578.1096961561617
+349.7328894305849
  20
-90.40140539540558
+303.631296
  30
 0.0
  11
-577.1416653841894
+349.7328894305849
  21
-92.28199956288073
+302.631296
  31
 0.0
   0
@@ -11619,15 +11685,15 @@ LINE
   8
 0
  10
-577.1416653841894
+349.7328894305849
  20
-92.28199956288073
+302.631296
  30
 0.0
  11
-576.6971049716511
+350.7328894305849
  21
-92.05316329039796
+302.631296
  31
 0.0
   0
@@ -11637,15 +11703,15 @@ LINE
   8
 0
  10
-576.6971049716511
+350.7328894305849
  20
-92.05316329039796
+302.631296
  30
 0.0
  11
-577.6651357436235
+350.7328894305849
  21
-90.17256912292281
+303.631296
  31
 0.0
   0
@@ -11655,15 +11721,15 @@ LINE
   8
 0
  10
-577.6651357436235
+350.7328894305849
  20
-90.17256912292281
+303.631296
  30
 0.0
  11
-578.1096961561617
+349.7328894305849
  21
-90.40140539540558
+303.631296
  31
 0.0
   0
@@ -11673,15 +11739,15 @@ LINE
   8
 0
  10
-571.7886625913752
+329.73288943058486
  20
-98.75015691033362
+306.1312960000001
  30
 0.0
  11
-572.5962208637918
+329.73288943058486
  21
-98.75015691033362
+305.1312960000001
  31
 0.0
   0
@@ -11691,15 +11757,15 @@ LINE
   8
 0
  10
-572.5962208637918
+329.73288943058486
  20
-98.75015691033362
+305.1312960000001
  30
 0.0
  11
-572.5962208637918
+330.7328894305849
  21
-100.36527345516681
+305.1312960000001
  31
 0.0
   0
@@ -11709,15 +11775,15 @@ LINE
   8
 0
  10
-572.5962208637918
+330.7328894305849
  20
-100.36527345516681
+305.1312960000001
  30
 0.0
  11
-571.7886625913752
+330.7328894305849
  21
-100.36527345516681
+306.1312960000001
  31
 0.0
   0
@@ -11727,15 +11793,15 @@ LINE
   8
 0
  10
-591.6963076508192
+330.7328894305849
  20
-368.7583986679128
+306.1312960000001
  30
 0.0
  11
-596.5816367092771
+329.73288943058486
  21
-370.5116813994232
+306.1312960000001
  31
 0.0
   0
@@ -11745,15 +11811,15 @@ LINE
   8
 0
  10
-596.5816367092771
+349.7328894305849
  20
-370.5116813994232
+306.1312960000001
  30
 0.0
  11
-596.4127406118731
+349.7328894305849
  21
-370.98229175659964
+305.1312960000001
  31
 0.0
   0
@@ -11763,15 +11829,15 @@ LINE
   8
 0
  10
-596.4127406118731
+349.7328894305849
  20
-370.98229175659964
+305.1312960000001
  30
 0.0
  11
-591.5274115534152
+350.7328894305849
  21
-369.2290090250893
+305.1312960000001
  31
 0.0
   0
@@ -11781,15 +11847,15 @@ LINE
   8
 0
  10
-591.5274115534152
+350.7328894305849
  20
-369.2290090250893
+305.1312960000001
  30
 0.0
  11
-591.6963076508192
+350.7328894305849
  21
-368.7583986679128
+306.1312960000001
  31
 0.0
   0
@@ -11799,15 +11865,15 @@ LINE
   8
 0
  10
-649.418363290723
+350.7328894305849
  20
-370.5116813994232
+306.1312960000001
  30
 0.0
  11
-654.3036923491809
+349.7328894305849
  21
-368.7583986679128
+306.1312960000001
  31
 0.0
   0
@@ -11817,15 +11883,15 @@ LINE
   8
 0
  10
-654.3036923491809
+329.73288943058486
  20
-368.7583986679128
+308.6312960000001
  30
 0.0
  11
-654.4725884465847
+329.73288943058486
  21
-369.2290090250893
+307.631296
  31
 0.0
   0
@@ -11835,15 +11901,15 @@ LINE
   8
 0
  10
-654.4725884465847
+329.73288943058486
  20
-369.2290090250893
+307.631296
  30
 0.0
  11
-649.587259388127
+330.7328894305849
  21
-370.98229175659964
+307.631296
  31
 0.0
   0
@@ -11853,15 +11919,15 @@ LINE
   8
 0
  10
-649.587259388127
+330.7328894305849
  20
-370.98229175659964
+307.631296
  30
 0.0
  11
-649.418363290723
+330.7328894305849
  21
-370.5116813994232
+308.6312960000001
  31
 0.0
   0
@@ -11871,15 +11937,15 @@ LINE
   8
 0
  10
-676.5178135961846
+330.7328894305849
  20
-361.3612262564921
+308.6312960000001
  30
 0.0
  11
-674.1726045320615
+329.73288943058486
  21
-361.3612262564921
+308.6312960000001
  31
 0.0
   0
@@ -11889,15 +11955,15 @@ LINE
   8
 0
  10
-674.1726045320615
+349.7328894305849
  20
-361.3612262564921
+308.6312960000001
  30
 0.0
  11
-674.1726045320615
+349.7328894305849
  21
-356.6708081282461
+307.631296
  31
 0.0
   0
@@ -11907,15 +11973,15 @@ LINE
   8
 0
  10
-674.1726045320615
+349.7328894305849
  20
-356.6708081282461
+307.631296
  30
 0.0
  11
-676.5178135961846
+350.7328894305849
  21
-356.6708081282461
+307.631296
  31
 0.0
   0
@@ -11925,15 +11991,15 @@ LINE
   8
 0
  10
-665.2500000000001
+350.7328894305849
  20
-140.69192846153842
+307.631296
  30
 0.0
  11
-665.2500000000001
+350.7328894305849
  21
-120.9611592307692
+308.6312960000001
  31
 0.0
   0
@@ -11943,15 +12009,15 @@ LINE
   8
 0
  10
-665.2500000000001
+350.7328894305849
  20
-120.9611592307692
+308.6312960000001
  30
 0.0
  11
-665.7500000000001
+349.7328894305849
  21
-120.9611592307692
+308.6312960000001
  31
 0.0
   0
@@ -11961,15 +12027,15 @@ LINE
   8
 0
  10
-665.7500000000001
+329.73288943058486
  20
-120.9611592307692
+311.1312960000001
  30
 0.0
  11
-665.7500000000001
+329.73288943058486
  21
-140.69192846153842
+310.1312960000001
  31
 0.0
   0
@@ -11979,15 +12045,15 @@ LINE
   8
 0
  10
-665.7500000000001
+329.73288943058486
  20
-140.69192846153842
+310.1312960000001
  30
 0.0
  11
-665.2500000000001
+330.7328894305849
  21
-140.69192846153842
+310.1312960000001
  31
 0.0
   0
@@ -11997,15 +12063,15 @@ LINE
   8
 0
  10
-665.2500000000001
+330.7328894305849
  20
-188.76885153846155
+310.1312960000001
  30
 0.0
  11
-665.2500000000001
+330.7328894305849
  21
-169.0380823076923
+311.1312960000001
  31
 0.0
   0
@@ -12015,15 +12081,15 @@ LINE
   8
 0
  10
-665.2500000000001
+330.7328894305849
  20
-169.0380823076923
+311.1312960000001
  30
 0.0
  11
-665.7500000000001
+329.73288943058486
  21
-169.0380823076923
+311.1312960000001
  31
 0.0
   0
@@ -12033,15 +12099,15 @@ LINE
   8
 0
  10
-665.7500000000001
+349.7328894305849
  20
-169.0380823076923
+311.1312960000001
  30
 0.0
  11
-665.7500000000001
+349.7328894305849
  21
-188.76885153846155
+310.1312960000001
  31
 0.0
   0
@@ -12051,15 +12117,15 @@ LINE
   8
 0
  10
-665.7500000000001
+349.7328894305849
  20
-188.76885153846155
+310.1312960000001
  30
 0.0
  11
-665.2500000000001
+350.7328894305849
  21
-188.76885153846155
+310.1312960000001
  31
 0.0
   0
@@ -12069,15 +12135,15 @@ LINE
   8
 0
  10
-665.2500000000001
+350.7328894305849
  20
-236.84577461538464
+310.1312960000001
  30
 0.0
  11
-665.2500000000001
+350.7328894305849
  21
-217.11500538461536
+311.1312960000001
  31
 0.0
   0
@@ -12087,15 +12153,15 @@ LINE
   8
 0
  10
-665.2500000000001
+350.7328894305849
  20
-217.11500538461536
+311.1312960000001
  30
 0.0
  11
-665.7500000000001
+349.7328894305849
  21
-217.1150053846154
+311.1312960000001
  31
 0.0
   0
@@ -12105,15 +12171,15 @@ LINE
   8
 0
  10
-665.7500000000001
+329.73288943058486
  20
-217.1150053846154
+313.6312960000001
  30
 0.0
  11
-665.7500000000001
+329.73288943058486
  21
-236.84577461538464
+312.631296
  31
 0.0
   0
@@ -12123,15 +12189,15 @@ LINE
   8
 0
  10
-665.7500000000001
+329.73288943058486
  20
-236.84577461538464
+312.631296
  30
 0.0
  11
-665.2500000000001
+330.7328894305849
  21
-236.84577461538464
+312.631296
  31
 0.0
   0
@@ -12141,15 +12207,15 @@ LINE
   8
 0
  10
-665.2500000000001
+330.7328894305849
  20
-284.9226976923077
+312.631296
  30
 0.0
  11
-665.2500000000001
+330.7328894305849
  21
-265.19192846153845
+313.6312960000001
  31
 0.0
   0
@@ -12159,15 +12225,15 @@ LINE
   8
 0
  10
-665.2500000000001
+330.7328894305849
  20
-265.19192846153845
+313.6312960000001
  30
 0.0
  11
-665.7500000000001
+329.73288943058486
  21
-265.19192846153845
+313.6312960000001
  31
 0.0
   0
@@ -12177,15 +12243,15 @@ LINE
   8
 0
  10
-665.7500000000001
+349.7328894305849
  20
-265.19192846153845
+313.6312960000001
  30
 0.0
  11
-665.7500000000001
+349.7328894305849
  21
-284.9226976923077
+312.631296
  31
 0.0
   0
@@ -12195,15 +12261,15 @@ LINE
   8
 0
  10
-665.7500000000001
+349.7328894305849
  20
-284.9226976923077
+312.631296
  30
 0.0
  11
-665.2500000000001
+350.7328894305849
  21
-284.9226976923077
+312.631296
  31
 0.0
   0
@@ -12213,15 +12279,15 @@ LINE
   8
 0
  10
-665.2500000000001
+350.7328894305849
  20
-332.99962076923083
+312.631296
  30
 0.0
  11
-665.2500000000001
+350.7328894305849
  21
-313.26885153846155
+313.6312960000001
  31
 0.0
   0
@@ -12231,15 +12297,15 @@ LINE
   8
 0
  10
-665.2500000000001
+350.7328894305849
  20
-313.26885153846155
+313.6312960000001
  30
 0.0
  11
-665.7500000000001
+349.7328894305849
  21
-313.26885153846155
+313.6312960000001
  31
 0.0
   0
@@ -12249,15 +12315,15 @@ LINE
   8
 0
  10
-665.7500000000001
+329.73288943058486
  20
-313.26885153846155
+316.131296
  30
 0.0
  11
-665.7500000000001
+329.73288943058486
  21
-332.99962076923083
+315.1312960000001
  31
 0.0
   0
@@ -12267,15 +12333,15 @@ LINE
   8
 0
  10
-665.7500000000001
+329.73288943058486
  20
-332.99962076923083
+315.1312960000001
  30
 0.0
  11
-665.2500000000001
+330.7328894305849
  21
-332.99962076923083
+315.1312960000001
  31
 0.0
   0
@@ -12285,15 +12351,15 @@ LINE
   8
 0
  10
-668.8583346158109
+330.7328894305849
  20
-92.2819995628807
+315.1312960000001
  30
 0.0
  11
-667.8903038438383
+330.7328894305849
  21
-90.40140539540555
+316.131296
  31
 0.0
   0
@@ -12303,15 +12369,15 @@ LINE
   8
 0
  10
-667.8903038438383
+330.7328894305849
  20
-90.40140539540555
+316.131296
  30
 0.0
  11
-668.3348642563766
+329.73288943058486
  21
-90.17256912292278
+316.131296
  31
 0.0
   0
@@ -12321,15 +12387,15 @@ LINE
   8
 0
  10
-668.3348642563766
+349.7328894305849
  20
-90.17256912292278
+316.131296
  30
 0.0
  11
-669.3028950283492
+349.7328894305849
  21
-92.05316329039792
+315.1312960000001
  31
 0.0
   0
@@ -12339,15 +12405,15 @@ LINE
   8
 0
  10
-669.3028950283492
+349.7328894305849
  20
-92.05316329039792
+315.1312960000001
  30
 0.0
  11
-668.8583346158109
+350.7328894305849
  21
-92.2819995628807
+315.1312960000001
  31
 0.0
   0
@@ -12357,15 +12423,15 @@ LINE
   8
 0
  10
-674.2113374086251
+350.7328894305849
  20
-100.36527345516676
+315.1312960000001
  30
 0.0
  11
-673.4037791362085
+350.7328894305849
  21
-100.36527345516676
+316.131296
  31
 0.0
   0
@@ -12375,15 +12441,15 @@ LINE
   8
 0
  10
-673.4037791362085
+350.7328894305849
  20
-100.36527345516676
+316.131296
  30
 0.0
  11
-673.4037791362085
+349.7328894305849
  21
-98.75015691033356
+316.131296
  31
 0.0
   0
@@ -12393,15 +12459,15 @@ LINE
   8
 0
  10
-673.4037791362085
+329.73288943058486
  20
-98.75015691033356
+318.6312960000001
  30
 0.0
  11
-674.2113374086251
+329.73288943058486
  21
-98.75015691033356
+317.6312960000001
  31
 0.0
   0
@@ -12411,15 +12477,15 @@ LINE
   8
 0
  10
-569.4821864038155
+329.73288943058486
  20
-356.67080812824605
+317.6312960000001
  30
 0.0
  11
-571.8273954679385
+330.7328894305849
  21
-356.67080812824605
+317.6312960000001
  31
 0.0
   0
@@ -12429,15 +12495,15 @@ LINE
   8
 0
  10
-571.8273954679385
+330.7328894305849
  20
-356.67080812824605
+317.6312960000001
  30
 0.0
  11
-571.8273954679385
+330.7328894305849
  21
-361.3612262564921
+318.6312960000001
  31
 0.0
   0
@@ -12447,15 +12513,15 @@ LINE
   8
 0
  10
-571.8273954679385
+330.7328894305849
  20
-361.3612262564921
+318.6312960000001
  30
 0.0
  11
-569.4821864038155
+329.73288943058486
  21
-361.3612262564921
+318.6312960000001
  31
 0.0
   0
@@ -12465,15 +12531,15 @@ LINE
   8
 0
  10
-553.0000000000001
+349.7328894305849
  20
-259.48039
+318.6312960000001
  30
 0.0
  11
-553.0000000000001
+349.7328894305849
  21
-254.48039000000003
+317.6312960000001
  31
 0.0
   0
@@ -12483,15 +12549,15 @@ LINE
   8
 0
  10
-553.0000000000001
+349.7328894305849
  20
-254.48039000000003
+317.6312960000001
  30
 0.0
  11
-563.0
+350.7328894305849
  21
-254.48039000000003
+317.6312960000001
  31
 0.0
   0
@@ -12501,15 +12567,15 @@ LINE
   8
 0
  10
-563.0
+350.7328894305849
  20
-254.48039000000003
+317.6312960000001
  30
 0.0
  11
-563.0
+350.7328894305849
  21
-259.48039
+318.6312960000001
  31
 0.0
   0
@@ -12519,15 +12585,15 @@ LINE
   8
 0
  10
-490.75000000000006
+350.7328894305849
  20
-261.73039
+318.6312960000001
  30
 0.0
  11
-490.75000000000006
+349.7328894305849
  21
-272.23039000000006
+318.6312960000001
  31
 0.0
   0
@@ -12537,15 +12603,15 @@ LINE
   8
 0
  10
-490.75000000000006
+329.73288943058486
  20
-272.23039000000006
+321.131296
  30
 0.0
  11
-490.25000000000006
+329.73288943058486
  21
-272.23039000000006
+320.1312960000001
  31
 0.0
   0
@@ -12555,15 +12621,15 @@ LINE
   8
 0
  10
-490.25000000000006
+329.73288943058486
  20
-272.23039000000006
+320.1312960000001
  30
 0.0
  11
-490.25000000000006
+330.7328894305849
  21
-261.73039
+320.1312960000001
  31
 0.0
   0
@@ -12573,15 +12639,15 @@ LINE
   8
 0
  10
-490.25000000000006
+330.7328894305849
  20
-261.73039
+320.1312960000001
  30
 0.0
  11
-490.75000000000006
+330.7328894305849
  21
-261.73039
+321.131296
  31
 0.0
   0
@@ -12591,15 +12657,15 @@ LINE
   8
 0
  10
-535.2500000000001
+330.7328894305849
  20
-272.23039000000006
+321.131296
  30
 0.0
  11
-535.2500000000001
+329.73288943058486
  21
-261.73039
+321.131296
  31
 0.0
   0
@@ -12609,15 +12675,15 @@ LINE
   8
 0
  10
-535.2500000000001
+349.7328894305849
  20
-261.73039
+321.131296
  30
 0.0
  11
-535.7500000000001
+349.7328894305849
  21
-261.73039
+320.1312960000001
  31
 0.0
   0
@@ -12627,15 +12693,15 @@ LINE
   8
 0
  10
-535.7500000000001
+349.7328894305849
  20
-261.73039
+320.1312960000001
  30
 0.0
  11
-535.7500000000001
+350.7328894305849
  21
-272.23039000000006
+320.1312960000001
  31
 0.0
   0
@@ -12645,15 +12711,15 @@ LINE
   8
 0
  10
-535.7500000000001
+350.7328894305849
  20
-272.23039000000006
+320.1312960000001
  30
 0.0
  11
-535.2500000000001
+350.7328894305849
  21
-272.23039000000006
+321.131296
  31
 0.0
   0
@@ -12663,15 +12729,15 @@ LINE
   8
 0
  10
-473.25
+350.7328894305849
  20
-209.73039
+321.131296
  30
 0.0
  11
-462.75000000000006
+349.7328894305849
  21
-209.73039
+321.131296
  31
 0.0
   0
@@ -12681,15 +12747,15 @@ LINE
   8
 0
  10
-462.75000000000006
+329.73288943058486
  20
-209.73039
+323.6312960000001
  30
 0.0
  11
-462.75000000000006
+329.73288943058486
  21
-209.23038999999997
+322.6312960000001
  31
 0.0
   0
@@ -12699,15 +12765,15 @@ LINE
   8
 0
  10
-462.75000000000006
+329.73288943058486
  20
-209.23038999999997
+322.6312960000001
  30
 0.0
  11
-473.25
+330.7328894305849
  21
-209.23038999999997
+322.6312960000001
  31
 0.0
   0
@@ -12717,15 +12783,15 @@ LINE
   8
 0
  10
-473.25
+330.7328894305849
  20
-209.23038999999997
+322.6312960000001
  30
 0.0
  11
-473.25
+330.7328894305849
  21
-209.73039
+323.6312960000001
  31
 0.0
   0
@@ -12735,15 +12801,15 @@ LINE
   8
 0
  10
-463.00000000000006
+330.7328894305849
  20
-259.48039
+323.6312960000001
  30
 0.0
  11
-463.00000000000006
+329.73288943058486
  21
-254.48039
+323.6312960000001
  31
 0.0
   0
@@ -12753,15 +12819,15 @@ LINE
   8
 0
  10
-463.00000000000006
+349.7328894305849
  20
-254.48039
+323.6312960000001
  30
 0.0
  11
-473.00000000000006
+349.7328894305849
  21
-254.48039
+322.6312960000001
  31
 0.0
   0
@@ -12771,15 +12837,15 @@ LINE
   8
 0
  10
-473.00000000000006
+349.7328894305849
  20
-254.48039
+322.6312960000001
  30
 0.0
  11
-473.00000000000006
+350.7328894305849
  21
-259.48039
+322.6312960000001
  31
 0.0
   0
@@ -12789,15 +12855,15 @@ LINE
   8
 0
  10
-445.50000000000006
+350.7328894305849
  20
-121.21115923076921
+322.6312960000001
  30
 0.0
  11
-445.50000000000006
+350.7328894305849
  21
-116.21115923076921
+323.6312960000001
  31
 0.0
   0
@@ -12807,15 +12873,15 @@ LINE
   8
 0
  10
-445.50000000000006
+350.7328894305849
  20
-116.21115923076921
+323.6312960000001
  30
 0.0
  11
-450.5
+349.7328894305849
  21
-121.21115923076921
+323.6312960000001
  31
 0.0
   0
@@ -12825,15 +12891,15 @@ LINE
   8
 0
  10
-450.5
+329.73288943058486
  20
-121.21115923076921
+326.131296
  30
 0.0
  11
-450.5
+329.73288943058486
  21
-140.44192846153842
+325.131296
  31
 0.0
   0
@@ -12843,15 +12909,15 @@ LINE
   8
 0
  10
-450.5
+329.73288943058486
  20
-140.44192846153842
+325.131296
  30
 0.0
  11
-445.50000000000006
+330.7328894305849
  21
-145.44192846153842
+325.131296
  31
 0.0
   0
@@ -12861,15 +12927,15 @@ LINE
   8
 0
  10
-445.50000000000006
+330.7328894305849
  20
-145.44192846153842
+325.131296
  30
 0.0
  11
-445.50000000000006
+330.7328894305849
  21
-140.44192846153842
+326.131296
  31
 0.0
   0
@@ -12879,15 +12945,15 @@ LINE
   8
 0
  10
-445.50000000000006
+330.7328894305849
  20
-169.2880823076923
+326.131296
  30
 0.0
  11
-445.50000000000006
+329.73288943058486
  21
-164.2880823076923
+326.131296
  31
 0.0
   0
@@ -12897,15 +12963,15 @@ LINE
   8
 0
  10
-445.50000000000006
+349.7328894305849
  20
-164.2880823076923
+326.131296
  30
 0.0
  11
-450.5
+349.7328894305849
  21
-169.2880823076923
+325.131296
  31
 0.0
   0
@@ -12915,15 +12981,15 @@ LINE
   8
 0
  10
-450.5
+349.7328894305849
  20
-169.2880823076923
+325.131296
  30
 0.0
  11
-450.5
+350.7328894305849
  21
-188.51885153846152
+325.131296
  31
 0.0
   0
@@ -12933,15 +12999,15 @@ LINE
   8
 0
  10
-450.5
+350.7328894305849
  20
-188.51885153846152
+325.131296
  30
 0.0
  11
-445.50000000000006
+350.7328894305849
  21
-193.51885153846152
+326.131296
  31
 0.0
   0
@@ -12951,15 +13017,15 @@ LINE
   8
 0
  10
-445.50000000000006
+350.7328894305849
  20
-193.51885153846152
+326.131296
  30
 0.0
  11
-445.50000000000006
+349.7328894305849
  21
-188.51885153846152
+326.131296
  31
 0.0
   0
@@ -12969,15 +13035,15 @@ LINE
   8
 0
  10
-445.50000000000006
+329.73288943058486
  20
-217.36500538461536
+328.6312960000001
  30
 0.0
  11
-445.50000000000006
+329.73288943058486
  21
-212.36500538461536
+327.6312960000001
  31
 0.0
   0
@@ -12987,15 +13053,15 @@ LINE
   8
 0
  10
-445.50000000000006
+329.73288943058486
  20
-212.36500538461536
+327.6312960000001
  30
 0.0
  11
-450.5
+330.7328894305849
  21
-217.36500538461536
+327.6312960000001
  31
 0.0
   0
@@ -13005,15 +13071,15 @@ LINE
   8
 0
  10
-450.5
+330.7328894305849
  20
-217.36500538461536
+327.6312960000001
  30
 0.0
  11
-450.5
+330.7328894305849
  21
-236.5957746153846
+328.6312960000001
  31
 0.0
   0
@@ -13023,15 +13089,15 @@ LINE
   8
 0
  10
-450.5
+330.7328894305849
  20
-236.5957746153846
+328.6312960000001
  30
 0.0
  11
-445.50000000000006
+329.73288943058486
  21
-241.5957746153846
+328.6312960000001
  31
 0.0
   0
@@ -13041,15 +13107,15 @@ LINE
   8
 0
  10
-445.50000000000006
+348.73288943058486
  20
-241.5957746153846
+329.6312960000001
  30
 0.0
  11
-445.50000000000006
+348.73288943058486
  21
-236.5957746153846
+326.631296
  31
 0.0
   0
@@ -13059,15 +13125,15 @@ LINE
   8
 0
  10
-445.50000000000006
+348.73288943058486
  20
-265.44192846153845
+326.631296
  30
 0.0
  11
-445.50000000000006
+351.7328894305849
  21
-260.44192846153845
+326.631296
  31
 0.0
   0
@@ -13077,15 +13143,15 @@ LINE
   8
 0
  10
-445.50000000000006
+351.7328894305849
  20
-260.44192846153845
+326.631296
  30
 0.0
  11
-450.5
+351.7328894305849
  21
-265.44192846153845
+329.6312960000001
  31
 0.0
   0
@@ -13095,15 +13161,15 @@ LINE
   8
 0
  10
-450.5
+351.7328894305849
  20
-265.44192846153845
+329.6312960000001
  30
 0.0
  11
-450.5
+348.73288943058486
  21
-284.6726976923077
+329.6312960000001
  31
 0.0
   0
@@ -13113,15 +13179,15 @@ LINE
   8
 0
  10
-450.5
+344.4828894305849
  20
-284.6726976923077
+286.6312960000001
  30
 0.0
  11
-445.50000000000006
+335.9828894305849
  21
-289.6726976923077
+286.6312960000001
  31
 0.0
   0
@@ -13131,15 +13197,15 @@ LINE
   8
 0
  10
-445.50000000000006
+335.9828894305849
  20
-289.6726976923077
+286.6312960000001
  30
 0.0
  11
-445.50000000000006
+335.9828894305849
  21
-284.6726976923077
+286.1312960000001
  31
 0.0
   0
@@ -13149,15 +13215,15 @@ LINE
   8
 0
  10
-445.50000000000006
+335.9828894305849
  20
-313.51885153846155
+286.1312960000001
  30
 0.0
  11
-445.50000000000006
+344.4828894305849
  21
-308.51885153846155
+286.1312960000001
  31
 0.0
   0
@@ -13167,15 +13233,15 @@ LINE
   8
 0
  10
-445.50000000000006
+344.4828894305849
  20
-308.51885153846155
+286.1312960000001
  30
 0.0
  11
-450.5
+344.4828894305849
  21
-313.51885153846155
+286.6312960000001
  31
 0.0
   0
@@ -13185,15 +13251,15 @@ LINE
   8
 0
  10
-450.5
+335.9828894305849
  20
-313.51885153846155
+334.381296
  30
 0.0
  11
-450.5
+344.4828894305849
  21
-332.7496207692308
+334.381296
  31
 0.0
   0
@@ -13203,15 +13269,15 @@ LINE
   8
 0
  10
-450.5
+344.4828894305849
  20
-332.7496207692308
+334.381296
  30
 0.0
  11
-445.50000000000006
+344.4828894305849
  21
-337.7496207692308
+334.881296
  31
 0.0
   0
@@ -13221,15 +13287,15 @@ LINE
   8
 0
  10
-445.50000000000006
+344.4828894305849
  20
-337.7496207692308
+334.881296
  30
 0.0
  11
-445.50000000000006
+335.9828894305849
  21
-332.7496207692308
+334.881296
  31
 0.0
   0
@@ -13239,15 +13305,15 @@ LINE
   8
 0
  10
-535.2500000000001
+335.9828894305849
  20
-192.23039000000003
+334.881296
  30
 0.0
  11
-535.2500000000001
+335.9828894305849
  21
-181.73039
+334.381296
  31
 0.0
   0
@@ -13257,15 +13323,15 @@ LINE
   8
 0
  10
-535.2500000000001
+320.73288943058486
  20
-181.73039
+289.9722050909092
  30
 0.0
  11
-535.7500000000001
+325.73288943058486
  21
-181.73039
+289.9722050909092
  31
 0.0
   0
@@ -13275,15 +13341,15 @@ LINE
   8
 0
  10
-535.7500000000001
+325.73288943058486
  20
-181.73039
+289.9722050909092
  30
 0.0
  11
-535.7500000000001
+325.73288943058486
  21
-192.23039000000003
+301.0631141818182
  31
 0.0
   0
@@ -13293,15 +13359,15 @@ LINE
   8
 0
  10
-535.7500000000001
+325.73288943058486
  20
-192.23039000000003
+301.0631141818182
  30
 0.0
  11
-535.2500000000001
+320.73288943058486
  21
-192.23039000000003
+301.0631141818182
  31
 0.0
   0
@@ -13311,15 +13377,15 @@ LINE
   8
 0
  10
-475.50000000000006
+320.73288943058486
  20
-181.98038999999997
+317.6994778181819
  30
 0.0
  11
-480.50000000000006
+325.73288943058486
  21
-181.98038999999997
+317.6994778181819
  31
 0.0
   0
@@ -13329,15 +13395,15 @@ LINE
   8
 0
  10
-480.50000000000006
+325.73288943058486
  20
-181.98038999999997
+317.6994778181819
  30
 0.0
  11
-480.50000000000006
+325.73288943058486
  21
-191.98039
+328.790386909091
  31
 0.0
   0
@@ -13347,15 +13413,15 @@ LINE
   8
 0
  10
-480.50000000000006
+325.73288943058486
  20
-191.98039
+328.790386909091
  30
 0.0
  11
-475.50000000000006
+320.73288943058486
  21
-191.98039
+328.790386909091
  31
 0.0
   0
@@ -13365,15 +13431,15 @@ LINE
   8
 0
  10
-563.0
+345.9828894305849
  20
-194.48039000000003
+262.881296
  30
 0.0
  11
-563.0
+349.4828894305849
  21
-199.48039000000003
+262.881296
  31
 0.0
   0
@@ -13383,15 +13449,15 @@ LINE
   8
 0
  10
-563.0
+349.4828894305849
  20
-199.48039000000003
+262.881296
  30
 0.0
  11
-553.0000000000001
+349.4828894305849
  21
-199.48039000000003
+270.8812960000001
  31
 0.0
   0
@@ -13401,15 +13467,15 @@ LINE
   8
 0
  10
-553.0000000000001
+349.4828894305849
  20
-199.48039000000003
+270.8812960000001
  30
 0.0
  11
-553.0000000000001
+345.9828894305849
  21
-194.48039000000003
+270.8812960000001
  31
 0.0
   0
diff --git a/rocolib/output/HouseboatWithServoMountAndStack/tree.png b/rocolib/output/HouseboatWithServoMountAndStack/tree.png
index 762b7e3e3abd746b4e02fa5dfdb9531c0bad2248..e83e5ea243261ffef90c46d5b42d8165bc63f205 100644
Binary files a/rocolib/output/HouseboatWithServoMountAndStack/tree.png and b/rocolib/output/HouseboatWithServoMountAndStack/tree.png differ