diff --git a/rocolib/builders/boat/DoubleServoMountBuilder.py b/rocolib/builders/boat/DoubleServoMountBuilder.py new file mode 100644 index 0000000000000000000000000000000000000000..7e1c6fdf83fd64c67aeb531e873a504e6d581d88 --- /dev/null +++ b/rocolib/builders/boat/DoubleServoMountBuilder.py @@ -0,0 +1,43 @@ +from rocolib.api.components.Component import Component + +c = Component() + +c.addParameter("width", 90, paramType="length") +c.addParameter("depth", 70, paramType="length") +# c.addConstraint(("boat", "boat.width"), "width") +# c.addConstraint(("boat", "boat.depth"), "depth") + +c.addSubcomponent("lServoMount", "SideServoMount", inherit=("depth","length")) +c.inheritAllInterfaces("lServoMount") +c.addSubcomponent("rServoMount", "SideServoMount", inherit=("depth","length")) +c.inheritAllInterfaces("rServoMount") +#Bottom belt +c.addSubcomponent("lservodown", "Rectangle") +c.addConstraint(("lservodown", "w"), "lServoMount.depth") +c.addConstraint(("lservodown", "l"), (("depth"), "lServoMount.length"), "x[0] - x[1]") #DEPTH OF BOAT - 3 for the tab + +c.addSubcomponent("lservoacross", "Rectangle") +c.addConstraint(("lservoacross", "w"), "lServoMount.depth") +c.addConstraint(("lservoacross", "l"), ("width"), "x * 0.5") #DEPTH OF BOAT - 3 for the tab + +c.addConnection(("lservodown", "r"),("lservoacross", "r"), angle=-90) +c.addConnection(("lservodown", "l"), ("lServoMount", "leftInterface")) + +c.addSubcomponent("rservodown", "Rectangle") +c.addConstraint(("rservodown", "w"), "rServoMount.depth") +c.addConstraint(("rservodown", "l"), (("depth"), "rServoMount.length"), "x[0] - x[1]") #DEPTH OF BOAT - 3 for the tab + +c.addSubcomponent("rservoacross", "Rectangle") +c.addConstraint(("rservoacross", "w"), "rServoMount.depth") +c.addConstraint(("rservoacross", "l"), ("width"), "x * 0.5") #DEPTH OF BOAT - 3 for the tab + +c.addConnection(("rservodown", "r"),("rservoacross", "r"), angle=-90) +c.addConnection(("rservodown", "l"), ("rServoMount", "rightInterface")) + +c.addConnection(("lservoacross", "l"), ("rservoacross", "l"), tabWidth=5) + +c.inheritInterface("lServoInterface", ("lServoMount", "rightInterface")) +c.inheritInterface("rServoInterface", ("rServoMount", "leftInterface")) + +# +c.toLibrary("DoubleServoMount") diff --git a/rocolib/builders/boat/HouseboatWithServoMountAndStack.py b/rocolib/builders/boat/HouseboatWithServoMountAndStack.py new file mode 100644 index 0000000000000000000000000000000000000000..1d3416317e52abba1aa5738ae366c05ee5459914 --- /dev/null +++ b/rocolib/builders/boat/HouseboatWithServoMountAndStack.py @@ -0,0 +1,23 @@ +from rocolib.api.components.Component import Component +from rocolib.api.Function import Function + +c = Component() + +c.addSubcomponent("boatwithservo", "BoatWithServoMount", inherit=True, prefix=None) +c.inheritAllInterfaces("boatwithservo") +c.addSubcomponent("espStack", "StackMount", inherit=True) +c.inheritAllInterfaces("espStack") + +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.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.toLibrary("BoatWithServoMountAndStack") diff --git a/rocolib/builders/boat/ServoMountAndStackBuilder.py b/rocolib/builders/boat/ServoMountAndStackBuilder.py new file mode 100644 index 0000000000000000000000000000000000000000..9ec70810daec9d34194880a8fda55e2f106de24f --- /dev/null +++ b/rocolib/builders/boat/ServoMountAndStackBuilder.py @@ -0,0 +1,37 @@ +from rocolib.api.components.Component import Component +from rocolib.api.Function import Function + +c = Component() + +c.addSubcomponent("doubleServoMount", "DoubleServoMount", inherit=True, prefix=None) +c.inheritAllInterfaces("doubleServoMount") +c.addSubcomponent("espStack", "StackMount", inherit=True) +#c.inheritAllInterfaces("espStack") + +c.addSubcomponent("portsplit", "SplitEdge") +c.inheritAllInterfaces("portsplit") +c.addConstConstraint(("portsplit", "toplength"), (168,)) #(("doubleServoMount", "lServoMount.depth"), ("espStack", "stack.length")), "(x[0] + x[1],)" +c.addConstConstraint(("portsplit", "botlength"), (61, 10, 24, 73)) #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(("doubleServoMount", "lServoInterface"), ("portsplit", "botedge2")) #both face the same direction +c.addConnection(("espStack", "leftArmInterface"), ("portsplit", "botedge0")) #both face the same direction + +c.addSubcomponent("starsplit", "SplitEdge") +c.inheritAllInterfaces("starsplit") +c.addConstConstraint(("starsplit", "toplength"), (168,)) +c.addConstConstraint(("starsplit", "botlength"), (73, 24, 10, 61)) #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(("doubleServoMount", "rServoInterface"), ("starsplit", "botedge1")) +c.addConnection(("espStack", "rightArmInterface"), ("starsplit", "botedge3"), tabWidth=10) + +# 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.inheritInterface("lmountandservosplit", ("portsplit","toplength")) +# c.inheritInterface("rmountandservosplit", ("starsplit","toplength")) +#c.inheritInterface("espMountTab", ("espStack", "rightArmInterface")) #need to add this onto the boat, not the splitEdge + +c.toLibrary("ServoMountAndStack") diff --git a/rocolib/library/DoubleServoMount.yaml b/rocolib/library/DoubleServoMount.yaml new file mode 100644 index 0000000000000000000000000000000000000000..73a4d07747479afb05183f5997d29017e30209c7 --- /dev/null +++ b/rocolib/library/DoubleServoMount.yaml @@ -0,0 +1,145 @@ +connections: + connection0: + - - lservodown + - r + - - lservoacross + - r + - angle: -90 + connection1: + - - lservodown + - l + - - lServoMount + - leftInterface + - {} + connection2: + - - rservodown + - r + - - rservoacross + - r + - angle: -90 + connection3: + - - rservodown + - l + - - rServoMount + - rightInterface + - {} + connection4: + - - lservoacross + - l + - - rservoacross + - l + - tabWidth: 5 +interfaces: + lServoInterface: + interface: rightInterface + subcomponent: lServoMount + lServoMount.leftInterface: + interface: leftInterface + subcomponent: lServoMount + lServoMount.rightInterface: + interface: rightInterface + subcomponent: lServoMount + rServoInterface: + interface: leftInterface + subcomponent: rServoMount + rServoMount.leftInterface: + interface: leftInterface + subcomponent: rServoMount + rServoMount.rightInterface: + interface: rightInterface + subcomponent: rServoMount +parameters: + depth: + defaultValue: 70 + spec: + minValue: 0 + units: mm + valueType: (float, int) + lServoMount.depth: + defaultValue: 24 + spec: + minValue: 0 + units: mm + valueType: (float, int) + lServoMount.length: + defaultValue: 34 + spec: + minValue: 0 + units: mm + valueType: (float, int) + rServoMount.depth: + defaultValue: 24 + spec: + minValue: 0 + units: mm + valueType: (float, int) + rServoMount.length: + defaultValue: 34 + spec: + minValue: 0 + units: mm + valueType: (float, int) + width: + defaultValue: 90 + spec: + minValue: 0 + units: mm + valueType: (float, int) +source: ../builders/boat/DoubleServoMountBuilder.py +subcomponents: + lServoMount: + classname: SideServoMount + kwargs: {} + parameters: + depth: + parameter: lServoMount.depth + length: + parameter: lServoMount.length + lservoacross: + classname: Rectangle + kwargs: {} + parameters: + l: + function: x * 0.5 + parameter: width + w: + parameter: lServoMount.depth + lservodown: + classname: Rectangle + kwargs: {} + parameters: + l: + function: x[0] - x[1] + parameter: + - depth + - lServoMount.length + w: + parameter: lServoMount.depth + rServoMount: + classname: SideServoMount + kwargs: {} + parameters: + depth: + parameter: rServoMount.depth + length: + parameter: rServoMount.length + rservoacross: + classname: Rectangle + kwargs: {} + parameters: + l: + function: x * 0.5 + parameter: width + w: + parameter: rServoMount.depth + rservodown: + classname: Rectangle + kwargs: {} + parameters: + l: + function: x[0] - x[1] + parameter: + - depth + - rServoMount.length + w: + parameter: rServoMount.depth diff --git a/rocolib/library/ServoMountAndStack.yaml b/rocolib/library/ServoMountAndStack.yaml new file mode 100644 index 0000000000000000000000000000000000000000..b22a8b869859341fa1a28e0cc31bcae1bf2ba312 --- /dev/null +++ b/rocolib/library/ServoMountAndStack.yaml @@ -0,0 +1,1472 @@ +connections: + connection0: + - - doubleServoMount + - lServoInterface + - - portsplit + - botedge2 + - {} + connection1: + - - espStack + - leftArmInterface + - - portsplit + - botedge0 + - {} + connection2: + - - doubleServoMount + - rServoInterface + - - starsplit + - botedge1 + - {} + connection3: + - - espStack + - rightArmInterface + - - starsplit + - botedge3 + - tabWidth: 10 +interfaces: + doubleServoMount.lServoInterface: + interface: lServoInterface + subcomponent: doubleServoMount + doubleServoMount.lServoMount.leftInterface: + interface: lServoMount.leftInterface + subcomponent: doubleServoMount + doubleServoMount.lServoMount.rightInterface: + interface: lServoMount.rightInterface + subcomponent: doubleServoMount + doubleServoMount.rServoInterface: + interface: rServoInterface + subcomponent: doubleServoMount + doubleServoMount.rServoMount.leftInterface: + interface: rServoMount.leftInterface + subcomponent: doubleServoMount + doubleServoMount.rServoMount.rightInterface: + interface: rServoMount.rightInterface + subcomponent: doubleServoMount + portsplit.botedge0: + interface: botedge0 + subcomponent: portsplit + portsplit.botedge1: + interface: botedge1 + subcomponent: portsplit + portsplit.botedge10: + interface: botedge10 + subcomponent: portsplit + portsplit.botedge11: + interface: botedge11 + subcomponent: portsplit + portsplit.botedge12: + interface: botedge12 + subcomponent: portsplit + portsplit.botedge13: + interface: botedge13 + subcomponent: portsplit + portsplit.botedge14: + interface: botedge14 + subcomponent: portsplit + portsplit.botedge15: + interface: botedge15 + subcomponent: portsplit + portsplit.botedge16: + interface: botedge16 + subcomponent: portsplit + portsplit.botedge17: + interface: botedge17 + subcomponent: portsplit + portsplit.botedge18: + interface: botedge18 + subcomponent: portsplit + portsplit.botedge19: + interface: botedge19 + subcomponent: portsplit + portsplit.botedge2: + interface: botedge2 + subcomponent: portsplit + portsplit.botedge20: + interface: botedge20 + subcomponent: portsplit + portsplit.botedge21: + interface: botedge21 + subcomponent: portsplit + portsplit.botedge22: + interface: botedge22 + subcomponent: portsplit + portsplit.botedge23: + interface: botedge23 + subcomponent: portsplit + portsplit.botedge24: + interface: botedge24 + subcomponent: portsplit + portsplit.botedge25: + interface: botedge25 + subcomponent: portsplit + portsplit.botedge26: + interface: botedge26 + subcomponent: portsplit + portsplit.botedge27: + interface: botedge27 + subcomponent: portsplit + portsplit.botedge28: + interface: botedge28 + subcomponent: portsplit + portsplit.botedge29: + interface: botedge29 + subcomponent: portsplit + portsplit.botedge3: + interface: botedge3 + subcomponent: portsplit + portsplit.botedge30: + interface: botedge30 + subcomponent: portsplit + portsplit.botedge31: + interface: botedge31 + subcomponent: portsplit + portsplit.botedge32: + interface: botedge32 + subcomponent: portsplit + portsplit.botedge33: + interface: botedge33 + subcomponent: portsplit + portsplit.botedge34: + interface: botedge34 + subcomponent: portsplit + portsplit.botedge35: + interface: botedge35 + subcomponent: portsplit + portsplit.botedge36: + interface: botedge36 + subcomponent: portsplit + portsplit.botedge37: + interface: botedge37 + subcomponent: portsplit + portsplit.botedge38: + interface: botedge38 + subcomponent: portsplit + portsplit.botedge39: + interface: botedge39 + subcomponent: portsplit + portsplit.botedge4: + interface: botedge4 + subcomponent: portsplit + portsplit.botedge40: + interface: botedge40 + subcomponent: portsplit + portsplit.botedge41: + interface: botedge41 + subcomponent: portsplit + portsplit.botedge42: + interface: botedge42 + subcomponent: portsplit + portsplit.botedge43: + interface: botedge43 + subcomponent: portsplit + portsplit.botedge44: + interface: botedge44 + subcomponent: portsplit + portsplit.botedge45: + interface: botedge45 + subcomponent: portsplit + portsplit.botedge46: + interface: botedge46 + subcomponent: portsplit + portsplit.botedge47: + interface: botedge47 + subcomponent: portsplit + portsplit.botedge48: + interface: botedge48 + subcomponent: portsplit + portsplit.botedge49: + interface: botedge49 + subcomponent: portsplit + portsplit.botedge5: + interface: botedge5 + subcomponent: portsplit + portsplit.botedge50: + interface: botedge50 + subcomponent: portsplit + portsplit.botedge51: + interface: botedge51 + subcomponent: portsplit + portsplit.botedge52: + interface: botedge52 + subcomponent: portsplit + portsplit.botedge53: + interface: botedge53 + subcomponent: portsplit + portsplit.botedge54: + interface: botedge54 + subcomponent: portsplit + portsplit.botedge55: + interface: botedge55 + subcomponent: portsplit + portsplit.botedge56: + interface: botedge56 + subcomponent: portsplit + portsplit.botedge57: + interface: botedge57 + subcomponent: portsplit + portsplit.botedge58: + interface: botedge58 + subcomponent: portsplit + portsplit.botedge59: + interface: botedge59 + subcomponent: portsplit + portsplit.botedge6: + interface: botedge6 + subcomponent: portsplit + portsplit.botedge60: + interface: botedge60 + subcomponent: portsplit + portsplit.botedge61: + interface: botedge61 + subcomponent: portsplit + portsplit.botedge62: + interface: botedge62 + subcomponent: portsplit + portsplit.botedge63: + interface: botedge63 + subcomponent: portsplit + portsplit.botedge64: + interface: botedge64 + subcomponent: portsplit + portsplit.botedge65: + interface: botedge65 + subcomponent: portsplit + portsplit.botedge66: + interface: botedge66 + subcomponent: portsplit + portsplit.botedge67: + interface: botedge67 + subcomponent: portsplit + portsplit.botedge68: + interface: botedge68 + subcomponent: portsplit + portsplit.botedge69: + interface: botedge69 + subcomponent: portsplit + portsplit.botedge7: + interface: botedge7 + subcomponent: portsplit + portsplit.botedge70: + interface: botedge70 + subcomponent: portsplit + portsplit.botedge71: + interface: botedge71 + subcomponent: portsplit + portsplit.botedge72: + interface: botedge72 + subcomponent: portsplit + portsplit.botedge73: + interface: botedge73 + subcomponent: portsplit + portsplit.botedge74: + interface: botedge74 + subcomponent: portsplit + portsplit.botedge75: + interface: botedge75 + subcomponent: portsplit + portsplit.botedge76: + interface: botedge76 + subcomponent: portsplit + portsplit.botedge77: + interface: botedge77 + subcomponent: portsplit + portsplit.botedge78: + interface: botedge78 + subcomponent: portsplit + portsplit.botedge79: + interface: botedge79 + subcomponent: portsplit + portsplit.botedge8: + interface: botedge8 + subcomponent: portsplit + portsplit.botedge80: + interface: botedge80 + subcomponent: portsplit + portsplit.botedge81: + interface: botedge81 + subcomponent: portsplit + portsplit.botedge82: + interface: botedge82 + subcomponent: portsplit + portsplit.botedge83: + interface: botedge83 + subcomponent: portsplit + portsplit.botedge84: + interface: botedge84 + subcomponent: portsplit + portsplit.botedge85: + interface: botedge85 + subcomponent: portsplit + portsplit.botedge86: + interface: botedge86 + subcomponent: portsplit + portsplit.botedge87: + interface: botedge87 + subcomponent: portsplit + portsplit.botedge88: + interface: botedge88 + subcomponent: portsplit + portsplit.botedge89: + interface: botedge89 + subcomponent: portsplit + portsplit.botedge9: + interface: botedge9 + subcomponent: portsplit + portsplit.botedge90: + interface: botedge90 + subcomponent: portsplit + portsplit.botedge91: + interface: botedge91 + subcomponent: portsplit + portsplit.botedge92: + interface: botedge92 + subcomponent: portsplit + portsplit.botedge93: + interface: botedge93 + subcomponent: portsplit + portsplit.botedge94: + interface: botedge94 + subcomponent: portsplit + portsplit.botedge95: + interface: botedge95 + subcomponent: portsplit + portsplit.botedge96: + interface: botedge96 + subcomponent: portsplit + portsplit.botedge97: + interface: botedge97 + subcomponent: portsplit + portsplit.botedge98: + interface: botedge98 + subcomponent: portsplit + portsplit.botedge99: + interface: botedge99 + subcomponent: portsplit + portsplit.topedge0: + interface: topedge0 + subcomponent: portsplit + portsplit.topedge1: + interface: topedge1 + subcomponent: portsplit + portsplit.topedge10: + interface: topedge10 + subcomponent: portsplit + portsplit.topedge11: + interface: topedge11 + subcomponent: portsplit + portsplit.topedge12: + interface: topedge12 + subcomponent: portsplit + portsplit.topedge13: + interface: topedge13 + subcomponent: portsplit + portsplit.topedge14: + interface: topedge14 + subcomponent: portsplit + portsplit.topedge15: + interface: topedge15 + subcomponent: portsplit + portsplit.topedge16: + interface: topedge16 + subcomponent: portsplit + portsplit.topedge17: + interface: topedge17 + subcomponent: portsplit + portsplit.topedge18: + interface: topedge18 + subcomponent: portsplit + portsplit.topedge19: + interface: topedge19 + subcomponent: portsplit + portsplit.topedge2: + interface: topedge2 + subcomponent: portsplit + portsplit.topedge20: + interface: topedge20 + subcomponent: portsplit + portsplit.topedge21: + interface: topedge21 + subcomponent: portsplit + portsplit.topedge22: + interface: topedge22 + subcomponent: portsplit + portsplit.topedge23: + interface: topedge23 + subcomponent: portsplit + portsplit.topedge24: + interface: topedge24 + subcomponent: portsplit + portsplit.topedge25: + interface: topedge25 + subcomponent: portsplit + portsplit.topedge26: + interface: topedge26 + subcomponent: portsplit + portsplit.topedge27: + interface: topedge27 + subcomponent: portsplit + portsplit.topedge28: + interface: topedge28 + subcomponent: portsplit + portsplit.topedge29: + interface: topedge29 + subcomponent: portsplit + portsplit.topedge3: + interface: topedge3 + subcomponent: portsplit + portsplit.topedge30: + interface: topedge30 + subcomponent: portsplit + portsplit.topedge31: + interface: topedge31 + subcomponent: portsplit + portsplit.topedge32: + interface: topedge32 + subcomponent: portsplit + portsplit.topedge33: + interface: topedge33 + subcomponent: portsplit + portsplit.topedge34: + interface: topedge34 + subcomponent: portsplit + portsplit.topedge35: + interface: topedge35 + subcomponent: portsplit + portsplit.topedge36: + interface: topedge36 + subcomponent: portsplit + portsplit.topedge37: + interface: topedge37 + subcomponent: portsplit + portsplit.topedge38: + interface: topedge38 + subcomponent: portsplit + portsplit.topedge39: + interface: topedge39 + subcomponent: portsplit + portsplit.topedge4: + interface: topedge4 + subcomponent: portsplit + portsplit.topedge40: + interface: topedge40 + subcomponent: portsplit + portsplit.topedge41: + interface: topedge41 + subcomponent: portsplit + portsplit.topedge42: + interface: topedge42 + subcomponent: portsplit + portsplit.topedge43: + interface: topedge43 + subcomponent: portsplit + portsplit.topedge44: + interface: topedge44 + subcomponent: portsplit + portsplit.topedge45: + interface: topedge45 + subcomponent: portsplit + portsplit.topedge46: + interface: topedge46 + subcomponent: portsplit + portsplit.topedge47: + interface: topedge47 + subcomponent: portsplit + portsplit.topedge48: + interface: topedge48 + subcomponent: portsplit + portsplit.topedge49: + interface: topedge49 + subcomponent: portsplit + portsplit.topedge5: + interface: topedge5 + subcomponent: portsplit + portsplit.topedge50: + interface: topedge50 + subcomponent: portsplit + portsplit.topedge51: + interface: topedge51 + subcomponent: portsplit + portsplit.topedge52: + interface: topedge52 + subcomponent: portsplit + portsplit.topedge53: + interface: topedge53 + subcomponent: portsplit + portsplit.topedge54: + interface: topedge54 + subcomponent: portsplit + portsplit.topedge55: + interface: topedge55 + subcomponent: portsplit + portsplit.topedge56: + interface: topedge56 + subcomponent: portsplit + portsplit.topedge57: + interface: topedge57 + subcomponent: portsplit + portsplit.topedge58: + interface: topedge58 + subcomponent: portsplit + portsplit.topedge59: + interface: topedge59 + subcomponent: portsplit + portsplit.topedge6: + interface: topedge6 + subcomponent: portsplit + portsplit.topedge60: + interface: topedge60 + subcomponent: portsplit + portsplit.topedge61: + interface: topedge61 + subcomponent: portsplit + portsplit.topedge62: + interface: topedge62 + subcomponent: portsplit + portsplit.topedge63: + interface: topedge63 + subcomponent: portsplit + portsplit.topedge64: + interface: topedge64 + subcomponent: portsplit + portsplit.topedge65: + interface: topedge65 + subcomponent: portsplit + portsplit.topedge66: + interface: topedge66 + subcomponent: portsplit + portsplit.topedge67: + interface: topedge67 + subcomponent: portsplit + portsplit.topedge68: + interface: topedge68 + subcomponent: portsplit + portsplit.topedge69: + interface: topedge69 + subcomponent: portsplit + portsplit.topedge7: + interface: topedge7 + subcomponent: portsplit + portsplit.topedge70: + interface: topedge70 + subcomponent: portsplit + portsplit.topedge71: + interface: topedge71 + subcomponent: portsplit + portsplit.topedge72: + interface: topedge72 + subcomponent: portsplit + portsplit.topedge73: + interface: topedge73 + subcomponent: portsplit + portsplit.topedge74: + interface: topedge74 + subcomponent: portsplit + portsplit.topedge75: + interface: topedge75 + subcomponent: portsplit + portsplit.topedge76: + interface: topedge76 + subcomponent: portsplit + portsplit.topedge77: + interface: topedge77 + subcomponent: portsplit + portsplit.topedge78: + interface: topedge78 + subcomponent: portsplit + portsplit.topedge79: + interface: topedge79 + subcomponent: portsplit + portsplit.topedge8: + interface: topedge8 + subcomponent: portsplit + portsplit.topedge80: + interface: topedge80 + subcomponent: portsplit + portsplit.topedge81: + interface: topedge81 + subcomponent: portsplit + portsplit.topedge82: + interface: topedge82 + subcomponent: portsplit + portsplit.topedge83: + interface: topedge83 + subcomponent: portsplit + portsplit.topedge84: + interface: topedge84 + subcomponent: portsplit + portsplit.topedge85: + interface: topedge85 + subcomponent: portsplit + portsplit.topedge86: + interface: topedge86 + subcomponent: portsplit + portsplit.topedge87: + interface: topedge87 + subcomponent: portsplit + portsplit.topedge88: + interface: topedge88 + subcomponent: portsplit + portsplit.topedge89: + interface: topedge89 + subcomponent: portsplit + portsplit.topedge9: + interface: topedge9 + subcomponent: portsplit + portsplit.topedge90: + interface: topedge90 + subcomponent: portsplit + portsplit.topedge91: + interface: topedge91 + subcomponent: portsplit + portsplit.topedge92: + interface: topedge92 + subcomponent: portsplit + portsplit.topedge93: + interface: topedge93 + subcomponent: portsplit + portsplit.topedge94: + interface: topedge94 + subcomponent: portsplit + portsplit.topedge95: + interface: topedge95 + subcomponent: portsplit + portsplit.topedge96: + interface: topedge96 + subcomponent: portsplit + portsplit.topedge97: + interface: topedge97 + subcomponent: portsplit + portsplit.topedge98: + interface: topedge98 + subcomponent: portsplit + portsplit.topedge99: + interface: topedge99 + subcomponent: portsplit + starsplit.botedge0: + interface: botedge0 + subcomponent: starsplit + starsplit.botedge1: + interface: botedge1 + subcomponent: starsplit + starsplit.botedge10: + interface: botedge10 + subcomponent: starsplit + starsplit.botedge11: + interface: botedge11 + subcomponent: starsplit + starsplit.botedge12: + interface: botedge12 + subcomponent: starsplit + starsplit.botedge13: + interface: botedge13 + subcomponent: starsplit + starsplit.botedge14: + interface: botedge14 + subcomponent: starsplit + starsplit.botedge15: + interface: botedge15 + subcomponent: starsplit + starsplit.botedge16: + interface: botedge16 + subcomponent: starsplit + starsplit.botedge17: + interface: botedge17 + subcomponent: starsplit + starsplit.botedge18: + interface: botedge18 + subcomponent: starsplit + starsplit.botedge19: + interface: botedge19 + subcomponent: starsplit + starsplit.botedge2: + interface: botedge2 + subcomponent: starsplit + starsplit.botedge20: + interface: botedge20 + subcomponent: starsplit + starsplit.botedge21: + interface: botedge21 + subcomponent: starsplit + starsplit.botedge22: + interface: botedge22 + subcomponent: starsplit + starsplit.botedge23: + interface: botedge23 + subcomponent: starsplit + starsplit.botedge24: + interface: botedge24 + subcomponent: starsplit + starsplit.botedge25: + interface: botedge25 + subcomponent: starsplit + starsplit.botedge26: + interface: botedge26 + subcomponent: starsplit + starsplit.botedge27: + interface: botedge27 + subcomponent: starsplit + starsplit.botedge28: + interface: botedge28 + subcomponent: starsplit + starsplit.botedge29: + interface: botedge29 + subcomponent: starsplit + starsplit.botedge3: + interface: botedge3 + subcomponent: starsplit + starsplit.botedge30: + interface: botedge30 + subcomponent: starsplit + starsplit.botedge31: + interface: botedge31 + subcomponent: starsplit + starsplit.botedge32: + interface: botedge32 + subcomponent: starsplit + starsplit.botedge33: + interface: botedge33 + subcomponent: starsplit + starsplit.botedge34: + interface: botedge34 + subcomponent: starsplit + starsplit.botedge35: + interface: botedge35 + subcomponent: starsplit + starsplit.botedge36: + interface: botedge36 + subcomponent: starsplit + starsplit.botedge37: + interface: botedge37 + subcomponent: starsplit + starsplit.botedge38: + interface: botedge38 + subcomponent: starsplit + starsplit.botedge39: + interface: botedge39 + subcomponent: starsplit + starsplit.botedge4: + interface: botedge4 + subcomponent: starsplit + starsplit.botedge40: + interface: botedge40 + subcomponent: starsplit + starsplit.botedge41: + interface: botedge41 + subcomponent: starsplit + starsplit.botedge42: + interface: botedge42 + subcomponent: starsplit + starsplit.botedge43: + interface: botedge43 + subcomponent: starsplit + starsplit.botedge44: + interface: botedge44 + subcomponent: starsplit + starsplit.botedge45: + interface: botedge45 + subcomponent: starsplit + starsplit.botedge46: + interface: botedge46 + subcomponent: starsplit + starsplit.botedge47: + interface: botedge47 + subcomponent: starsplit + starsplit.botedge48: + interface: botedge48 + subcomponent: starsplit + starsplit.botedge49: + interface: botedge49 + subcomponent: starsplit + starsplit.botedge5: + interface: botedge5 + subcomponent: starsplit + starsplit.botedge50: + interface: botedge50 + subcomponent: starsplit + starsplit.botedge51: + interface: botedge51 + subcomponent: starsplit + starsplit.botedge52: + interface: botedge52 + subcomponent: starsplit + starsplit.botedge53: + interface: botedge53 + subcomponent: starsplit + starsplit.botedge54: + interface: botedge54 + subcomponent: starsplit + starsplit.botedge55: + interface: botedge55 + subcomponent: starsplit + starsplit.botedge56: + interface: botedge56 + subcomponent: starsplit + starsplit.botedge57: + interface: botedge57 + subcomponent: starsplit + starsplit.botedge58: + interface: botedge58 + subcomponent: starsplit + starsplit.botedge59: + interface: botedge59 + subcomponent: starsplit + starsplit.botedge6: + interface: botedge6 + subcomponent: starsplit + starsplit.botedge60: + interface: botedge60 + subcomponent: starsplit + starsplit.botedge61: + interface: botedge61 + subcomponent: starsplit + starsplit.botedge62: + interface: botedge62 + subcomponent: starsplit + starsplit.botedge63: + interface: botedge63 + subcomponent: starsplit + starsplit.botedge64: + interface: botedge64 + subcomponent: starsplit + starsplit.botedge65: + interface: botedge65 + subcomponent: starsplit + starsplit.botedge66: + interface: botedge66 + subcomponent: starsplit + starsplit.botedge67: + interface: botedge67 + subcomponent: starsplit + starsplit.botedge68: + interface: botedge68 + subcomponent: starsplit + starsplit.botedge69: + interface: botedge69 + subcomponent: starsplit + starsplit.botedge7: + interface: botedge7 + subcomponent: starsplit + starsplit.botedge70: + interface: botedge70 + subcomponent: starsplit + starsplit.botedge71: + interface: botedge71 + subcomponent: starsplit + starsplit.botedge72: + interface: botedge72 + subcomponent: starsplit + starsplit.botedge73: + interface: botedge73 + subcomponent: starsplit + starsplit.botedge74: + interface: botedge74 + subcomponent: starsplit + starsplit.botedge75: + interface: botedge75 + subcomponent: starsplit + starsplit.botedge76: + interface: botedge76 + subcomponent: starsplit + starsplit.botedge77: + interface: botedge77 + subcomponent: starsplit + starsplit.botedge78: + interface: botedge78 + subcomponent: starsplit + starsplit.botedge79: + interface: botedge79 + subcomponent: starsplit + starsplit.botedge8: + interface: botedge8 + subcomponent: starsplit + starsplit.botedge80: + interface: botedge80 + subcomponent: starsplit + starsplit.botedge81: + interface: botedge81 + subcomponent: starsplit + starsplit.botedge82: + interface: botedge82 + subcomponent: starsplit + starsplit.botedge83: + interface: botedge83 + subcomponent: starsplit + starsplit.botedge84: + interface: botedge84 + subcomponent: starsplit + starsplit.botedge85: + interface: botedge85 + subcomponent: starsplit + starsplit.botedge86: + interface: botedge86 + subcomponent: starsplit + starsplit.botedge87: + interface: botedge87 + subcomponent: starsplit + starsplit.botedge88: + interface: botedge88 + subcomponent: starsplit + starsplit.botedge89: + interface: botedge89 + subcomponent: starsplit + starsplit.botedge9: + interface: botedge9 + subcomponent: starsplit + starsplit.botedge90: + interface: botedge90 + subcomponent: starsplit + starsplit.botedge91: + interface: botedge91 + subcomponent: starsplit + starsplit.botedge92: + interface: botedge92 + subcomponent: starsplit + starsplit.botedge93: + interface: botedge93 + subcomponent: starsplit + starsplit.botedge94: + interface: botedge94 + subcomponent: starsplit + starsplit.botedge95: + interface: botedge95 + subcomponent: starsplit + starsplit.botedge96: + interface: botedge96 + subcomponent: starsplit + starsplit.botedge97: + interface: botedge97 + subcomponent: starsplit + starsplit.botedge98: + interface: botedge98 + subcomponent: starsplit + starsplit.botedge99: + interface: botedge99 + subcomponent: starsplit + starsplit.topedge0: + interface: topedge0 + subcomponent: starsplit + starsplit.topedge1: + interface: topedge1 + subcomponent: starsplit + starsplit.topedge10: + interface: topedge10 + subcomponent: starsplit + starsplit.topedge11: + interface: topedge11 + subcomponent: starsplit + starsplit.topedge12: + interface: topedge12 + subcomponent: starsplit + starsplit.topedge13: + interface: topedge13 + subcomponent: starsplit + starsplit.topedge14: + interface: topedge14 + subcomponent: starsplit + starsplit.topedge15: + interface: topedge15 + subcomponent: starsplit + starsplit.topedge16: + interface: topedge16 + subcomponent: starsplit + starsplit.topedge17: + interface: topedge17 + subcomponent: starsplit + starsplit.topedge18: + interface: topedge18 + subcomponent: starsplit + starsplit.topedge19: + interface: topedge19 + subcomponent: starsplit + starsplit.topedge2: + interface: topedge2 + subcomponent: starsplit + starsplit.topedge20: + interface: topedge20 + subcomponent: starsplit + starsplit.topedge21: + interface: topedge21 + subcomponent: starsplit + starsplit.topedge22: + interface: topedge22 + subcomponent: starsplit + starsplit.topedge23: + interface: topedge23 + subcomponent: starsplit + starsplit.topedge24: + interface: topedge24 + subcomponent: starsplit + starsplit.topedge25: + interface: topedge25 + subcomponent: starsplit + starsplit.topedge26: + interface: topedge26 + subcomponent: starsplit + starsplit.topedge27: + interface: topedge27 + subcomponent: starsplit + starsplit.topedge28: + interface: topedge28 + subcomponent: starsplit + starsplit.topedge29: + interface: topedge29 + subcomponent: starsplit + starsplit.topedge3: + interface: topedge3 + subcomponent: starsplit + starsplit.topedge30: + interface: topedge30 + subcomponent: starsplit + starsplit.topedge31: + interface: topedge31 + subcomponent: starsplit + starsplit.topedge32: + interface: topedge32 + subcomponent: starsplit + starsplit.topedge33: + interface: topedge33 + subcomponent: starsplit + starsplit.topedge34: + interface: topedge34 + subcomponent: starsplit + starsplit.topedge35: + interface: topedge35 + subcomponent: starsplit + starsplit.topedge36: + interface: topedge36 + subcomponent: starsplit + starsplit.topedge37: + interface: topedge37 + subcomponent: starsplit + starsplit.topedge38: + interface: topedge38 + subcomponent: starsplit + starsplit.topedge39: + interface: topedge39 + subcomponent: starsplit + starsplit.topedge4: + interface: topedge4 + subcomponent: starsplit + starsplit.topedge40: + interface: topedge40 + subcomponent: starsplit + starsplit.topedge41: + interface: topedge41 + subcomponent: starsplit + starsplit.topedge42: + interface: topedge42 + subcomponent: starsplit + starsplit.topedge43: + interface: topedge43 + subcomponent: starsplit + starsplit.topedge44: + interface: topedge44 + subcomponent: starsplit + starsplit.topedge45: + interface: topedge45 + subcomponent: starsplit + starsplit.topedge46: + interface: topedge46 + subcomponent: starsplit + starsplit.topedge47: + interface: topedge47 + subcomponent: starsplit + starsplit.topedge48: + interface: topedge48 + subcomponent: starsplit + starsplit.topedge49: + interface: topedge49 + subcomponent: starsplit + starsplit.topedge5: + interface: topedge5 + subcomponent: starsplit + starsplit.topedge50: + interface: topedge50 + subcomponent: starsplit + starsplit.topedge51: + interface: topedge51 + subcomponent: starsplit + starsplit.topedge52: + interface: topedge52 + subcomponent: starsplit + starsplit.topedge53: + interface: topedge53 + subcomponent: starsplit + starsplit.topedge54: + interface: topedge54 + subcomponent: starsplit + starsplit.topedge55: + interface: topedge55 + subcomponent: starsplit + starsplit.topedge56: + interface: topedge56 + subcomponent: starsplit + starsplit.topedge57: + interface: topedge57 + subcomponent: starsplit + starsplit.topedge58: + interface: topedge58 + subcomponent: starsplit + starsplit.topedge59: + interface: topedge59 + subcomponent: starsplit + starsplit.topedge6: + interface: topedge6 + subcomponent: starsplit + starsplit.topedge60: + interface: topedge60 + subcomponent: starsplit + starsplit.topedge61: + interface: topedge61 + subcomponent: starsplit + starsplit.topedge62: + interface: topedge62 + subcomponent: starsplit + starsplit.topedge63: + interface: topedge63 + subcomponent: starsplit + starsplit.topedge64: + interface: topedge64 + subcomponent: starsplit + starsplit.topedge65: + interface: topedge65 + subcomponent: starsplit + starsplit.topedge66: + interface: topedge66 + subcomponent: starsplit + starsplit.topedge67: + interface: topedge67 + subcomponent: starsplit + starsplit.topedge68: + interface: topedge68 + subcomponent: starsplit + starsplit.topedge69: + interface: topedge69 + subcomponent: starsplit + starsplit.topedge7: + interface: topedge7 + subcomponent: starsplit + starsplit.topedge70: + interface: topedge70 + subcomponent: starsplit + starsplit.topedge71: + interface: topedge71 + subcomponent: starsplit + starsplit.topedge72: + interface: topedge72 + subcomponent: starsplit + starsplit.topedge73: + interface: topedge73 + subcomponent: starsplit + starsplit.topedge74: + interface: topedge74 + subcomponent: starsplit + starsplit.topedge75: + interface: topedge75 + subcomponent: starsplit + starsplit.topedge76: + interface: topedge76 + subcomponent: starsplit + starsplit.topedge77: + interface: topedge77 + subcomponent: starsplit + starsplit.topedge78: + interface: topedge78 + subcomponent: starsplit + starsplit.topedge79: + interface: topedge79 + subcomponent: starsplit + starsplit.topedge8: + interface: topedge8 + subcomponent: starsplit + starsplit.topedge80: + interface: topedge80 + subcomponent: starsplit + starsplit.topedge81: + interface: topedge81 + subcomponent: starsplit + starsplit.topedge82: + interface: topedge82 + subcomponent: starsplit + starsplit.topedge83: + interface: topedge83 + subcomponent: starsplit + starsplit.topedge84: + interface: topedge84 + subcomponent: starsplit + starsplit.topedge85: + interface: topedge85 + subcomponent: starsplit + starsplit.topedge86: + interface: topedge86 + subcomponent: starsplit + starsplit.topedge87: + interface: topedge87 + subcomponent: starsplit + starsplit.topedge88: + interface: topedge88 + subcomponent: starsplit + starsplit.topedge89: + interface: topedge89 + subcomponent: starsplit + starsplit.topedge9: + interface: topedge9 + subcomponent: starsplit + starsplit.topedge90: + interface: topedge90 + subcomponent: starsplit + starsplit.topedge91: + interface: topedge91 + subcomponent: starsplit + starsplit.topedge92: + interface: topedge92 + subcomponent: starsplit + starsplit.topedge93: + interface: topedge93 + subcomponent: starsplit + starsplit.topedge94: + interface: topedge94 + subcomponent: starsplit + starsplit.topedge95: + interface: topedge95 + subcomponent: starsplit + starsplit.topedge96: + interface: topedge96 + subcomponent: starsplit + starsplit.topedge97: + interface: topedge97 + subcomponent: starsplit + starsplit.topedge98: + interface: topedge98 + subcomponent: starsplit + starsplit.topedge99: + interface: topedge99 + subcomponent: starsplit +parameters: + depth: + defaultValue: 70 + spec: + minValue: 0 + units: mm + valueType: (float, int) + espStack.depth: + defaultValue: 70 + spec: + minValue: 0 + units: mm + valueType: (float, int) + espStack.lArm._dx: + defaultValue: 0 + spec: + minValue: null + units: mm + valueType: (float, int) + espStack.lArm._dy: + defaultValue: 0 + spec: + minValue: null + units: mm + valueType: (float, int) + espStack.lArm._dz: + defaultValue: 0 + spec: + minValue: null + units: mm + valueType: (float, int) + espStack.lArm._q_a: + defaultValue: 1 + spec: + maxValue: 1 + minValue: -1 + valueType: (int, float) + espStack.lArm._q_i: + defaultValue: 0 + spec: + maxValue: 1 + minValue: -1 + valueType: (int, float) + espStack.lArm._q_j: + defaultValue: 0 + spec: + maxValue: 1 + minValue: -1 + valueType: (int, float) + espStack.lArm._q_k: + defaultValue: 0 + spec: + maxValue: 1 + minValue: -1 + valueType: (int, float) + espStack.rArm._dx: + defaultValue: 0 + spec: + minValue: null + units: mm + valueType: (float, int) + espStack.rArm._dy: + defaultValue: 0 + spec: + minValue: null + units: mm + valueType: (float, int) + espStack.rArm._dz: + defaultValue: 0 + spec: + minValue: null + units: mm + valueType: (float, int) + espStack.rArm._q_a: + defaultValue: 1 + spec: + maxValue: 1 + minValue: -1 + valueType: (int, float) + espStack.rArm._q_i: + defaultValue: 0 + spec: + maxValue: 1 + minValue: -1 + valueType: (int, float) + espStack.rArm._q_j: + defaultValue: 0 + spec: + maxValue: 1 + minValue: -1 + valueType: (int, float) + espStack.rArm._q_k: + defaultValue: 0 + spec: + maxValue: 1 + minValue: -1 + valueType: (int, float) + espStack.stack.brains: + defaultValue: esp32stack + spec: + valueType: str + espStack.stack.dy1: + defaultValue: 18 + spec: + parameterType: length + espStack.stack.length: + defaultValue: 61 + spec: + minValue: 0 + units: mm + valueType: (float, int) + espStack.width: + defaultValue: 70 + spec: + minValue: 0 + units: mm + valueType: (float, int) + lServoMount.depth: + defaultValue: 24 + spec: + minValue: 0 + units: mm + valueType: (float, int) + lServoMount.length: + defaultValue: 34 + spec: + minValue: 0 + units: mm + valueType: (float, int) + rServoMount.depth: + defaultValue: 24 + spec: + minValue: 0 + units: mm + valueType: (float, int) + rServoMount.length: + defaultValue: 34 + spec: + minValue: 0 + units: mm + valueType: (float, int) + width: + defaultValue: 90 + spec: + minValue: 0 + units: mm + valueType: (float, int) +source: ../builders/boat/ServoMountAndStackBuilder.py +subcomponents: + doubleServoMount: + classname: DoubleServoMount + kwargs: {} + parameters: + depth: + parameter: depth + lServoMount.depth: + parameter: lServoMount.depth + lServoMount.length: + parameter: lServoMount.length + rServoMount.depth: + parameter: rServoMount.depth + rServoMount.length: + parameter: rServoMount.length + width: + parameter: width + espStack: + classname: StackMount + kwargs: {} + parameters: + depth: + parameter: espStack.depth + lArm._dx: + parameter: espStack.lArm._dx + lArm._dy: + parameter: espStack.lArm._dy + lArm._dz: + parameter: espStack.lArm._dz + lArm._q_a: + parameter: espStack.lArm._q_a + lArm._q_i: + parameter: espStack.lArm._q_i + lArm._q_j: + parameter: espStack.lArm._q_j + lArm._q_k: + parameter: espStack.lArm._q_k + rArm._dx: + parameter: espStack.rArm._dx + rArm._dy: + parameter: espStack.rArm._dy + rArm._dz: + parameter: espStack.rArm._dz + rArm._q_a: + parameter: espStack.rArm._q_a + rArm._q_i: + parameter: espStack.rArm._q_i + rArm._q_j: + parameter: espStack.rArm._q_j + rArm._q_k: + parameter: espStack.rArm._q_k + stack.brains: + parameter: espStack.stack.brains + stack.dy1: + parameter: espStack.stack.dy1 + stack.length: + parameter: espStack.stack.length + width: + parameter: espStack.width + portsplit: + classname: SplitEdge + kwargs: {} + parameters: + botlength: + - 61 + - 10 + - 24 + - 73 + toplength: &id001 + - 168 + starsplit: + classname: SplitEdge + kwargs: {} + parameters: + botlength: + - 73 + - 24 + - 10 + - 61 + toplength: *id001 diff --git a/rocolib/output/BoatWithServoMountAndStack/graph-anim.svg b/rocolib/output/BoatWithServoMountAndStack/graph-anim.svg index 3779e88afeeb700faaa0e5b559137f6fb424d34d..40a8aa307b0bb349486edff4170883ba5d24f9cb 100644 --- a/rocolib/output/BoatWithServoMountAndStack/graph-anim.svg +++ b/rocolib/output/BoatWithServoMountAndStack/graph-anim.svg @@ -1,583 +1,585 @@ <?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="485.000000mm" version="1.1" viewBox="0.000000 0.000000 648.023253 485.000000" width="648.023253mm"> +<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="465.000000mm" version="1.1" viewBox="0.000000 0.000000 544.046505 465.000000" width="544.046505mm"> <defs/> - <line stroke="#000000" x1="329.02325267042613" x2="210.02325267042616" y1="125.00000000000001" y2="125.00000000000001"/> - <line opacity="0.25" stroke="#0000ff" x1="329.02325267042613" x2="390.0232526704262" y1="125.00000000000001" y2="125.00000000000001"/> - <line stroke="#000000" x1="390.0232526704262" x2="390.0232526704262" y1="125.00000000000001" y2="125.00000000000001"/> - <line stroke="#000000" x1="210.02325267042616" x2="210.02325267042616" y1="125.00000000000001" y2="125.00000000000001"/> - <line opacity="0.25" stroke="#0000ff" x1="329.02325267042613" x2="390.0232526704262" y1="88.86137800081471" y2="88.86137800081471"/> - <line stroke="#000000" x1="390.0232526704262" x2="390.0232526704262" y1="125.00000000000001" y2="88.86137800081471"/> - <line stroke="#000000" x1="329.02325267042613" x2="329.02325267042613" y1="88.86137800081471" y2="125.00000000000001"/> - <line opacity="0.25" stroke="#0000ff" x1="390.0232526704262" x2="329.02325267042613" y1="64.86137800081471" y2="64.86137800081471"/> - <line opacity="0.5" stroke="#0000ff" x1="390.0232526704262" x2="390.0232526704262" y1="64.86137800081471" y2="88.86137800081471"/> - <line stroke="#000000" x1="329.02325267042613" x2="329.02325267042613" y1="28.722756001629396" y2="64.86137800081472"/> - <line stroke="#000000" x1="390.0232526704262" x2="329.02325267042613" y1="28.722756001629396" y2="28.722756001629396"/> - <line stroke="#000000" x1="390.0232526704262" x2="390.0232526704262" y1="64.86137800081472" y2="28.722756001629396"/> - <line stroke="#000000" x1="400.0232526704262" x2="390.0232526704262" y1="64.86137800081471" y2="64.86137800081471"/> - <line stroke="#000000" x1="400.0232526704262" x2="400.0232526704262" y1="88.86137800081471" y2="64.86137800081471"/> - <line stroke="#000000" x1="390.0232526704262" x2="400.0232526704262" y1="88.86137800081471" y2="88.86137800081471"/> - <line stroke="#000000" x1="319.02325267042613" x2="329.02325267042613" y1="88.86137800081471" y2="88.86137800081471"/> - <line stroke="#000000" x1="319.02325267042613" x2="319.02325267042613" y1="64.86137800081471" y2="88.86137800081471"/> - <line stroke="#000000" x1="329.02325267042613" x2="319.02325267042613" y1="64.86137800081471" y2="64.86137800081471"/> - <line stroke="#000000" x1="186.0232526704262" x2="86.02325267042616" y1="125.00000000000001" y2="125.00000000000001"/> - <line opacity="1.0" stroke="#0000ff" x1="186.0232526704262" x2="210.02325267042616" y1="125.00000000000001" y2="125.00000000000001"/> - <line stroke="#000000" x1="390.0232526704262" x2="390.0232526704262" y1="125.00000000000001" y2="125.00000000000001"/> - <line stroke="#000000" x1="86.02325267042616" x2="86.02325267042616" y1="125.00000000000001" y2="125.00000000000001"/> - <line stroke="#000000" x1="210.02325267042616" x2="210.02325267042616" y1="125.00000000000001" y2="91.0"/> - <line opacity="0.5" stroke="#0000ff" x1="186.0232526704262" x2="186.0232526704262" y1="91.0" y2="125.00000000000001"/> - <line stroke="#000000" x1="186.0232526704262" x2="186.0232526704262" y1="55.00000000000001" y2="91.0"/> - <line opacity="0.5" stroke="#ff0000" x1="186.0232526704262" x2="210.02325267042616" y1="55.00000000000001" y2="55.00000000000001"/> - <line stroke="#000000" x1="210.02325267042616" x2="210.02325267042616" y1="91.0" y2="55.00000000000001"/> - <line stroke="#000000" x1="210.02325267042616" x2="210.02325267042616" y1="55.00000000000001" y2="5.000000000000001"/> - <line stroke="#000000" x1="186.0232526704262" x2="186.0232526704262" y1="5.000000000000001" y2="55.00000000000001"/> - <line stroke="#000000" x1="186.0232526704262" x2="186.0232526704262" y1="0.0" y2="5.000000000000001"/> - <line stroke="#000000" x1="210.02325267042616" x2="186.0232526704262" y1="0.0" y2="0.0"/> - <line stroke="#000000" x1="210.02325267042616" x2="210.02325267042616" y1="5.000000000000001" y2="0.0"/> - <line stroke="#000000" x1="186.0232526704262" x2="166.0232526704262" y1="91.0" y2="91.0"/> - <line stroke="#000000" x1="166.0232526704262" x2="186.0232526704262" y1="125.00000000000001" y2="125.00000000000001"/> - <line opacity="0.5" stroke="#0000ff" x1="166.0232526704262" x2="166.0232526704262" y1="91.0" y2="125.00000000000001"/> - <line stroke="#000000" x1="166.0232526704262" x2="142.02325267042616" y1="91.0" y2="91.0"/> - <line stroke="#000000" x1="142.02325267042616" x2="166.0232526704262" y1="125.00000000000001" y2="125.00000000000001"/> - <line opacity="0.5" stroke="#0000ff" x1="142.02325267042616" x2="142.02325267042616" y1="91.0" y2="125.00000000000001"/> - <line stroke="#000000" x1="142.02325267042616" x2="122.02325267042617" y1="91.0" y2="91.0"/> - <line stroke="#000000" x1="122.02325267042617" x2="142.02325267042616" y1="125.00000000000001" y2="125.00000000000001"/> - <line opacity="0.5" stroke="#0000ff" x1="122.02325267042617" x2="122.02325267042617" y1="125.00000000000001" y2="91.0"/> - <line stroke="#000000" x1="112.02325267042617" x2="122.02325267042617" y1="125.00000000000001" y2="125.00000000000001"/> - <line stroke="#000000" x1="112.02325267042617" x2="112.02325267042617" y1="91.0" y2="125.00000000000001"/> - <line stroke="#000000" x1="122.02325267042617" x2="112.02325267042617" y1="91.0" y2="91.0"/> - <line opacity="0.5" stroke="#0000ff" x1="390.0232526704262" x2="86.02325267042616" y1="195.00000000000003" y2="195.00000000000003"/> - <line opacity="0.5" stroke="#0000ff" x1="390.0232526704262" x2="390.0232526704262" y1="195.00000000000003" y2="125.00000000000001"/> - <line opacity="0.9666666666666667" stroke="#ff0000" x1="390.0232526704262" x2="460.0232526704262" y1="125.00000000000001" y2="125.00000000000001"/> - <line opacity="1.0" stroke="#ff0000" x1="390.0232526704262" x2="460.0232526704262" y1="195.00000000000003" y2="125.00000000000001"/> - <line stroke="#000000" x1="390.0232526704262" x2="390.0232526704262" y1="101.66666666666669" y2="125.00000000000001"/> - <line stroke="#000000" x1="460.0232526704262" x2="390.0232526704262" y1="101.66666666666669" y2="101.66666666666669"/> - <line stroke="#000000" x1="460.0232526704262" x2="460.0232526704262" y1="125.00000000000001" y2="101.66666666666669"/> - <line opacity="1.0" stroke="#0000ff" x1="390.02325267042625" x2="460.0232526704262" y1="195.00000000000003" y2="195.00000000000003"/> - <line stroke="#000000" x1="460.0232526704262" x2="460.0232526704262" y1="195.00000000000003" y2="125.00000000000001"/> - <line stroke="#000000" x1="460.02325267042625" x2="460.0232526704262" y1="265.00000000000006" y2="195.0"/> - <line stroke="#000000" x1="460.0232526704262" x2="460.02325267042625" y1="245.0" y2="265.00000000000006"/> - <line opacity="0.5" stroke="#0000ff" x1="390.0232526704263" x2="390.02325267042625" y1="245.00000000000003" y2="195.00000000000006"/> - <line opacity="0.5" stroke="#0000ff" x1="390.0232526704263" x2="390.0232526704263" y1="295.0" y2="245.00000000000003"/> - <line opacity="1.0" stroke="#0000ff" x1="460.02325267042625" x2="390.0232526704263" y1="295.0" y2="295.0"/> - <line stroke="#000000" x1="460.02325267042625" x2="460.02325267042625" y1="225.00000000000003" y2="245.00000000000003"/> - <line stroke="#000000" x1="460.02325267042625" x2="460.02325267042625" y1="295.0" y2="225.00000000000003"/> - <line stroke="#000000" x1="460.02325267042625" x2="460.02325267042625" y1="365.0" y2="295.0"/> - <line opacity="1.0" stroke="#ff0000" x1="460.02325267042625" x2="390.0232526704263" y1="365.0" y2="295.0"/> - <line opacity="0.5" stroke="#0000ff" x1="390.0232526704263" x2="390.0232526704263" y1="365.00000000000006" y2="295.0"/> - <line opacity="0.9666666666666667" stroke="#ff0000" x1="460.02325267042625" x2="390.0232526704263" y1="365.0" y2="365.00000000000006"/> - <line opacity="0.5" stroke="#0000ff" x1="390.0232526704263" x2="86.02325267042634" y1="295.0" y2="295.0000000000001"/> - <line opacity="1.0" stroke="#0000ff" x1="210.02325267042633" x2="186.02325267042636" y1="365.0000000000001" y2="365.00000000000017"/> - <line stroke="#000000" x1="86.02325267042634" x2="186.02325267042636" y1="365.00000000000017" y2="365.00000000000017"/> - <line stroke="#000000" x1="86.02325267042634" x2="86.02325267042634" y1="365.00000000000017" y2="365.00000000000017"/> - <line stroke="#000000" x1="390.0232526704263" x2="390.0232526704263" y1="365.00000000000006" y2="365.00000000000006"/> - <line stroke="#000000" x1="210.02325267042633" x2="329.02325267042636" y1="365.0000000000001" y2="365.00000000000006"/> - <line stroke="#000000" x1="210.02325267042633" x2="210.02325267042633" y1="365.0000000000001" y2="365.0000000000001"/> - <line stroke="#000000" x1="390.0232526704263" x2="390.0232526704263" y1="365.00000000000006" y2="365.00000000000006"/> - <line stroke="#000000" x1="390.0232526704263" x2="390.0232526704263" y1="375.00000000000006" y2="365.00000000000006"/> - <line stroke="#000000" x1="329.02325267042636" x2="390.0232526704263" y1="375.00000000000006" y2="375.00000000000006"/> - <line stroke="#000000" x1="329.02325267042636" x2="329.02325267042636" y1="365.00000000000006" y2="375.00000000000006"/> - <line stroke="#000000" x1="210.02325267042636" x2="210.02325267042633" y1="399.0000000000001" y2="365.0000000000001"/> - <line opacity="0.5" stroke="#0000ff" x1="186.02325267042633" x2="186.02325267042636" y1="365.0000000000001" y2="399.0000000000001"/> - <line stroke="#000000" x1="210.02325267042636" x2="210.02325267042636" y1="435.0000000000001" y2="399.0000000000001"/> - <line opacity="0.5" stroke="#ff0000" x1="210.02325267042636" x2="186.0232526704264" y1="435.0000000000001" y2="435.0000000000001"/> - <line stroke="#000000" x1="186.02325267042636" x2="186.0232526704264" y1="399.0000000000001" y2="435.0000000000001"/> - <line stroke="#000000" x1="186.0232526704264" x2="186.0232526704264" y1="435.0000000000001" y2="485.0000000000001"/> - <line stroke="#000000" x1="210.0232526704264" x2="210.02325267042636" y1="485.0000000000001" y2="435.0000000000001"/> - <line stroke="#000000" x1="186.0232526704264" x2="210.0232526704264" y1="485.0000000000001" y2="485.0000000000001"/> - <line stroke="#000000" x1="186.02325267042633" x2="166.0232526704263" y1="365.0000000000001" y2="365.0000000000001"/> - <line stroke="#000000" x1="166.02325267042633" x2="186.02325267042636" y1="399.0000000000001" y2="399.0000000000001"/> - <line opacity="0.5" stroke="#0000ff" x1="166.0232526704263" x2="166.02325267042633" y1="365.0000000000001" y2="399.0000000000001"/> - <line stroke="#000000" x1="166.0232526704263" x2="142.02325267042633" y1="365.0000000000001" y2="365.0000000000001"/> - <line stroke="#000000" x1="142.02325267042636" x2="166.02325267042633" y1="399.0000000000001" y2="399.0000000000001"/> - <line opacity="0.5" stroke="#0000ff" x1="142.02325267042633" x2="142.02325267042636" y1="365.0000000000001" y2="399.0000000000001"/> - <line stroke="#000000" x1="142.02325267042633" x2="122.02325267042634" y1="365.0000000000001" y2="365.0000000000001"/> - <line stroke="#000000" x1="122.02325267042636" x2="142.02325267042636" y1="399.0000000000001" y2="399.0000000000001"/> - <line opacity="0.5" stroke="#0000ff" x1="122.02325267042636" x2="122.02325267042634" y1="399.0000000000001" y2="365.0000000000001"/> - <line stroke="#000000" x1="112.02325267042634" x2="122.02325267042634" y1="399.0000000000001" y2="399.0000000000001"/> - <line stroke="#000000" x1="112.02325267042633" x2="112.02325267042634" y1="365.0000000000001" y2="399.0000000000001"/> - <line stroke="#000000" x1="122.02325267042633" x2="112.02325267042633" y1="365.0000000000001" y2="365.0000000000001"/> - <line opacity="0.25" stroke="#0000ff" x1="86.0232526704263" x2="86.02325267042634" y1="295.00000000000017" y2="365.00000000000017"/> - <line opacity="0.9666666666666667" stroke="#ff0000" x1="86.02325267042634" x2="32.42924173922606" y1="365.00000000000017" y2="365.0000000000002"/> - <line opacity="1.0" stroke="#ff0000" x1="86.02325267042632" x2="32.42924173922606" y1="295.00000000000017" y2="365.0000000000002"/> - <line stroke="#000000" x1="86.02325267042634" x2="86.02325267042634" y1="382.8646703104003" y2="365.00000000000017"/> - <line stroke="#000000" x1="32.42924173922606" x2="86.02325267042634" y1="382.8646703104003" y2="382.8646703104003"/> - <line stroke="#000000" x1="32.42924173922606" x2="32.42924173922606" y1="365.0000000000002" y2="382.8646703104003"/> - <line opacity="1.0" stroke="#0000ff" x1="86.02325267042632" x2="18.447362619882885" y1="295.00000000000017" y2="313.2619572849372"/> - <line stroke="#000000" x1="18.447362619882885" x2="32.42924173922606" y1="313.2619572849372" y2="365.0000000000002"/> - <line stroke="#000000" x1="4.465483500539649" x2="18.447362619882853" y1="261.5239145698741" y2="313.2619572849372"/> - <line stroke="#000000" x1="0.0" x2="4.465483500539649" y1="245.00000000000028" y2="261.5239145698741"/> - <line opacity="0.3048477725015598" stroke="#0000ff" x1="0.0" x2="86.0232526704263" y1="245.00000000000028" y2="295.0000000000001"/> - <line opacity="0.3025684567112535" stroke="#0000ff" x1="86.02325267042627" x2="86.02325267042632" y1="245.0000000000002" y2="295.0000000000001"/> - <line opacity="0.3025684567112535" stroke="#0000ff" x1="86.02325267042623" x2="86.02325267042627" y1="195.00000000000017" y2="245.0000000000002"/> - <line opacity="0.3048477725015598" stroke="#0000ff" x1="0.0" x2="86.02325267042623" y1="245.00000000000026" y2="195.00000000000017"/> - <line opacity="1.0" stroke="#0000ff" x1="18.447362619882743" x2="86.02325267042623" y1="176.73804271506336" y2="195.00000000000017"/> - <line stroke="#000000" x1="4.465483500539619" x2="0.0" y1="228.47608543012643" y2="245.00000000000026"/> - <line stroke="#000000" x1="18.447362619882743" x2="4.465483500539619" y1="176.73804271506336" y2="228.47608543012643"/> - <line stroke="#000000" x1="32.42924173922586" x2="18.447362619882743" y1="125.00000000000027" y2="176.73804271506336"/> - <line opacity="1.0" stroke="#ff0000" x1="32.42924173922586" x2="86.02325267042623" y1="125.00000000000027" y2="195.00000000000017"/> - <line opacity="0.25" stroke="#0000ff" x1="86.02325267042613" x2="86.0232526704262" y1="125.00000000000021" y2="195.00000000000017"/> - <line opacity="0.9666666666666667" stroke="#ff0000" x1="32.42924173922586" x2="86.02325267042613" y1="125.00000000000027" y2="125.00000000000021"/> - <line stroke="#000000" x1="32.42924173922584" x2="32.42924173922586" y1="107.13532968960016" y2="125.00000000000027"/> - <line stroke="#000000" x1="86.02325267042612" x2="32.42924173922584" y1="107.13532968960011" y2="107.13532968960016"/> - <line stroke="#000000" x1="86.02325267042613" x2="86.02325267042612" y1="125.00000000000021" y2="107.13532968960011"/> - <line stroke="#000000" x1="460.02325267042625" x2="460.02325267042625" y1="388.3333333333333" y2="365.0"/> - <line stroke="#000000" x1="390.0232526704263" x2="460.02325267042625" y1="388.33333333333337" y2="388.3333333333333"/> - <line stroke="#000000" x1="390.0232526704263" x2="390.0232526704263" y1="365.00000000000006" y2="388.33333333333337"/> - <line stroke="#888888" x1="347.02325267042613" x2="358.0232526704262" y1="70.3613780008147" y2="70.3613780008147"/> - <line stroke="#888888" x1="358.0232526704262" x2="358.0232526704262" y1="70.3613780008147" y2="83.36137800081471"/> - <line stroke="#888888" x1="358.0232526704262" x2="347.02325267042613" y1="83.36137800081471" y2="83.36137800081471"/> - <line stroke="#888888" x1="347.02325267042613" x2="347.02325267042613" y1="83.36137800081471" y2="70.3613780008147"/> - <line stroke="#888888" x1="378.52325267042613" x2="384.5232526704262" y1="71.86137800081471" y2="71.86137800081471"/> - <line stroke="#888888" x1="384.5232526704262" x2="384.5232526704262" y1="71.86137800081471" y2="81.86137800081471"/> - <line stroke="#888888" x1="384.5232526704262" x2="378.52325267042613" y1="81.86137800081471" y2="81.86137800081471"/> - <line stroke="#888888" x1="378.52325267042613" x2="378.52325267042613" y1="81.86137800081471" y2="71.86137800081471"/> - <line stroke="#888888" x1="351.45507085224443" x2="339.8641617613353" y1="36.47275600162939" y2="36.47275600162939"/> - <line stroke="#888888" x1="339.8641617613353" x2="339.8641617613353" y1="36.47275600162939" y2="35.9727560016294"/> - <line stroke="#888888" x1="339.8641617613353" x2="351.45507085224443" y1="35.9727560016294" y2="35.9727560016294"/> - <line stroke="#888888" x1="351.45507085224443" x2="351.45507085224443" y1="35.9727560016294" y2="36.47275600162939"/> - <line stroke="#888888" x1="379.18234357951707" x2="367.591434488608" y1="36.47275600162939" y2="36.47275600162939"/> - <line stroke="#888888" x1="367.591434488608" x2="367.591434488608" y1="36.47275600162939" y2="35.9727560016294"/> - <line stroke="#888888" x1="367.591434488608" x2="379.18234357951707" y1="35.9727560016294" y2="35.9727560016294"/> - <line stroke="#888888" x1="379.18234357951707" x2="379.18234357951707" y1="35.9727560016294" y2="36.47275600162939"/> - <line stroke="#888888" x1="397.5232526704262" x2="392.52325267042613" y1="80.86137800081471" y2="80.86137800081471"/> - <line stroke="#888888" x1="392.52325267042613" x2="392.52325267042613" y1="80.86137800081471" y2="72.86137800081471"/> - <line stroke="#888888" x1="392.52325267042613" x2="397.5232526704262" y1="72.86137800081471" y2="72.86137800081471"/> - <line stroke="#888888" x1="321.5232526704262" x2="326.5232526704262" y1="72.86137800081471" y2="72.86137800081471"/> - <line stroke="#888888" x1="326.5232526704262" x2="326.5232526704262" y1="72.86137800081471" y2="80.86137800081471"/> - <line stroke="#888888" x1="326.5232526704262" x2="321.5232526704262" y1="80.86137800081471" y2="80.86137800081471"/> - <line stroke="#888888" x1="202.2732526704262" x2="202.2732526704262" y1="113.91666666666669" y2="102.08333333333336"/> - <line stroke="#888888" x1="202.2732526704262" x2="202.7732526704262" y1="102.08333333333336" y2="102.08333333333336"/> - <line stroke="#888888" x1="202.7732526704262" x2="202.7732526704262" y1="102.08333333333336" y2="113.91666666666669"/> - <line stroke="#888888" x1="202.7732526704262" x2="202.2732526704262" y1="113.91666666666669" y2="113.91666666666669"/> - <line stroke="#888888" x1="202.0232526704262" x2="204.5232526704262" y1="1.2500000000000002" y2="1.2500000000000002"/> - <line stroke="#888888" x1="204.5232526704262" x2="202.0232526704262" y1="1.2500000000000002" y2="3.7500000000000004"/> - <line stroke="#888888" x1="202.0232526704262" x2="194.02325267042616" y1="3.7500000000000004" y2="3.7500000000000004"/> - <line stroke="#888888" x1="194.02325267042616" x2="191.52325267042616" y1="3.7500000000000004" y2="1.2500000000000002"/> - <line stroke="#888888" x1="191.52325267042616" x2="194.02325267042616" y1="1.2500000000000002" y2="1.2500000000000002"/> - <line stroke="#888888" x1="167.02325267042616" x2="171.02325267042616" y1="102.00000000000001" y2="102.00000000000001"/> - <line stroke="#888888" x1="171.02325267042616" x2="171.02325267042616" y1="102.00000000000001" y2="114.00000000000001"/> - <line stroke="#888888" x1="171.02325267042616" x2="167.02325267042616" y1="114.00000000000001" y2="114.00000000000001"/> - <line stroke="#888888" x1="167.02325267042616" x2="167.02325267042616" y1="114.00000000000001" y2="102.00000000000001"/> - <line stroke="#888888" x1="179.0232526704262" x2="183.0232526704262" y1="103.5" y2="103.5"/> - <line stroke="#888888" x1="183.0232526704262" x2="183.0232526704262" y1="103.5" y2="112.50000000000001"/> - <line stroke="#888888" x1="183.0232526704262" x2="179.0232526704262" y1="112.50000000000001" y2="112.50000000000001"/> - <line stroke="#888888" x1="179.0232526704262" x2="179.0232526704262" y1="112.50000000000001" y2="103.5"/> - <line stroke="#888888" x1="142.5232526704262" x2="165.5232526704262" y1="102.00000000000001" y2="102.00000000000001"/> - <line stroke="#888888" x1="165.5232526704262" x2="165.5232526704262" y1="102.00000000000001" y2="114.00000000000001"/> - <line stroke="#888888" x1="165.5232526704262" x2="142.5232526704262" y1="114.00000000000001" y2="114.00000000000001"/> - <line stroke="#888888" x1="142.5232526704262" x2="142.5232526704262" y1="114.00000000000001" y2="102.00000000000001"/> - <line stroke="#888888" x1="137.02325267042616" x2="141.0232526704262" y1="102.00000000000001" y2="102.00000000000001"/> - <line stroke="#888888" x1="141.0232526704262" x2="141.0232526704262" y1="102.00000000000001" y2="114.00000000000001"/> - <line stroke="#888888" x1="141.0232526704262" x2="137.02325267042616" y1="114.00000000000001" y2="114.00000000000001"/> - <line stroke="#888888" x1="137.02325267042616" x2="137.02325267042616" y1="114.00000000000001" y2="102.00000000000001"/> - <line stroke="#888888" x1="114.52325267042617" x2="119.52325267042617" y1="102.33333333333334" y2="102.33333333333334"/> - <line stroke="#888888" x1="119.52325267042617" x2="119.52325267042617" y1="102.33333333333334" y2="113.66666666666669"/> - <line stroke="#888888" x1="119.52325267042617" x2="114.52325267042617" y1="113.66666666666669" y2="113.66666666666669"/> - <line stroke="#888888" x1="436.68991933709293" x2="436.68991933709293" y1="107.50000000000001" y2="119.16666666666669"/> - <line stroke="#888888" x1="436.68991933709293" x2="413.35658600375956" y1="119.16666666666669" y2="119.16666666666669"/> - <line stroke="#888888" x1="413.35658600375956" x2="413.35658600375956" y1="119.16666666666669" y2="107.50000000000001"/> - <line stroke="#888888" x1="442.27325267042625" x2="442.27325267042625" y1="241.91666666666666" y2="218.08333333333334"/> - <line stroke="#888888" x1="442.27325267042625" x2="442.77325267042625" y1="218.08333333333334" y2="218.08333333333334"/> - <line stroke="#888888" x1="442.77325267042625" x2="442.77325267042625" y1="218.08333333333334" y2="241.91666666666666"/> - <line stroke="#888888" x1="442.77325267042625" x2="442.27325267042625" y1="241.91666666666666" y2="241.91666666666666"/> - <line stroke="#888888" x1="442.2732526704263" x2="442.2732526704263" y1="271.9166666666667" y2="248.08333333333337"/> - <line stroke="#888888" x1="442.2732526704263" x2="442.7732526704263" y1="248.08333333333337" y2="248.08333333333337"/> - <line stroke="#888888" x1="442.7732526704263" x2="442.7732526704263" y1="248.08333333333337" y2="271.9166666666667"/> - <line stroke="#888888" x1="442.7732526704263" x2="442.2732526704263" y1="271.9166666666667" y2="271.9166666666667"/> - <line stroke="#888888" x1="340.11416176133537" x2="340.11416176133537" y1="372.50000000000006" y2="367.50000000000006"/> - <line stroke="#888888" x1="340.11416176133537" x2="351.20507085224455" y1="367.50000000000006" y2="367.50000000000006"/> - <line stroke="#888888" x1="351.20507085224455" x2="351.20507085224455" y1="367.50000000000006" y2="372.50000000000006"/> - <line stroke="#888888" x1="367.8414344886082" x2="367.8414344886082" y1="372.50000000000006" y2="367.50000000000006"/> - <line stroke="#888888" x1="367.8414344886082" x2="378.9323435795172" y1="367.50000000000006" y2="367.50000000000006"/> - <line stroke="#888888" x1="378.9323435795172" x2="378.9323435795172" y1="367.50000000000006" y2="372.50000000000006"/> - <line stroke="#888888" x1="202.27325267042633" x2="202.27325267042633" y1="387.9166666666668" y2="376.0833333333334"/> - <line stroke="#888888" x1="202.27325267042633" x2="202.77325267042633" y1="376.0833333333334" y2="376.0833333333334"/> - <line stroke="#888888" x1="202.77325267042633" x2="202.77325267042636" y1="376.0833333333334" y2="387.9166666666668"/> - <line stroke="#888888" x1="202.77325267042636" x2="202.27325267042633" y1="387.9166666666668" y2="387.9166666666668"/> - <line stroke="#888888" x1="193.7732526704264" x2="202.27325267042636" y1="481.0000000000001" y2="481.0000000000001"/> - <line stroke="#888888" x1="202.27325267042636" x2="202.27325267042636" y1="481.0000000000001" y2="481.5000000000001"/> - <line stroke="#888888" x1="202.27325267042636" x2="193.7732526704264" y1="481.5000000000001" y2="481.5000000000001"/> - <line stroke="#888888" x1="193.7732526704264" x2="193.7732526704264" y1="481.5000000000001" y2="481.0000000000001"/> - <line stroke="#888888" x1="167.02325267042633" x2="171.02325267042633" y1="376.0000000000001" y2="376.0000000000001"/> - <line stroke="#888888" x1="171.02325267042633" x2="171.02325267042633" y1="376.0000000000001" y2="388.0000000000001"/> - <line stroke="#888888" x1="171.02325267042633" x2="167.02325267042633" y1="388.0000000000001" y2="388.0000000000001"/> - <line stroke="#888888" x1="167.02325267042633" x2="167.02325267042633" y1="388.0000000000001" y2="376.0000000000001"/> - <line stroke="#888888" x1="179.02325267042633" x2="183.02325267042633" y1="377.50000000000006" y2="377.50000000000006"/> - <line stroke="#888888" x1="183.02325267042633" x2="183.02325267042633" y1="377.50000000000006" y2="386.50000000000006"/> - <line stroke="#888888" x1="183.02325267042633" x2="179.02325267042633" y1="386.50000000000006" y2="386.50000000000006"/> - <line stroke="#888888" x1="179.02325267042633" x2="179.02325267042633" y1="386.50000000000006" y2="377.50000000000006"/> - <line stroke="#888888" x1="142.52325267042636" x2="165.52325267042636" y1="376.0000000000001" y2="376.0000000000001"/> - <line stroke="#888888" x1="165.52325267042636" x2="165.52325267042636" y1="376.0000000000001" y2="388.0000000000001"/> - <line stroke="#888888" x1="165.52325267042636" x2="142.52325267042636" y1="388.0000000000001" y2="388.0000000000001"/> - <line stroke="#888888" x1="142.52325267042636" x2="142.52325267042636" y1="388.0000000000001" y2="376.0000000000001"/> - <line stroke="#888888" x1="137.02325267042636" x2="141.02325267042633" y1="376.0000000000001" y2="376.0000000000001"/> - <line stroke="#888888" x1="141.02325267042633" x2="141.02325267042633" y1="376.0000000000001" y2="388.0000000000001"/> - <line stroke="#888888" x1="141.02325267042633" x2="137.02325267042636" y1="388.0000000000001" y2="388.0000000000001"/> - <line stroke="#888888" x1="137.02325267042636" x2="137.02325267042636" y1="388.0000000000001" y2="376.0000000000001"/> - <line stroke="#888888" x1="114.52325267042633" x2="119.52325267042633" y1="376.3333333333334" y2="376.3333333333334"/> - <line stroke="#888888" x1="119.52325267042633" x2="119.52325267042634" y1="376.3333333333334" y2="387.6666666666668"/> - <line stroke="#888888" x1="119.52325267042634" x2="114.52325267042634" y1="387.6666666666668" y2="387.6666666666668"/> - <line stroke="#888888" x1="50.293912049626165" x2="50.293912049626165" y1="378.3985027328003" y2="369.46616757760023"/> - <line stroke="#888888" x1="50.293912049626165" x2="68.15858236002626" y1="369.46616757760023" y2="369.46616757760023"/> - <line stroke="#888888" x1="68.15858236002626" x2="68.15858236002626" y1="369.46616757760023" y2="378.3985027328003"/> - <line stroke="#888888" x1="22.23674174086841" x2="27.02781066601807" y1="274.96789528790873" y2="292.6965944551955"/> - <line stroke="#888888" x1="27.02781066601807" x2="26.545125737085613" y1="292.6965944551955" y2="292.82703700723084"/> - <line stroke="#888888" x1="26.545125737085613" x2="21.754056811935953" y1="292.82703700723084" y2="275.098337839944"/> - <line stroke="#888888" x1="21.754056811935953" x2="22.23674174086841" y1="275.098337839944" y2="274.96789528790873"/> - <line stroke="#888888" x1="27.027810666018013" x2="22.236741740868357" y1="197.30340554480492" y2="215.0321047120917"/> - <line stroke="#888888" x1="22.236741740868357" x2="21.7540568119359" y1="215.0321047120917" y2="214.90166216005642"/> - <line stroke="#888888" x1="21.7540568119359" x2="26.54512573708556" y1="214.90166216005642" y2="197.17296299276964"/> - <line stroke="#888888" x1="26.54512573708556" x2="27.027810666018013" y1="197.17296299276964" y2="197.30340554480492"/> - <line stroke="#888888" x1="68.15858236002603" x2="68.15858236002603" y1="111.60149726720016" y2="120.5338324224002"/> - <line stroke="#888888" x1="68.15858236002603" x2="50.293912049625966" y1="120.5338324224002" y2="120.53383242240022"/> - <line stroke="#888888" x1="50.293912049625966" x2="50.29391204962594" y1="120.53383242240022" y2="111.60149726720017"/> - <line stroke="#888888" x1="413.3565860037597" x2="413.3565860037597" y1="382.49999999999994" y2="370.83333333333337"/> - <line stroke="#888888" x1="413.3565860037597" x2="436.68991933709293" y1="370.83333333333337" y2="370.8333333333333"/> - <line stroke="#888888" x1="436.68991933709293" x2="436.68991933709293" y1="370.8333333333333" y2="382.49999999999994"/> - <line opacity="0.5" stroke="#0000ff" x1="503.0232526704263" x2="564.0232526704264" y1="113.00000000000001" y2="113.00000000000001"/> - <line opacity="0.5" stroke="#0000ff" x1="564.0232526704264" x2="564.0232526704264" y1="113.00000000000001" y2="137.00000000000003"/> - <line opacity="0.5" stroke="#0000ff" x1="564.0232526704264" x2="503.0232526704263" y1="137.00000000000003" y2="137.00000000000003"/> - <line opacity="0.5" stroke="#0000ff" x1="503.0232526704263" x2="503.0232526704263" y1="137.00000000000003" y2="113.00000000000001"/> - <line stroke="#000000" x1="503.0232526704263" x2="503.0232526704263" y1="106.00000000000001" y2="113.00000000000001"/> - <line stroke="#000000" x1="563.0232526704264" x2="503.0232526704263" y1="106.00000000000001" y2="106.00000000000001"/> - <line stroke="#000000" x1="563.0232526704264" x2="563.0232526704264" y1="113.00000000000001" y2="106.00000000000001"/> - <line stroke="#000000" x1="571.0232526704264" x2="564.0232526704264" y1="113.00000000000001" y2="113.00000000000001"/> - <line stroke="#000000" x1="571.0232526704264" x2="571.0232526704264" y1="137.00000000000003" y2="113.00000000000001"/> - <line stroke="#000000" x1="564.0232526704264" x2="571.0232526704264" y1="137.00000000000003" y2="137.00000000000003"/> - <line opacity="0.5" stroke="#0000ff" x1="564.0232526704264" x2="564.0232526704264" y1="137.00000000000003" y2="198.0"/> - <line stroke="#000000" x1="504.0232526704263" x2="564.0232526704264" y1="198.0" y2="198.0"/> - <line opacity="0.5" stroke="#0000ff" x1="504.0232526704263" x2="504.0232526704263" y1="137.00000000000003" y2="198.0"/> - <line stroke="#000000" x1="588.0232526704262" x2="564.0232526704264" y1="137.00000000000003" y2="137.00000000000003"/> - <line opacity="0.5" stroke="#0000ff" x1="588.0232526704262" x2="588.0232526704262" y1="137.00000000000003" y2="198.0"/> - <line stroke="#000000" x1="564.0232526704264" x2="588.0232526704262" y1="198.0" y2="198.0"/> - <line stroke="#000000" x1="648.0232526704264" x2="588.0232526704262" y1="137.00000000000003" y2="137.00000000000003"/> - <line stroke="#000000" x1="648.0232526704264" x2="648.0232526704264" y1="198.0" y2="137.00000000000003"/> - <line stroke="#000000" x1="588.0232526704262" x2="648.0232526704264" y1="198.0" y2="198.0"/> - <line stroke="#000000" x1="504.0232526704263" x2="480.0232526704263" y1="137.00000000000003" y2="137.00000000000003"/> - <line stroke="#000000" x1="480.0232526704263" x2="504.0232526704263" y1="198.0" y2="198.0"/> - <line opacity="0.5" stroke="#0000ff" x1="480.0232526704263" x2="480.0232526704263" y1="198.0" y2="137.00000000000003"/> - <line stroke="#000000" x1="470.0232526704263" x2="480.0232526704263" y1="198.0" y2="198.0"/> - <line stroke="#000000" x1="470.0232526704263" x2="470.0232526704263" y1="137.00000000000003" y2="198.0"/> - <line stroke="#000000" x1="480.0232526704263" x2="470.0232526704263" y1="137.00000000000003" y2="137.00000000000003"/> - <line stroke="#000000" x1="496.0232526704263" x2="503.0232526704263" y1="137.00000000000003" y2="137.00000000000003"/> - <line stroke="#000000" x1="496.0232526704263" x2="496.0232526704263" y1="113.00000000000001" y2="137.00000000000003"/> - <line stroke="#000000" x1="503.0232526704263" x2="496.0232526704263" y1="113.00000000000001" y2="113.00000000000001"/> - <line stroke="#888888" x1="552.1141617613354" x2="555.6141617613354" y1="107.75000000000001" y2="107.75000000000001"/> - <line stroke="#888888" x1="555.6141617613354" x2="552.1141617613354" y1="107.75000000000001" y2="111.25000000000001"/> - <line stroke="#888888" x1="552.1141617613354" x2="541.2050708522444" y1="111.25000000000001" y2="111.25000000000001"/> - <line stroke="#888888" x1="541.2050708522444" x2="537.7050708522446" y1="111.25000000000001" y2="107.75000000000001"/> - <line stroke="#888888" x1="537.7050708522446" x2="541.2050708522444" y1="107.75000000000001" y2="107.75000000000001"/> - <line stroke="#888888" x1="524.8414344886082" x2="528.3414344886082" y1="107.75000000000001" y2="107.75000000000001"/> - <line stroke="#888888" x1="528.3414344886082" x2="524.8414344886082" y1="107.75000000000001" y2="111.25000000000001"/> - <line stroke="#888888" x1="524.8414344886082" x2="513.9323435795172" y1="111.25000000000001" y2="111.25000000000001"/> - <line stroke="#888888" x1="513.9323435795172" x2="510.43234357951724" y1="111.25000000000001" y2="107.75000000000001"/> - <line stroke="#888888" x1="510.43234357951724" x2="513.9323435795172" y1="107.75000000000001" y2="107.75000000000001"/> - <line stroke="#888888" x1="569.2732526704264" x2="565.7732526704262" y1="129.0" y2="129.0"/> - <line stroke="#888888" x1="565.7732526704262" x2="565.7732526704262" y1="129.0" y2="121.00000000000001"/> - <line stroke="#888888" x1="565.7732526704262" x2="569.2732526704264" y1="121.00000000000001" y2="121.00000000000001"/> - <line stroke="#888888" x1="511.5232526704263" x2="511.5232526704263" y1="188.50000000000003" y2="170.5"/> - <line stroke="#888888" x1="511.5232526704263" x2="546.5232526704264" y1="170.5" y2="170.5"/> - <line stroke="#888888" x1="546.5232526704264" x2="546.5232526704264" y1="170.5" y2="188.50000000000003"/> - <line stroke="#888888" x1="546.5232526704264" x2="511.5232526704263" y1="188.50000000000003" y2="188.50000000000003"/> - <line stroke="#888888" x1="564.5232526704264" x2="564.5232526704264" y1="150.25" y2="147.25000000000003"/> - <line stroke="#888888" x1="564.5232526704264" x2="567.5232526704262" y1="147.25000000000003" y2="147.25000000000003"/> - <line stroke="#888888" x1="567.5232526704262" x2="567.5232526704262" y1="147.25000000000003" y2="150.25"/> - <line stroke="#888888" x1="567.5232526704262" x2="564.5232526704264" y1="150.25" y2="150.25"/> - <line stroke="#888888" x1="585.5232526704262" x2="585.5232526704262" y1="149.25000000000003" y2="148.25"/> - <line stroke="#888888" x1="585.5232526704262" x2="586.5232526704262" y1="148.25" y2="148.25"/> - <line stroke="#888888" x1="586.5232526704262" x2="586.5232526704262" y1="148.25" y2="149.25000000000003"/> - <line stroke="#888888" x1="586.5232526704262" x2="585.5232526704262" y1="149.25000000000003" y2="149.25000000000003"/> - <line stroke="#888888" x1="565.5232526704264" x2="565.5232526704264" y1="151.75000000000003" y2="150.75000000000003"/> - <line stroke="#888888" x1="565.5232526704264" x2="566.5232526704264" y1="150.75000000000003" y2="150.75000000000003"/> - <line stroke="#888888" x1="566.5232526704264" x2="566.5232526704264" y1="150.75000000000003" y2="151.75000000000003"/> - <line stroke="#888888" x1="566.5232526704264" x2="565.5232526704264" y1="151.75000000000003" y2="151.75000000000003"/> - <line stroke="#888888" x1="585.5232526704262" x2="585.5232526704262" y1="151.75000000000003" y2="150.75000000000003"/> - <line stroke="#888888" x1="585.5232526704262" x2="586.5232526704262" y1="150.75000000000003" y2="150.75000000000003"/> - <line stroke="#888888" x1="586.5232526704262" x2="586.5232526704262" y1="150.75000000000003" y2="151.75000000000003"/> - <line stroke="#888888" x1="586.5232526704262" x2="585.5232526704262" y1="151.75000000000003" y2="151.75000000000003"/> - <line stroke="#888888" x1="565.5232526704264" x2="565.5232526704264" y1="154.25000000000003" y2="153.25000000000003"/> - <line stroke="#888888" x1="565.5232526704264" x2="566.5232526704264" y1="153.25000000000003" y2="153.25000000000003"/> - <line stroke="#888888" x1="566.5232526704264" x2="566.5232526704264" y1="153.25000000000003" y2="154.25000000000003"/> - <line stroke="#888888" x1="566.5232526704264" x2="565.5232526704264" y1="154.25000000000003" y2="154.25000000000003"/> - <line stroke="#888888" x1="585.5232526704262" x2="585.5232526704262" y1="154.25000000000003" y2="153.25000000000003"/> - <line stroke="#888888" x1="585.5232526704262" x2="586.5232526704262" y1="153.25000000000003" y2="153.25000000000003"/> - <line stroke="#888888" x1="586.5232526704262" x2="586.5232526704262" y1="153.25000000000003" y2="154.25000000000003"/> - <line stroke="#888888" x1="586.5232526704262" x2="585.5232526704262" y1="154.25000000000003" y2="154.25000000000003"/> - <line stroke="#888888" x1="565.5232526704264" x2="565.5232526704264" y1="156.75" y2="155.75000000000003"/> - <line stroke="#888888" x1="565.5232526704264" x2="566.5232526704264" y1="155.75000000000003" y2="155.75000000000003"/> - <line stroke="#888888" x1="566.5232526704264" x2="566.5232526704264" y1="155.75000000000003" y2="156.75"/> - <line stroke="#888888" x1="566.5232526704264" x2="565.5232526704264" y1="156.75" y2="156.75"/> - <line stroke="#888888" x1="585.5232526704262" x2="585.5232526704262" y1="156.75" y2="155.75000000000003"/> - <line stroke="#888888" x1="585.5232526704262" x2="586.5232526704262" y1="155.75000000000003" y2="155.75000000000003"/> - <line stroke="#888888" x1="586.5232526704262" x2="586.5232526704262" y1="155.75000000000003" y2="156.75"/> - <line stroke="#888888" x1="586.5232526704262" x2="585.5232526704262" y1="156.75" y2="156.75"/> - <line stroke="#888888" x1="565.5232526704264" x2="565.5232526704264" y1="159.25" y2="158.25000000000003"/> - <line stroke="#888888" x1="565.5232526704264" x2="566.5232526704264" y1="158.25000000000003" y2="158.25000000000003"/> - <line stroke="#888888" x1="566.5232526704264" x2="566.5232526704264" y1="158.25000000000003" y2="159.25"/> - <line stroke="#888888" x1="566.5232526704264" x2="565.5232526704264" y1="159.25" y2="159.25"/> - <line stroke="#888888" x1="585.5232526704262" x2="585.5232526704262" y1="159.25" y2="158.25000000000003"/> - <line stroke="#888888" x1="585.5232526704262" x2="586.5232526704262" y1="158.25000000000003" y2="158.25000000000003"/> - <line stroke="#888888" x1="586.5232526704262" x2="586.5232526704262" y1="158.25000000000003" y2="159.25"/> - <line stroke="#888888" x1="586.5232526704262" x2="585.5232526704262" y1="159.25" y2="159.25"/> - <line stroke="#888888" x1="565.5232526704264" x2="565.5232526704264" y1="161.75" y2="160.75000000000003"/> - <line stroke="#888888" x1="565.5232526704264" x2="566.5232526704264" y1="160.75000000000003" y2="160.75000000000003"/> - <line stroke="#888888" x1="566.5232526704264" x2="566.5232526704264" y1="160.75000000000003" y2="161.75"/> - <line stroke="#888888" x1="566.5232526704264" x2="565.5232526704264" y1="161.75" y2="161.75"/> - <line stroke="#888888" x1="585.5232526704262" x2="585.5232526704262" y1="161.75" y2="160.75000000000003"/> - <line stroke="#888888" x1="585.5232526704262" x2="586.5232526704262" y1="160.75000000000003" y2="160.75000000000003"/> - <line stroke="#888888" x1="586.5232526704262" x2="586.5232526704262" y1="160.75000000000003" y2="161.75"/> - <line stroke="#888888" x1="586.5232526704262" x2="585.5232526704262" y1="161.75" y2="161.75"/> - <line stroke="#888888" x1="565.5232526704264" x2="565.5232526704264" y1="164.25000000000003" y2="163.25000000000003"/> - <line stroke="#888888" x1="565.5232526704264" x2="566.5232526704264" y1="163.25000000000003" y2="163.25000000000003"/> - <line stroke="#888888" x1="566.5232526704264" x2="566.5232526704264" y1="163.25000000000003" y2="164.25000000000003"/> - <line stroke="#888888" x1="566.5232526704264" x2="565.5232526704264" y1="164.25000000000003" y2="164.25000000000003"/> - <line stroke="#888888" x1="585.5232526704262" x2="585.5232526704262" y1="164.25000000000003" y2="163.25000000000003"/> - <line stroke="#888888" x1="585.5232526704262" x2="586.5232526704262" y1="163.25000000000003" y2="163.25000000000003"/> - <line stroke="#888888" x1="586.5232526704262" x2="586.5232526704262" y1="163.25000000000003" y2="164.25000000000003"/> - <line stroke="#888888" x1="586.5232526704262" x2="585.5232526704262" y1="164.25000000000003" y2="164.25000000000003"/> - <line stroke="#888888" x1="565.5232526704264" x2="565.5232526704264" y1="166.75000000000003" y2="165.75"/> - <line stroke="#888888" x1="565.5232526704264" x2="566.5232526704264" y1="165.75" y2="165.75"/> - <line stroke="#888888" x1="566.5232526704264" x2="566.5232526704264" y1="165.75" y2="166.75000000000003"/> - <line stroke="#888888" x1="566.5232526704264" x2="565.5232526704264" y1="166.75000000000003" y2="166.75000000000003"/> - <line stroke="#888888" x1="585.5232526704262" x2="585.5232526704262" y1="166.75000000000003" y2="165.75"/> - <line stroke="#888888" x1="585.5232526704262" x2="586.5232526704262" y1="165.75" y2="165.75"/> - <line stroke="#888888" x1="586.5232526704262" x2="586.5232526704262" y1="165.75" y2="166.75000000000003"/> - <line stroke="#888888" x1="586.5232526704262" x2="585.5232526704262" y1="166.75000000000003" y2="166.75000000000003"/> - <line stroke="#888888" x1="565.5232526704264" x2="565.5232526704264" y1="169.25000000000003" y2="168.25"/> - <line stroke="#888888" x1="565.5232526704264" x2="566.5232526704264" y1="168.25" y2="168.25"/> - <line stroke="#888888" x1="566.5232526704264" x2="566.5232526704264" y1="168.25" y2="169.25000000000003"/> - <line stroke="#888888" x1="566.5232526704264" x2="565.5232526704264" y1="169.25000000000003" y2="169.25000000000003"/> - <line stroke="#888888" x1="585.5232526704262" x2="585.5232526704262" y1="169.25000000000003" y2="168.25"/> - <line stroke="#888888" x1="585.5232526704262" x2="586.5232526704262" y1="168.25" y2="168.25"/> - <line stroke="#888888" x1="586.5232526704262" x2="586.5232526704262" y1="168.25" y2="169.25000000000003"/> - <line stroke="#888888" x1="586.5232526704262" x2="585.5232526704262" y1="169.25000000000003" y2="169.25000000000003"/> - <line stroke="#888888" x1="565.5232526704264" x2="565.5232526704264" y1="171.75000000000003" y2="170.75"/> - <line stroke="#888888" x1="565.5232526704264" x2="566.5232526704264" y1="170.75" y2="170.75"/> - <line stroke="#888888" x1="566.5232526704264" x2="566.5232526704264" y1="170.75" y2="171.75000000000003"/> - <line stroke="#888888" x1="566.5232526704264" x2="565.5232526704264" y1="171.75000000000003" y2="171.75000000000003"/> - <line stroke="#888888" x1="585.5232526704262" x2="585.5232526704262" y1="171.75000000000003" y2="170.75"/> - <line stroke="#888888" x1="585.5232526704262" x2="586.5232526704262" y1="170.75" y2="170.75"/> - <line stroke="#888888" x1="586.5232526704262" x2="586.5232526704262" y1="170.75" y2="171.75000000000003"/> - <line stroke="#888888" x1="586.5232526704262" x2="585.5232526704262" y1="171.75000000000003" y2="171.75000000000003"/> - <line stroke="#888888" x1="565.5232526704264" x2="565.5232526704264" y1="174.25000000000003" y2="173.25000000000003"/> - <line stroke="#888888" x1="565.5232526704264" x2="566.5232526704264" y1="173.25000000000003" y2="173.25000000000003"/> - <line stroke="#888888" x1="566.5232526704264" x2="566.5232526704264" y1="173.25000000000003" y2="174.25000000000003"/> - <line stroke="#888888" x1="566.5232526704264" x2="565.5232526704264" y1="174.25000000000003" y2="174.25000000000003"/> - <line stroke="#888888" x1="585.5232526704262" x2="585.5232526704262" y1="174.25000000000003" y2="173.25000000000003"/> - <line stroke="#888888" x1="585.5232526704262" x2="586.5232526704262" y1="173.25000000000003" y2="173.25000000000003"/> - <line stroke="#888888" x1="586.5232526704262" x2="586.5232526704262" y1="173.25000000000003" y2="174.25000000000003"/> - <line stroke="#888888" x1="586.5232526704262" x2="585.5232526704262" y1="174.25000000000003" y2="174.25000000000003"/> - <line stroke="#888888" x1="565.5232526704264" x2="565.5232526704264" y1="176.75000000000003" y2="175.75000000000003"/> - <line stroke="#888888" x1="565.5232526704264" x2="566.5232526704264" y1="175.75000000000003" y2="175.75000000000003"/> - <line stroke="#888888" x1="566.5232526704264" x2="566.5232526704264" y1="175.75000000000003" y2="176.75000000000003"/> - <line stroke="#888888" x1="566.5232526704264" x2="565.5232526704264" y1="176.75000000000003" y2="176.75000000000003"/> - <line stroke="#888888" x1="585.5232526704262" x2="585.5232526704262" y1="176.75000000000003" y2="175.75000000000003"/> - <line stroke="#888888" x1="585.5232526704262" x2="586.5232526704262" y1="175.75000000000003" y2="175.75000000000003"/> - <line stroke="#888888" x1="586.5232526704262" x2="586.5232526704262" y1="175.75000000000003" y2="176.75000000000003"/> - <line stroke="#888888" x1="586.5232526704262" x2="585.5232526704262" y1="176.75000000000003" y2="176.75000000000003"/> - <line stroke="#888888" x1="565.5232526704264" x2="565.5232526704264" y1="179.25000000000003" y2="178.25000000000003"/> - <line stroke="#888888" x1="565.5232526704264" x2="566.5232526704264" y1="178.25000000000003" y2="178.25000000000003"/> - <line stroke="#888888" x1="566.5232526704264" x2="566.5232526704264" y1="178.25000000000003" y2="179.25000000000003"/> - <line stroke="#888888" x1="566.5232526704264" x2="565.5232526704264" y1="179.25000000000003" y2="179.25000000000003"/> - <line stroke="#888888" x1="585.5232526704262" x2="585.5232526704262" y1="179.25000000000003" y2="178.25000000000003"/> - <line stroke="#888888" x1="585.5232526704262" x2="586.5232526704262" y1="178.25000000000003" y2="178.25000000000003"/> - <line stroke="#888888" x1="586.5232526704262" x2="586.5232526704262" y1="178.25000000000003" y2="179.25000000000003"/> - <line stroke="#888888" x1="586.5232526704262" x2="585.5232526704262" y1="179.25000000000003" y2="179.25000000000003"/> - <line stroke="#888888" x1="565.5232526704264" x2="565.5232526704264" y1="181.75" y2="180.75000000000003"/> - <line stroke="#888888" x1="565.5232526704264" x2="566.5232526704264" y1="180.75000000000003" y2="180.75000000000003"/> - <line stroke="#888888" x1="566.5232526704264" x2="566.5232526704264" y1="180.75000000000003" y2="181.75"/> - <line stroke="#888888" x1="566.5232526704264" x2="565.5232526704264" y1="181.75" y2="181.75"/> - <line stroke="#888888" x1="585.5232526704262" x2="585.5232526704262" y1="181.75" y2="180.75000000000003"/> - <line stroke="#888888" x1="585.5232526704262" x2="586.5232526704262" y1="180.75000000000003" y2="180.75000000000003"/> - <line stroke="#888888" x1="586.5232526704262" x2="586.5232526704262" y1="180.75000000000003" y2="181.75"/> - <line stroke="#888888" x1="586.5232526704262" x2="585.5232526704262" y1="181.75" y2="181.75"/> - <line stroke="#888888" x1="565.5232526704264" x2="565.5232526704264" y1="184.25" y2="183.25000000000003"/> - <line stroke="#888888" x1="565.5232526704264" x2="566.5232526704264" y1="183.25000000000003" y2="183.25000000000003"/> - <line stroke="#888888" x1="566.5232526704264" x2="566.5232526704264" y1="183.25000000000003" y2="184.25"/> - <line stroke="#888888" x1="566.5232526704264" x2="565.5232526704264" y1="184.25" y2="184.25"/> - <line stroke="#888888" x1="585.5232526704262" x2="585.5232526704262" y1="184.25" y2="183.25000000000003"/> - <line stroke="#888888" x1="585.5232526704262" x2="586.5232526704262" y1="183.25000000000003" y2="183.25000000000003"/> - <line stroke="#888888" x1="586.5232526704262" x2="586.5232526704262" y1="183.25000000000003" y2="184.25"/> - <line stroke="#888888" x1="586.5232526704262" x2="585.5232526704262" y1="184.25" y2="184.25"/> - <line stroke="#888888" x1="565.5232526704264" x2="565.5232526704264" y1="186.75" y2="185.75000000000003"/> - <line stroke="#888888" x1="565.5232526704264" x2="566.5232526704264" y1="185.75000000000003" y2="185.75000000000003"/> - <line stroke="#888888" x1="566.5232526704264" x2="566.5232526704264" y1="185.75000000000003" y2="186.75"/> - <line stroke="#888888" x1="566.5232526704264" x2="565.5232526704264" y1="186.75" y2="186.75"/> - <line stroke="#888888" x1="584.5232526704264" x2="584.5232526704264" y1="187.75000000000003" y2="184.75000000000003"/> - <line stroke="#888888" x1="584.5232526704264" x2="587.5232526704262" y1="184.75000000000003" y2="184.75000000000003"/> - <line stroke="#888888" x1="587.5232526704262" x2="587.5232526704262" y1="184.75000000000003" y2="187.75000000000003"/> - <line stroke="#888888" x1="587.5232526704262" x2="584.5232526704264" y1="187.75000000000003" y2="187.75000000000003"/> - <line stroke="#888888" x1="580.2732526704264" x2="571.7732526704262" y1="144.75000000000003" y2="144.75000000000003"/> - <line stroke="#888888" x1="571.7732526704262" x2="571.7732526704262" y1="144.75000000000003" y2="144.25000000000003"/> - <line stroke="#888888" x1="571.7732526704262" x2="580.2732526704264" y1="144.25000000000003" y2="144.25000000000003"/> - <line stroke="#888888" x1="580.2732526704264" x2="580.2732526704264" y1="144.25000000000003" y2="144.75000000000003"/> - <line stroke="#888888" x1="571.7732526704262" x2="580.2732526704264" y1="192.50000000000003" y2="192.50000000000003"/> - <line stroke="#888888" x1="580.2732526704264" x2="580.2732526704264" y1="192.50000000000003" y2="193.00000000000003"/> - <line stroke="#888888" x1="580.2732526704264" x2="571.7732526704262" y1="193.00000000000003" y2="193.00000000000003"/> - <line stroke="#888888" x1="571.7732526704262" x2="571.7732526704262" y1="193.00000000000003" y2="192.50000000000003"/> - <line stroke="#888888" x1="603.0232526704264" x2="603.0232526704264" y1="188.00000000000003" y2="175.0"/> - <line stroke="#888888" x1="603.0232526704264" x2="633.0232526704262" y1="175.0" y2="175.0"/> - <line stroke="#888888" x1="633.0232526704262" x2="633.0232526704262" y1="175.0" y2="188.00000000000003"/> - <line stroke="#888888" x1="633.0232526704262" x2="603.0232526704264" y1="188.00000000000003" y2="188.00000000000003"/> - <line stroke="#888888" x1="610.0914344886081" x2="598.6823435795171" y1="142.50000000000003" y2="142.50000000000003"/> - <line stroke="#888888" x1="598.6823435795171" x2="598.6823435795171" y1="142.50000000000003" y2="142.00000000000003"/> - <line stroke="#888888" x1="598.6823435795171" x2="610.0914344886081" y1="142.00000000000003" y2="142.00000000000003"/> - <line stroke="#888888" x1="610.0914344886081" x2="610.0914344886081" y1="142.00000000000003" y2="142.50000000000003"/> - <line stroke="#888888" x1="637.3641617613355" x2="625.9550708522444" y1="142.50000000000003" y2="142.50000000000003"/> - <line stroke="#888888" x1="625.9550708522444" x2="625.9550708522444" y1="142.50000000000003" y2="142.00000000000003"/> - <line stroke="#888888" x1="625.9550708522444" x2="637.3641617613355" y1="142.00000000000003" y2="142.00000000000003"/> - <line stroke="#888888" x1="637.3641617613355" x2="637.3641617613355" y1="142.00000000000003" y2="142.50000000000003"/> - <line stroke="#888888" x1="640.2732526704264" x2="640.2732526704264" y1="159.43181818181822" y2="147.84090909090912"/> - <line stroke="#888888" x1="640.2732526704264" x2="640.7732526704264" y1="147.84090909090912" y2="147.84090909090912"/> - <line stroke="#888888" x1="640.7732526704264" x2="640.7732526704264" y1="147.84090909090912" y2="159.43181818181822"/> - <line stroke="#888888" x1="640.7732526704264" x2="640.2732526704264" y1="159.43181818181822" y2="159.43181818181822"/> - <line stroke="#888888" x1="640.2732526704264" x2="640.2732526704264" y1="187.15909090909093" y2="175.5681818181818"/> - <line stroke="#888888" x1="640.2732526704264" x2="640.7732526704264" y1="175.5681818181818" y2="175.5681818181818"/> - <line stroke="#888888" x1="640.7732526704264" x2="640.7732526704264" y1="175.5681818181818" y2="187.15909090909093"/> - <line stroke="#888888" x1="640.7732526704264" x2="640.2732526704264" y1="187.15909090909093" y2="187.15909090909093"/> - <line stroke="#888888" x1="480.5232526704263" x2="480.5232526704263" y1="150.25" y2="147.25000000000003"/> - <line stroke="#888888" x1="480.5232526704263" x2="483.5232526704263" y1="147.25000000000003" y2="147.25000000000003"/> - <line stroke="#888888" x1="483.5232526704263" x2="483.5232526704263" y1="147.25000000000003" y2="150.25"/> - <line stroke="#888888" x1="483.5232526704263" x2="480.5232526704263" y1="150.25" y2="150.25"/> - <line stroke="#888888" x1="501.5232526704263" x2="501.5232526704263" y1="149.25000000000003" y2="148.25"/> - <line stroke="#888888" x1="501.5232526704263" x2="502.5232526704263" y1="148.25" y2="148.25"/> - <line stroke="#888888" x1="502.5232526704263" x2="502.5232526704263" y1="148.25" y2="149.25000000000003"/> - <line stroke="#888888" x1="502.5232526704263" x2="501.5232526704263" y1="149.25000000000003" y2="149.25000000000003"/> - <line stroke="#888888" x1="481.5232526704263" x2="481.5232526704263" y1="151.75000000000003" y2="150.75000000000003"/> - <line stroke="#888888" x1="481.5232526704263" x2="482.52325267042636" y1="150.75000000000003" y2="150.75000000000003"/> - <line stroke="#888888" x1="482.52325267042636" x2="482.52325267042636" y1="150.75000000000003" y2="151.75000000000003"/> - <line stroke="#888888" x1="482.52325267042636" x2="481.5232526704263" y1="151.75000000000003" y2="151.75000000000003"/> - <line stroke="#888888" x1="501.5232526704263" x2="501.5232526704263" y1="151.75000000000003" y2="150.75000000000003"/> - <line stroke="#888888" x1="501.5232526704263" x2="502.5232526704263" y1="150.75000000000003" y2="150.75000000000003"/> - <line stroke="#888888" x1="502.5232526704263" x2="502.5232526704263" y1="150.75000000000003" y2="151.75000000000003"/> - <line stroke="#888888" x1="502.5232526704263" x2="501.5232526704263" y1="151.75000000000003" y2="151.75000000000003"/> - <line stroke="#888888" x1="481.5232526704263" x2="481.5232526704263" y1="154.25000000000003" y2="153.25000000000003"/> - <line stroke="#888888" x1="481.5232526704263" x2="482.52325267042636" y1="153.25000000000003" y2="153.25000000000003"/> - <line stroke="#888888" x1="482.52325267042636" x2="482.52325267042636" y1="153.25000000000003" y2="154.25000000000003"/> - <line stroke="#888888" x1="482.52325267042636" x2="481.5232526704263" y1="154.25000000000003" y2="154.25000000000003"/> - <line stroke="#888888" x1="501.5232526704263" x2="501.5232526704263" y1="154.25000000000003" y2="153.25000000000003"/> - <line stroke="#888888" x1="501.5232526704263" x2="502.5232526704263" y1="153.25000000000003" y2="153.25000000000003"/> - <line stroke="#888888" x1="502.5232526704263" x2="502.5232526704263" y1="153.25000000000003" y2="154.25000000000003"/> - <line stroke="#888888" x1="502.5232526704263" x2="501.5232526704263" y1="154.25000000000003" y2="154.25000000000003"/> - <line stroke="#888888" x1="481.5232526704263" x2="481.5232526704263" y1="156.75" y2="155.75000000000003"/> - <line stroke="#888888" x1="481.5232526704263" x2="482.52325267042636" y1="155.75000000000003" y2="155.75000000000003"/> - <line stroke="#888888" x1="482.52325267042636" x2="482.52325267042636" y1="155.75000000000003" y2="156.75"/> - <line stroke="#888888" x1="482.52325267042636" x2="481.5232526704263" y1="156.75" y2="156.75"/> - <line stroke="#888888" x1="501.5232526704263" x2="501.5232526704263" y1="156.75" y2="155.75000000000003"/> - <line stroke="#888888" x1="501.5232526704263" x2="502.5232526704263" y1="155.75000000000003" y2="155.75000000000003"/> - <line stroke="#888888" x1="502.5232526704263" x2="502.5232526704263" y1="155.75000000000003" y2="156.75"/> - <line stroke="#888888" x1="502.5232526704263" x2="501.5232526704263" y1="156.75" y2="156.75"/> - <line stroke="#888888" x1="481.5232526704263" x2="481.5232526704263" y1="159.25" y2="158.25000000000003"/> - <line stroke="#888888" x1="481.5232526704263" x2="482.52325267042636" y1="158.25000000000003" y2="158.25000000000003"/> - <line stroke="#888888" x1="482.52325267042636" x2="482.52325267042636" y1="158.25000000000003" y2="159.25"/> - <line stroke="#888888" x1="482.52325267042636" x2="481.5232526704263" y1="159.25" y2="159.25"/> - <line stroke="#888888" x1="501.5232526704263" x2="501.5232526704263" y1="159.25" y2="158.25000000000003"/> - <line stroke="#888888" x1="501.5232526704263" x2="502.5232526704263" y1="158.25000000000003" y2="158.25000000000003"/> - <line stroke="#888888" x1="502.5232526704263" x2="502.5232526704263" y1="158.25000000000003" y2="159.25"/> - <line stroke="#888888" x1="502.5232526704263" x2="501.5232526704263" y1="159.25" y2="159.25"/> - <line stroke="#888888" x1="481.5232526704263" x2="481.5232526704263" y1="161.75" y2="160.75000000000003"/> - <line stroke="#888888" x1="481.5232526704263" x2="482.52325267042636" y1="160.75000000000003" y2="160.75000000000003"/> - <line stroke="#888888" x1="482.52325267042636" x2="482.52325267042636" y1="160.75000000000003" y2="161.75"/> - <line stroke="#888888" x1="482.52325267042636" x2="481.5232526704263" y1="161.75" y2="161.75"/> - <line stroke="#888888" x1="501.5232526704263" x2="501.5232526704263" y1="161.75" y2="160.75000000000003"/> - <line stroke="#888888" x1="501.5232526704263" x2="502.5232526704263" y1="160.75000000000003" y2="160.75000000000003"/> - <line stroke="#888888" x1="502.5232526704263" x2="502.5232526704263" y1="160.75000000000003" y2="161.75"/> - <line stroke="#888888" x1="502.5232526704263" x2="501.5232526704263" y1="161.75" y2="161.75"/> - <line stroke="#888888" x1="481.5232526704263" x2="481.5232526704263" y1="164.25000000000003" y2="163.25000000000003"/> - <line stroke="#888888" x1="481.5232526704263" x2="482.52325267042636" y1="163.25000000000003" y2="163.25000000000003"/> - <line stroke="#888888" x1="482.52325267042636" x2="482.52325267042636" y1="163.25000000000003" y2="164.25000000000003"/> - <line stroke="#888888" x1="482.52325267042636" x2="481.5232526704263" y1="164.25000000000003" y2="164.25000000000003"/> - <line stroke="#888888" x1="501.5232526704263" x2="501.5232526704263" y1="164.25000000000003" y2="163.25000000000003"/> - <line stroke="#888888" x1="501.5232526704263" x2="502.5232526704263" y1="163.25000000000003" y2="163.25000000000003"/> - <line stroke="#888888" x1="502.5232526704263" x2="502.5232526704263" y1="163.25000000000003" y2="164.25000000000003"/> - <line stroke="#888888" x1="502.5232526704263" x2="501.5232526704263" y1="164.25000000000003" y2="164.25000000000003"/> - <line stroke="#888888" x1="481.5232526704263" x2="481.5232526704263" y1="166.75000000000003" y2="165.75"/> - <line stroke="#888888" x1="481.5232526704263" x2="482.52325267042636" y1="165.75" y2="165.75"/> - <line stroke="#888888" x1="482.52325267042636" x2="482.52325267042636" y1="165.75" y2="166.75000000000003"/> - <line stroke="#888888" x1="482.52325267042636" x2="481.5232526704263" y1="166.75000000000003" y2="166.75000000000003"/> - <line stroke="#888888" x1="501.5232526704263" x2="501.5232526704263" y1="166.75000000000003" y2="165.75"/> - <line stroke="#888888" x1="501.5232526704263" x2="502.5232526704263" y1="165.75" y2="165.75"/> - <line stroke="#888888" x1="502.5232526704263" x2="502.5232526704263" y1="165.75" y2="166.75000000000003"/> - <line stroke="#888888" x1="502.5232526704263" x2="501.5232526704263" y1="166.75000000000003" y2="166.75000000000003"/> - <line stroke="#888888" x1="481.5232526704263" x2="481.5232526704263" y1="169.25000000000003" y2="168.25"/> - <line stroke="#888888" x1="481.5232526704263" x2="482.52325267042636" y1="168.25" y2="168.25"/> - <line stroke="#888888" x1="482.52325267042636" x2="482.52325267042636" y1="168.25" y2="169.25000000000003"/> - <line stroke="#888888" x1="482.52325267042636" x2="481.5232526704263" y1="169.25000000000003" y2="169.25000000000003"/> - <line stroke="#888888" x1="501.5232526704263" x2="501.5232526704263" y1="169.25000000000003" y2="168.25"/> - <line stroke="#888888" x1="501.5232526704263" x2="502.5232526704263" y1="168.25" y2="168.25"/> - <line stroke="#888888" x1="502.5232526704263" x2="502.5232526704263" y1="168.25" y2="169.25000000000003"/> - <line stroke="#888888" x1="502.5232526704263" x2="501.5232526704263" y1="169.25000000000003" y2="169.25000000000003"/> - <line stroke="#888888" x1="481.5232526704263" x2="481.5232526704263" y1="171.75000000000003" y2="170.75"/> - <line stroke="#888888" x1="481.5232526704263" x2="482.52325267042636" y1="170.75" y2="170.75"/> - <line stroke="#888888" x1="482.52325267042636" x2="482.52325267042636" y1="170.75" y2="171.75000000000003"/> - <line stroke="#888888" x1="482.52325267042636" x2="481.5232526704263" y1="171.75000000000003" y2="171.75000000000003"/> - <line stroke="#888888" x1="501.5232526704263" x2="501.5232526704263" y1="171.75000000000003" y2="170.75"/> - <line stroke="#888888" x1="501.5232526704263" x2="502.5232526704263" y1="170.75" y2="170.75"/> - <line stroke="#888888" x1="502.5232526704263" x2="502.5232526704263" y1="170.75" y2="171.75000000000003"/> - <line stroke="#888888" x1="502.5232526704263" x2="501.5232526704263" y1="171.75000000000003" y2="171.75000000000003"/> - <line stroke="#888888" x1="481.5232526704263" x2="481.5232526704263" y1="174.25000000000003" y2="173.25000000000003"/> - <line stroke="#888888" x1="481.5232526704263" x2="482.52325267042636" y1="173.25000000000003" y2="173.25000000000003"/> - <line stroke="#888888" x1="482.52325267042636" x2="482.52325267042636" y1="173.25000000000003" y2="174.25000000000003"/> - <line stroke="#888888" x1="482.52325267042636" x2="481.5232526704263" y1="174.25000000000003" y2="174.25000000000003"/> - <line stroke="#888888" x1="501.5232526704263" x2="501.5232526704263" y1="174.25000000000003" y2="173.25000000000003"/> - <line stroke="#888888" x1="501.5232526704263" x2="502.5232526704263" y1="173.25000000000003" y2="173.25000000000003"/> - <line stroke="#888888" x1="502.5232526704263" x2="502.5232526704263" y1="173.25000000000003" y2="174.25000000000003"/> - <line stroke="#888888" x1="502.5232526704263" x2="501.5232526704263" y1="174.25000000000003" y2="174.25000000000003"/> - <line stroke="#888888" x1="481.5232526704263" x2="481.5232526704263" y1="176.75000000000003" y2="175.75000000000003"/> - <line stroke="#888888" x1="481.5232526704263" x2="482.52325267042636" y1="175.75000000000003" y2="175.75000000000003"/> - <line stroke="#888888" x1="482.52325267042636" x2="482.52325267042636" y1="175.75000000000003" y2="176.75000000000003"/> - <line stroke="#888888" x1="482.52325267042636" x2="481.5232526704263" y1="176.75000000000003" y2="176.75000000000003"/> - <line stroke="#888888" x1="501.5232526704263" x2="501.5232526704263" y1="176.75000000000003" y2="175.75000000000003"/> - <line stroke="#888888" x1="501.5232526704263" x2="502.5232526704263" y1="175.75000000000003" y2="175.75000000000003"/> - <line stroke="#888888" x1="502.5232526704263" x2="502.5232526704263" y1="175.75000000000003" y2="176.75000000000003"/> - <line stroke="#888888" x1="502.5232526704263" x2="501.5232526704263" y1="176.75000000000003" y2="176.75000000000003"/> - <line stroke="#888888" x1="481.5232526704263" x2="481.5232526704263" y1="179.25000000000003" y2="178.25000000000003"/> - <line stroke="#888888" x1="481.5232526704263" x2="482.52325267042636" y1="178.25000000000003" y2="178.25000000000003"/> - <line stroke="#888888" x1="482.52325267042636" x2="482.52325267042636" y1="178.25000000000003" y2="179.25000000000003"/> - <line stroke="#888888" x1="482.52325267042636" x2="481.5232526704263" y1="179.25000000000003" y2="179.25000000000003"/> - <line stroke="#888888" x1="501.5232526704263" x2="501.5232526704263" y1="179.25000000000003" y2="178.25000000000003"/> - <line stroke="#888888" x1="501.5232526704263" x2="502.5232526704263" y1="178.25000000000003" y2="178.25000000000003"/> - <line stroke="#888888" x1="502.5232526704263" x2="502.5232526704263" y1="178.25000000000003" y2="179.25000000000003"/> - <line stroke="#888888" x1="502.5232526704263" x2="501.5232526704263" y1="179.25000000000003" y2="179.25000000000003"/> - <line stroke="#888888" x1="481.5232526704263" x2="481.5232526704263" y1="181.75" y2="180.75000000000003"/> - <line stroke="#888888" x1="481.5232526704263" x2="482.52325267042636" y1="180.75000000000003" y2="180.75000000000003"/> - <line stroke="#888888" x1="482.52325267042636" x2="482.52325267042636" y1="180.75000000000003" y2="181.75"/> - <line stroke="#888888" x1="482.52325267042636" x2="481.5232526704263" y1="181.75" y2="181.75"/> - <line stroke="#888888" x1="501.5232526704263" x2="501.5232526704263" y1="181.75" y2="180.75000000000003"/> - <line stroke="#888888" x1="501.5232526704263" x2="502.5232526704263" y1="180.75000000000003" y2="180.75000000000003"/> - <line stroke="#888888" x1="502.5232526704263" x2="502.5232526704263" y1="180.75000000000003" y2="181.75"/> - <line stroke="#888888" x1="502.5232526704263" x2="501.5232526704263" y1="181.75" y2="181.75"/> - <line stroke="#888888" x1="481.5232526704263" x2="481.5232526704263" y1="184.25" y2="183.25000000000003"/> - <line stroke="#888888" x1="481.5232526704263" x2="482.52325267042636" y1="183.25000000000003" y2="183.25000000000003"/> - <line stroke="#888888" x1="482.52325267042636" x2="482.52325267042636" y1="183.25000000000003" y2="184.25"/> - <line stroke="#888888" x1="482.52325267042636" x2="481.5232526704263" y1="184.25" y2="184.25"/> - <line stroke="#888888" x1="501.5232526704263" x2="501.5232526704263" y1="184.25" y2="183.25000000000003"/> - <line stroke="#888888" x1="501.5232526704263" x2="502.5232526704263" y1="183.25000000000003" y2="183.25000000000003"/> - <line stroke="#888888" x1="502.5232526704263" x2="502.5232526704263" y1="183.25000000000003" y2="184.25"/> - <line stroke="#888888" x1="502.5232526704263" x2="501.5232526704263" y1="184.25" y2="184.25"/> - <line stroke="#888888" x1="481.5232526704263" x2="481.5232526704263" y1="186.75" y2="185.75000000000003"/> - <line stroke="#888888" x1="481.5232526704263" x2="482.52325267042636" y1="185.75000000000003" y2="185.75000000000003"/> - <line stroke="#888888" x1="482.52325267042636" x2="482.52325267042636" y1="185.75000000000003" y2="186.75"/> - <line stroke="#888888" x1="482.52325267042636" x2="481.5232526704263" y1="186.75" y2="186.75"/> - <line stroke="#888888" x1="500.5232526704263" x2="500.5232526704263" y1="187.75000000000003" y2="184.75000000000003"/> - <line stroke="#888888" x1="500.5232526704263" x2="503.5232526704263" y1="184.75000000000003" y2="184.75000000000003"/> - <line stroke="#888888" x1="503.5232526704263" x2="503.5232526704263" y1="184.75000000000003" y2="187.75000000000003"/> - <line stroke="#888888" x1="503.5232526704263" x2="500.5232526704263" y1="187.75000000000003" y2="187.75000000000003"/> - <line stroke="#888888" x1="496.27325267042636" x2="487.7732526704263" y1="144.75000000000003" y2="144.75000000000003"/> - <line stroke="#888888" x1="487.7732526704263" x2="487.7732526704263" y1="144.75000000000003" y2="144.25000000000003"/> - <line stroke="#888888" x1="487.7732526704263" x2="496.27325267042636" y1="144.25000000000003" y2="144.25000000000003"/> - <line stroke="#888888" x1="496.27325267042636" x2="496.27325267042636" y1="144.25000000000003" y2="144.75000000000003"/> - <line stroke="#888888" x1="487.7732526704263" x2="496.27325267042636" y1="192.50000000000003" y2="192.50000000000003"/> - <line stroke="#888888" x1="496.27325267042636" x2="496.27325267042636" y1="192.50000000000003" y2="193.00000000000003"/> - <line stroke="#888888" x1="496.27325267042636" x2="487.7732526704263" y1="193.00000000000003" y2="193.00000000000003"/> - <line stroke="#888888" x1="487.7732526704263" x2="487.7732526704263" y1="193.00000000000003" y2="192.50000000000003"/> - <line stroke="#888888" x1="472.5232526704263" x2="477.5232526704263" y1="148.09090909090912" y2="148.09090909090912"/> - <line stroke="#888888" x1="477.5232526704263" x2="477.5232526704263" y1="148.09090909090912" y2="159.1818181818182"/> - <line stroke="#888888" x1="477.5232526704263" x2="472.5232526704263" y1="159.1818181818182" y2="159.1818181818182"/> - <line stroke="#888888" x1="472.5232526704263" x2="477.5232526704263" y1="175.81818181818184" y2="175.81818181818184"/> - <line stroke="#888888" x1="477.5232526704263" x2="477.5232526704263" y1="175.81818181818184" y2="186.90909090909093"/> - <line stroke="#888888" x1="477.5232526704263" x2="472.5232526704263" y1="186.90909090909093" y2="186.90909090909093"/> - <line stroke="#888888" x1="497.7732526704263" x2="501.2732526704263" y1="121.00000000000001" y2="121.00000000000001"/> - <line stroke="#888888" x1="501.2732526704263" x2="501.2732526704263" y1="121.00000000000001" y2="129.0"/> - <line stroke="#888888" x1="501.2732526704263" x2="497.7732526704263" y1="129.0" y2="129.0"/> + <line stroke="#000000" x1="209.0232526704265" x2="190.0232526704265" y1="120.00000000000001" y2="120.00000000000001"/> + <line opacity="0.25" stroke="#0000ff" x1="209.0232526704265" x2="270.02325267042653" y1="120.00000000000001" y2="120.00000000000001"/> + <line stroke="#000000" x1="270.02325267042653" x2="270.02325267042653" y1="120.00000000000001" y2="120.00000000000001"/> + <line stroke="#000000" x1="190.0232526704265" x2="190.0232526704265" y1="120.00000000000001" y2="120.00000000000001"/> + <line opacity="0.25" stroke="#0000ff" x1="209.0232526704265" x2="270.02325267042653" y1="83.8613780008147" y2="83.8613780008147"/> + <line stroke="#000000" x1="270.02325267042653" x2="270.02325267042653" y1="120.00000000000001" y2="83.8613780008147"/> + <line stroke="#000000" x1="209.0232526704265" x2="209.0232526704265" y1="83.8613780008147" y2="120.00000000000001"/> + <line opacity="0.25" stroke="#0000ff" x1="270.02325267042653" x2="209.0232526704265" y1="59.8613780008147" y2="59.8613780008147"/> + <line opacity="0.5" stroke="#0000ff" x1="270.02325267042653" x2="270.02325267042653" y1="59.8613780008147" y2="83.8613780008147"/> + <line stroke="#000000" x1="209.0232526704265" x2="209.0232526704265" y1="23.722756001629396" y2="59.86137800081471"/> + <line stroke="#000000" x1="270.02325267042653" x2="209.0232526704265" y1="23.722756001629396" y2="23.722756001629396"/> + <line stroke="#000000" x1="270.02325267042653" x2="270.02325267042653" y1="59.86137800081471" y2="23.722756001629396"/> + <line stroke="#000000" x1="280.02325267042653" x2="270.02325267042653" y1="59.8613780008147" y2="59.8613780008147"/> + <line stroke="#000000" x1="280.02325267042653" x2="280.02325267042653" y1="83.8613780008147" y2="59.8613780008147"/> + <line stroke="#000000" x1="270.02325267042653" x2="280.02325267042653" y1="83.8613780008147" y2="83.8613780008147"/> + <line stroke="#000000" x1="199.0232526704265" x2="209.0232526704265" y1="83.8613780008147" y2="83.8613780008147"/> + <line stroke="#000000" x1="199.0232526704265" x2="199.0232526704265" y1="59.8613780008147" y2="83.8613780008147"/> + <line stroke="#000000" x1="209.0232526704265" x2="199.0232526704265" y1="59.8613780008147" y2="59.8613780008147"/> + <line stroke="#000000" x1="166.0232526704265" x2="86.02325267042649" y1="120.00000000000001" y2="120.00000000000001"/> + <line opacity="1.0" stroke="#0000ff" x1="166.0232526704265" x2="190.0232526704265" y1="120.00000000000001" y2="120.00000000000001"/> + <line stroke="#000000" x1="270.02325267042653" x2="270.02325267042653" y1="120.00000000000001" y2="120.00000000000001"/> + <line stroke="#000000" x1="86.02325267042649" x2="86.02325267042649" y1="120.00000000000001" y2="120.00000000000001"/> + <line stroke="#000000" x1="190.0232526704265" x2="190.0232526704265" y1="120.00000000000001" y2="86.00000000000001"/> + <line opacity="0.5" stroke="#0000ff" x1="166.0232526704265" x2="166.0232526704265" y1="86.00000000000001" y2="120.00000000000001"/> + <line stroke="#000000" x1="166.0232526704265" x2="166.0232526704265" y1="50.0" y2="86.00000000000001"/> + <line opacity="0.5" stroke="#ff0000" x1="166.0232526704265" x2="190.0232526704265" y1="50.0" y2="50.0"/> + <line stroke="#000000" x1="190.0232526704265" x2="190.0232526704265" y1="86.00000000000001" y2="50.0"/> + <line stroke="#000000" x1="190.0232526704265" x2="190.0232526704265" y1="50.0" y2="5.000000000000001"/> + <line stroke="#000000" x1="166.0232526704265" x2="166.0232526704265" y1="5.000000000000001" y2="50.0"/> + <line stroke="#000000" x1="166.0232526704265" x2="166.0232526704265" y1="0.0" y2="5.000000000000001"/> + <line stroke="#000000" x1="190.0232526704265" x2="166.0232526704265" y1="0.0" y2="0.0"/> + <line stroke="#000000" x1="190.0232526704265" x2="190.0232526704265" y1="5.000000000000001" y2="0.0"/> + <line stroke="#000000" x1="166.0232526704265" x2="146.0232526704265" y1="86.00000000000001" y2="86.00000000000001"/> + <line stroke="#000000" x1="146.0232526704265" x2="166.0232526704265" y1="120.00000000000001" y2="120.00000000000001"/> + <line opacity="0.5" stroke="#0000ff" x1="146.0232526704265" x2="146.0232526704265" y1="86.00000000000001" y2="120.00000000000001"/> + <line stroke="#000000" x1="146.0232526704265" x2="122.02325267042649" y1="86.00000000000001" y2="86.00000000000001"/> + <line stroke="#000000" x1="122.02325267042649" x2="146.0232526704265" y1="120.00000000000001" y2="120.00000000000001"/> + <line opacity="0.5" stroke="#0000ff" x1="122.02325267042649" x2="122.02325267042649" y1="86.00000000000001" y2="120.00000000000001"/> + <line stroke="#000000" x1="122.02325267042649" x2="102.02325267042649" y1="86.00000000000001" y2="86.00000000000001"/> + <line stroke="#000000" x1="102.02325267042649" x2="122.02325267042649" y1="120.00000000000001" y2="120.00000000000001"/> + <line opacity="0.5" stroke="#0000ff" x1="102.02325267042649" x2="102.02325267042649" y1="120.00000000000001" y2="86.00000000000001"/> + <line stroke="#000000" x1="92.02325267042649" x2="102.02325267042649" y1="120.00000000000001" y2="120.00000000000001"/> + <line stroke="#000000" x1="92.02325267042649" x2="92.02325267042649" y1="86.00000000000001" y2="120.00000000000001"/> + <line stroke="#000000" x1="102.02325267042649" x2="92.02325267042649" y1="86.00000000000001" y2="86.00000000000001"/> + <line opacity="0.5" stroke="#0000ff" x1="270.02325267042653" x2="86.02325267042649" y1="190.00000000000003" y2="190.00000000000003"/> + <line opacity="0.2332622916434259" stroke="#0000ff" x1="270.02325267042653" x2="270.02325267042653" y1="190.00000000000003" y2="120.00000000000001"/> + <line opacity="0.9666666666666667" stroke="#ff0000" x1="270.02325267042653" x2="322.53762348858805" y1="120.00000000000001" y2="120.00000000000001"/> + <line opacity="1.0" stroke="#ff0000" x1="270.02325267042653" x2="322.53762348858805" y1="190.00000000000003" y2="120.00000000000001"/> + <line stroke="#000000" x1="270.02325267042653" x2="270.02325267042653" y1="102.49520972727949" y2="120.00000000000001"/> + <line stroke="#000000" x1="322.53762348858805" x2="270.02325267042653" y1="102.49520972727949" y2="102.49520972727949"/> + <line stroke="#000000" x1="322.53762348858805" x2="322.53762348858805" y1="120.00000000000001" y2="102.49520972727949"/> + <line opacity="1.0" stroke="#0000ff" x1="270.02325267042653" x2="337.22840034432573" y1="190.00000000000003" y2="170.4176577976636"/> + <line stroke="#000000" x1="337.22840034432573" x2="322.53762348858805" y1="170.4176577976636" y2="120.00000000000001"/> + <line stroke="#000000" x1="351.91917720006325" x2="337.22840034432573" y1="220.83531559532716" y2="170.4176577976636"/> + <line stroke="#000000" x1="356.04650534085283" x2="351.91917720006325" y1="235.00000000000003" y2="220.83531559532716"/> + <line opacity="0.31677294251280175" stroke="#0000ff" x1="356.04650534085283" x2="270.02325267042653" y1="235.00000000000003" y2="190.00000000000003"/> + <line opacity="0.3025684567112535" stroke="#0000ff" x1="270.02325267042653" x2="270.02325267042653" y1="235.00000000000003" y2="190.00000000000003"/> + <line opacity="0.3025684567112535" stroke="#0000ff" x1="270.02325267042653" x2="270.02325267042653" y1="280.00000000000006" y2="235.00000000000006"/> + <line opacity="0.31677294251280175" stroke="#0000ff" x1="356.04650534085283" x2="270.02325267042653" y1="235.00000000000003" y2="280.0000000000001"/> + <line opacity="1.0" stroke="#0000ff" x1="337.22840034432573" x2="270.02325267042653" y1="299.5823422023365" y2="280.0000000000001"/> + <line stroke="#000000" x1="351.91917720006325" x2="356.04650534085283" y1="249.16468440467293" y2="235.00000000000003"/> + <line stroke="#000000" x1="337.22840034432573" x2="351.91917720006325" y1="299.5823422023365" y2="249.16468440467293"/> + <line stroke="#000000" x1="322.53762348858817" x2="337.22840034432573" y1="350.0" y2="299.58234220233646"/> + <line opacity="1.0" stroke="#ff0000" x1="322.53762348858817" x2="270.02325267042653" y1="350.0" y2="280.0000000000001"/> + <line opacity="0.2332622916434259" stroke="#0000ff" x1="270.0232526704266" x2="270.02325267042653" y1="350.00000000000006" y2="280.00000000000006"/> + <line opacity="0.9666666666666667" stroke="#ff0000" x1="322.53762348858817" x2="270.0232526704266" y1="350.0" y2="350.00000000000006"/> + <line opacity="0.5" stroke="#0000ff" x1="270.02325267042653" x2="86.02325267042643" y1="280.00000000000006" y2="280.0000000000002"/> + <line opacity="1.0" stroke="#0000ff" x1="190.02325267042653" x2="166.02325267042656" y1="350.0000000000001" y2="350.0000000000001"/> + <line stroke="#000000" x1="86.0232526704265" x2="166.02325267042656" y1="350.0000000000002" y2="350.0000000000001"/> + <line stroke="#000000" x1="86.0232526704265" x2="86.0232526704265" y1="350.0000000000002" y2="350.0000000000002"/> + <line stroke="#000000" x1="270.0232526704266" x2="270.0232526704266" y1="350.00000000000006" y2="350.00000000000006"/> + <line stroke="#000000" x1="190.02325267042653" x2="209.02325267042656" y1="350.0000000000001" y2="350.0000000000001"/> + <line stroke="#000000" x1="190.02325267042653" x2="190.02325267042653" y1="350.0000000000001" y2="350.0000000000001"/> + <line stroke="#000000" x1="270.0232526704266" x2="270.0232526704266" y1="350.00000000000006" y2="350.00000000000006"/> + <line stroke="#000000" x1="270.0232526704266" x2="270.0232526704266" y1="360.0000000000001" y2="350.00000000000006"/> + <line stroke="#000000" x1="209.0232526704266" x2="270.0232526704266" y1="360.00000000000017" y2="360.0000000000001"/> + <line stroke="#000000" x1="209.02325267042656" x2="209.0232526704266" y1="350.0000000000001" y2="360.00000000000017"/> + <line stroke="#000000" x1="190.0232526704266" x2="190.02325267042653" y1="384.00000000000017" y2="350.0000000000001"/> + <line opacity="0.5" stroke="#0000ff" x1="166.02325267042656" x2="166.0232526704266" y1="350.0000000000001" y2="384.00000000000017"/> + <line stroke="#000000" x1="190.02325267042664" x2="190.0232526704266" y1="420.00000000000017" y2="384.00000000000017"/> + <line opacity="0.5" stroke="#ff0000" x1="190.02325267042664" x2="166.02325267042661" y1="420.00000000000017" y2="420.00000000000017"/> + <line stroke="#000000" x1="166.0232526704266" x2="166.02325267042661" y1="384.00000000000017" y2="420.00000000000017"/> + <line stroke="#000000" x1="166.02325267042661" x2="166.02325267042667" y1="420.00000000000017" y2="465.00000000000017"/> + <line stroke="#000000" x1="190.02325267042667" x2="190.02325267042664" y1="465.00000000000017" y2="420.00000000000017"/> + <line stroke="#000000" x1="166.02325267042667" x2="190.02325267042667" y1="465.00000000000017" y2="465.00000000000017"/> + <line stroke="#000000" x1="166.02325267042656" x2="146.02325267042656" y1="350.0000000000001" y2="350.0000000000001"/> + <line stroke="#000000" x1="146.0232526704266" x2="166.0232526704266" y1="384.00000000000017" y2="384.00000000000017"/> + <line opacity="0.5" stroke="#0000ff" x1="146.02325267042656" x2="146.0232526704266" y1="350.0000000000001" y2="384.00000000000017"/> + <line stroke="#000000" x1="146.02325267042656" x2="122.02325267042653" y1="350.0000000000001" y2="350.0000000000001"/> + <line stroke="#000000" x1="122.02325267042656" x2="146.0232526704266" y1="384.00000000000017" y2="384.00000000000017"/> + <line opacity="0.5" stroke="#0000ff" x1="122.02325267042653" x2="122.02325267042656" y1="350.0000000000001" y2="384.00000000000017"/> + <line stroke="#000000" x1="122.02325267042653" x2="102.02325267042653" y1="350.0000000000001" y2="350.0000000000001"/> + <line stroke="#000000" x1="102.02325267042656" x2="122.02325267042656" y1="384.00000000000017" y2="384.00000000000017"/> + <line opacity="0.5" stroke="#0000ff" x1="102.02325267042656" x2="102.02325267042653" y1="384.00000000000017" y2="350.0000000000001"/> + <line stroke="#000000" x1="92.02325267042654" x2="102.02325267042654" y1="384.00000000000017" y2="384.00000000000017"/> + <line stroke="#000000" x1="92.02325267042652" x2="92.02325267042654" y1="350.0000000000001" y2="384.00000000000017"/> + <line stroke="#000000" x1="102.02325267042652" x2="92.02325267042652" y1="350.0000000000001" y2="350.0000000000001"/> + <line opacity="0.2332622916434259" stroke="#0000ff" x1="86.02325267042642" x2="86.0232526704265" y1="280.0000000000003" y2="350.0000000000002"/> + <line opacity="0.9666666666666667" stroke="#ff0000" x1="86.0232526704265" x2="33.5088818522649" y1="350.0000000000002" y2="350.00000000000034"/> + <line opacity="1.0" stroke="#ff0000" x1="86.02325267042642" x2="33.5088818522649" y1="280.0000000000003" y2="350.00000000000034"/> + <line stroke="#000000" x1="86.02325267042652" x2="86.0232526704265" y1="367.50479027272075" y2="350.0000000000002"/> + <line stroke="#000000" x1="33.50888185226492" x2="86.02325267042652" y1="367.5047902727208" y2="367.50479027272075"/> + <line stroke="#000000" x1="33.5088818522649" x2="33.50888185226492" y1="350.00000000000034" y2="367.5047902727208"/> + <line opacity="1.0" stroke="#0000ff" x1="86.02325267042643" x2="18.81810499652727" y1="280.0000000000002" y2="299.5823422023367"/> + <line stroke="#000000" x1="18.81810499652727" x2="33.5088818522649" y1="299.5823422023367" y2="350.0000000000002"/> + <line stroke="#000000" x1="4.127328140789616" x2="18.81810499652724" y1="249.16468440467318" y2="299.5823422023367"/> + <line stroke="#000000" x1="2.8421709430404014e-14" x2="4.127328140789616" y1="235.0000000000003" y2="249.16468440467318"/> + <line opacity="0.31677294251280175" stroke="#0000ff" x1="2.8421709430404014e-14" x2="86.02325267042642" y1="235.0000000000003" y2="280.0000000000003"/> + <line opacity="0.3025684567112535" stroke="#0000ff" x1="86.02325267042637" x2="86.02325267042642" y1="235.0000000000002" y2="280.0000000000003"/> + <line opacity="0.3025684567112535" stroke="#0000ff" x1="86.0232526704263" x2="86.02325267042636" y1="190.0000000000002" y2="235.0000000000002"/> + <line opacity="0.31677294251280175" stroke="#0000ff" x1="2.8421709430404014e-14" x2="86.0232526704263" y1="235.0000000000003" y2="190.0000000000002"/> + <line opacity="1.0" stroke="#0000ff" x1="18.818104996527016" x2="86.02325267042627" y1="170.41765779766385" y2="190.0000000000002"/> + <line stroke="#000000" x1="4.127328140789531" x2="0.0" y1="220.83531559532747" y2="235.0000000000003"/> + <line stroke="#000000" x1="18.818104996527016" x2="4.127328140789531" y1="170.41765779766385" y2="220.83531559532747"/> + <line stroke="#000000" x1="33.50888185226453" x2="18.818104996527044" y1="120.00000000000027" y2="170.41765779766388"/> + <line opacity="1.0" stroke="#ff0000" x1="33.50888185226453" x2="86.02325267042629" y1="120.00000000000027" y2="190.0000000000002"/> + <line opacity="0.2332622916434259" stroke="#0000ff" x1="86.02325267042613" x2="86.0232526704263" y1="120.00000000000016" y2="190.0000000000002"/> + <line opacity="0.9666666666666667" stroke="#ff0000" x1="33.50888185226453" x2="86.02325267042613" y1="120.00000000000027" y2="120.00000000000016"/> + <line stroke="#000000" x1="33.5088818522645" x2="33.50888185226453" y1="102.49520972727973" y2="120.00000000000027"/> + <line stroke="#000000" x1="86.02325267042612" x2="33.5088818522645" y1="102.49520972727963" y2="102.49520972727973"/> + <line stroke="#000000" x1="86.02325267042613" x2="86.02325267042612" y1="120.00000000000016" y2="102.49520972727963"/> + <line stroke="#000000" x1="322.5376234885882" x2="322.53762348858817" y1="367.5047902727206" y2="350.0"/> + <line stroke="#000000" x1="270.0232526704266" x2="322.5376234885882" y1="367.50479027272064" y2="367.5047902727206"/> + <line stroke="#000000" x1="270.0232526704266" x2="270.0232526704266" y1="350.00000000000006" y2="367.50479027272064"/> + <line stroke="#888888" x1="227.0232526704265" x2="238.0232526704265" y1="65.3613780008147" y2="65.3613780008147"/> + <line stroke="#888888" x1="238.0232526704265" x2="238.0232526704265" y1="65.3613780008147" y2="78.3613780008147"/> + <line stroke="#888888" x1="238.0232526704265" x2="227.0232526704265" y1="78.3613780008147" y2="78.3613780008147"/> + <line stroke="#888888" x1="227.0232526704265" x2="227.0232526704265" y1="78.3613780008147" y2="65.3613780008147"/> + <line stroke="#888888" x1="258.52325267042653" x2="264.52325267042653" y1="66.8613780008147" y2="66.8613780008147"/> + <line stroke="#888888" x1="264.52325267042653" x2="264.52325267042653" y1="66.8613780008147" y2="76.8613780008147"/> + <line stroke="#888888" x1="264.52325267042653" x2="258.52325267042653" y1="76.8613780008147" y2="76.8613780008147"/> + <line stroke="#888888" x1="258.52325267042653" x2="258.52325267042653" y1="76.8613780008147" y2="66.8613780008147"/> + <line stroke="#888888" x1="231.4550708522447" x2="219.8641617613356" y1="31.472756001629396" y2="31.472756001629396"/> + <line stroke="#888888" x1="219.8641617613356" x2="219.8641617613356" y1="31.472756001629396" y2="30.9727560016294"/> + <line stroke="#888888" x1="219.8641617613356" x2="231.4550708522447" y1="30.9727560016294" y2="30.9727560016294"/> + <line stroke="#888888" x1="231.4550708522447" x2="231.4550708522447" y1="30.9727560016294" y2="31.472756001629396"/> + <line stroke="#888888" x1="259.1823435795174" x2="247.59143448860831" y1="31.472756001629396" y2="31.472756001629396"/> + <line stroke="#888888" x1="247.59143448860831" x2="247.59143448860831" y1="31.472756001629396" y2="30.9727560016294"/> + <line stroke="#888888" x1="247.59143448860831" x2="259.1823435795174" y1="30.9727560016294" y2="30.9727560016294"/> + <line stroke="#888888" x1="259.1823435795174" x2="259.1823435795174" y1="30.9727560016294" y2="31.472756001629396"/> + <line stroke="#888888" x1="277.5232526704265" x2="272.5232526704265" y1="75.8613780008147" y2="75.8613780008147"/> + <line stroke="#888888" x1="272.5232526704265" x2="272.5232526704265" y1="75.8613780008147" y2="67.8613780008147"/> + <line stroke="#888888" x1="272.5232526704265" x2="277.5232526704265" y1="67.8613780008147" y2="67.8613780008147"/> + <line stroke="#888888" x1="201.5232526704265" x2="206.5232526704265" y1="67.8613780008147" y2="67.8613780008147"/> + <line stroke="#888888" x1="206.5232526704265" x2="206.5232526704265" y1="67.8613780008147" y2="75.8613780008147"/> + <line stroke="#888888" x1="206.5232526704265" x2="201.5232526704265" y1="75.8613780008147" y2="75.8613780008147"/> + <line stroke="#888888" x1="182.2732526704265" x2="182.2732526704265" y1="108.91666666666669" y2="97.08333333333336"/> + <line stroke="#888888" x1="182.2732526704265" x2="182.7732526704265" y1="97.08333333333336" y2="97.08333333333336"/> + <line stroke="#888888" x1="182.7732526704265" x2="182.7732526704265" y1="97.08333333333336" y2="108.91666666666669"/> + <line stroke="#888888" x1="182.7732526704265" x2="182.2732526704265" y1="108.91666666666669" y2="108.91666666666669"/> + <line stroke="#888888" x1="182.0232526704265" x2="184.5232526704265" y1="1.2500000000000002" y2="1.2500000000000002"/> + <line stroke="#888888" x1="184.5232526704265" x2="182.0232526704265" y1="1.2500000000000002" y2="3.7500000000000004"/> + <line stroke="#888888" x1="182.0232526704265" x2="174.0232526704265" y1="3.7500000000000004" y2="3.7500000000000004"/> + <line stroke="#888888" x1="174.0232526704265" x2="171.5232526704265" y1="3.7500000000000004" y2="1.2500000000000002"/> + <line stroke="#888888" x1="171.5232526704265" x2="174.0232526704265" y1="1.2500000000000002" y2="1.2500000000000002"/> + <line stroke="#888888" x1="147.02325267042647" x2="151.0232526704265" y1="97.00000000000001" y2="97.00000000000001"/> + <line stroke="#888888" x1="151.0232526704265" x2="151.0232526704265" y1="97.00000000000001" y2="109.00000000000001"/> + <line stroke="#888888" x1="151.0232526704265" x2="147.02325267042647" y1="109.00000000000001" y2="109.00000000000001"/> + <line stroke="#888888" x1="147.02325267042647" x2="147.02325267042647" y1="109.00000000000001" y2="97.00000000000001"/> + <line stroke="#888888" x1="159.0232526704265" x2="163.02325267042647" y1="98.50000000000001" y2="98.50000000000001"/> + <line stroke="#888888" x1="163.02325267042647" x2="163.02325267042647" y1="98.50000000000001" y2="107.50000000000001"/> + <line stroke="#888888" x1="163.02325267042647" x2="159.0232526704265" y1="107.50000000000001" y2="107.50000000000001"/> + <line stroke="#888888" x1="159.0232526704265" x2="159.0232526704265" y1="107.50000000000001" y2="98.50000000000001"/> + <line stroke="#888888" x1="122.52325267042649" x2="145.5232526704265" y1="97.00000000000001" y2="97.00000000000001"/> + <line stroke="#888888" x1="145.5232526704265" x2="145.5232526704265" y1="97.00000000000001" y2="109.00000000000001"/> + <line stroke="#888888" x1="145.5232526704265" x2="122.52325267042649" y1="109.00000000000001" y2="109.00000000000001"/> + <line stroke="#888888" x1="122.52325267042649" x2="122.52325267042649" y1="109.00000000000001" y2="97.00000000000001"/> + <line stroke="#888888" x1="117.02325267042649" x2="121.02325267042649" y1="97.00000000000001" y2="97.00000000000001"/> + <line stroke="#888888" x1="121.02325267042649" x2="121.02325267042649" y1="97.00000000000001" y2="109.00000000000001"/> + <line stroke="#888888" x1="121.02325267042649" x2="117.02325267042649" y1="109.00000000000001" y2="109.00000000000001"/> + <line stroke="#888888" x1="117.02325267042649" x2="117.02325267042649" y1="109.00000000000001" y2="97.00000000000001"/> + <line stroke="#888888" x1="94.52325267042649" x2="99.52325267042649" y1="97.33333333333336" y2="97.33333333333336"/> + <line stroke="#888888" x1="99.52325267042649" x2="99.52325267042649" y1="97.33333333333336" y2="108.66666666666669"/> + <line stroke="#888888" x1="99.52325267042649" x2="94.52325267042649" y1="108.66666666666669" y2="108.66666666666669"/> + <line stroke="#888888" x1="305.0328332158675" x2="305.0328332158675" y1="106.87140729545962" y2="115.62380243181988"/> + <line stroke="#888888" x1="305.0328332158675" x2="287.52804294314706" y1="115.62380243181988" y2="115.62380243181988"/> + <line stroke="#888888" x1="287.52804294314706" x2="287.52804294314706" y1="115.62380243181988" y2="106.87140729545962"/> + <line stroke="#888888" x1="334.2477556839554" x2="329.21095619250247" y1="208.0120791976936" y2="190.7261564960398"/> + <line stroke="#888888" x1="329.21095619250247" x2="329.6909929616017" y1="190.7261564960398" y2="190.5862826231659"/> + <line stroke="#888888" x1="329.6909929616017" x2="334.72779245305475" y1="190.5862826231659" y2="207.87220532481976"/> + <line stroke="#888888" x1="334.72779245305475" x2="334.2477556839554" y1="207.87220532481976" y2="208.0120791976936"/> + <line stroke="#888888" x1="329.21095619250247" x2="334.24775568395546" y1="279.27384350396034" y2="261.98792080230646"/> + <line stroke="#888888" x1="334.24775568395546" x2="334.72779245305475" y1="261.98792080230646" y2="262.12779467518027"/> + <line stroke="#888888" x1="334.72779245305475" x2="329.69099296160175" y1="262.12779467518027" y2="279.41371737683414"/> + <line stroke="#888888" x1="329.69099296160175" x2="329.21095619250247" y1="279.41371737683414" y2="279.27384350396034"/> + <line stroke="#888888" x1="220.11416176133568" x2="220.11416176133568" y1="357.50000000000017" y2="352.50000000000017"/> + <line stroke="#888888" x1="220.11416176133568" x2="231.20507085224477" y1="352.50000000000017" y2="352.50000000000017"/> + <line stroke="#888888" x1="231.20507085224477" x2="231.20507085224477" y1="352.50000000000017" y2="357.50000000000017"/> + <line stroke="#888888" x1="247.84143448860843" x2="247.84143448860843" y1="357.50000000000017" y2="352.50000000000017"/> + <line stroke="#888888" x1="247.84143448860843" x2="258.9323435795175" y1="352.50000000000017" y2="352.5000000000001"/> + <line stroke="#888888" x1="258.9323435795175" x2="258.9323435795175" y1="352.5000000000001" y2="357.5000000000001"/> + <line stroke="#888888" x1="182.2732526704266" x2="182.2732526704266" y1="372.91666666666674" y2="361.08333333333354"/> + <line stroke="#888888" x1="182.2732526704266" x2="182.7732526704266" y1="361.08333333333354" y2="361.08333333333354"/> + <line stroke="#888888" x1="182.7732526704266" x2="182.7732526704266" y1="361.08333333333354" y2="372.91666666666674"/> + <line stroke="#888888" x1="182.7732526704266" x2="182.2732526704266" y1="372.91666666666674" y2="372.91666666666674"/> + <line stroke="#888888" x1="173.77325267042664" x2="182.27325267042667" y1="461.00000000000017" y2="461.00000000000017"/> + <line stroke="#888888" x1="182.27325267042667" x2="182.27325267042667" y1="461.00000000000017" y2="461.50000000000017"/> + <line stroke="#888888" x1="182.27325267042667" x2="173.77325267042664" y1="461.50000000000017" y2="461.50000000000017"/> + <line stroke="#888888" x1="173.77325267042664" x2="173.77325267042664" y1="461.50000000000017" y2="461.00000000000017"/> + <line stroke="#888888" x1="147.02325267042653" x2="151.02325267042653" y1="361.00000000000017" y2="361.00000000000017"/> + <line stroke="#888888" x1="151.02325267042653" x2="151.02325267042656" y1="361.00000000000017" y2="373.0000000000001"/> + <line stroke="#888888" x1="151.02325267042656" x2="147.02325267042653" y1="373.0000000000001" y2="373.0000000000001"/> + <line stroke="#888888" x1="147.02325267042653" x2="147.02325267042653" y1="373.0000000000001" y2="361.00000000000017"/> + <line stroke="#888888" x1="159.02325267042656" x2="163.02325267042653" y1="362.50000000000017" y2="362.50000000000017"/> + <line stroke="#888888" x1="163.02325267042653" x2="163.02325267042656" y1="362.50000000000017" y2="371.50000000000017"/> + <line stroke="#888888" x1="163.02325267042656" x2="159.0232526704266" y1="371.50000000000017" y2="371.50000000000017"/> + <line stroke="#888888" x1="159.0232526704266" x2="159.02325267042656" y1="371.50000000000017" y2="362.50000000000017"/> + <line stroke="#888888" x1="122.52325267042654" x2="145.52325267042656" y1="361.00000000000017" y2="361.00000000000017"/> + <line stroke="#888888" x1="145.52325267042656" x2="145.5232526704266" y1="361.00000000000017" y2="373.0000000000001"/> + <line stroke="#888888" x1="145.5232526704266" x2="122.52325267042656" y1="373.0000000000001" y2="373.0000000000001"/> + <line stroke="#888888" x1="122.52325267042656" x2="122.52325267042654" y1="373.0000000000001" y2="361.00000000000017"/> + <line stroke="#888888" x1="117.02325267042654" x2="121.02325267042654" y1="361.00000000000017" y2="361.00000000000017"/> + <line stroke="#888888" x1="121.02325267042654" x2="121.02325267042654" y1="361.00000000000017" y2="373.0000000000001"/> + <line stroke="#888888" x1="121.02325267042654" x2="117.02325267042654" y1="373.0000000000001" y2="373.0000000000001"/> + <line stroke="#888888" x1="117.02325267042654" x2="117.02325267042654" y1="373.0000000000001" y2="361.00000000000017"/> + <line stroke="#888888" x1="94.52325267042652" x2="99.52325267042653" y1="361.33333333333354" y2="361.33333333333354"/> + <line stroke="#888888" x1="99.52325267042653" x2="99.52325267042654" y1="361.33333333333354" y2="372.6666666666668"/> + <line stroke="#888888" x1="99.52325267042654" x2="94.52325267042653" y1="372.6666666666668" y2="372.6666666666668"/> + <line stroke="#888888" x1="51.013672124985426" x2="51.013672124985426" y1="363.1285927045407" y2="354.37619756818043"/> + <line stroke="#888888" x1="51.013672124985426" x2="68.51846239770595" y1="354.37619756818043" y2="354.37619756818043"/> + <line stroke="#888888" x1="68.51846239770595" x2="68.51846239770595" y1="354.37619756818043" y2="363.1285927045407"/> + <line stroke="#888888" x1="21.79874965689743" x2="26.83554914835048" y1="261.98792080230675" y2="279.27384350396056"/> + <line stroke="#888888" x1="26.83554914835048" x2="26.3555123792512" y1="279.27384350396056" y2="279.4137173768344"/> + <line stroke="#888888" x1="26.3555123792512" x2="21.318712887798146" y1="279.4137173768344" y2="262.1277946751806"/> + <line stroke="#888888" x1="21.318712887798146" x2="21.79874965689743" y1="262.1277946751806" y2="261.98792080230675"/> + <line stroke="#888888" x1="26.835549148350314" x2="21.798749656897318" y1="190.72615649604003" y2="208.01207919769385"/> + <line stroke="#888888" x1="21.798749656897318" x2="21.31871288779803" y1="208.01207919769385" y2="207.87220532482004"/> + <line stroke="#888888" x1="21.31871288779803" x2="26.355512379251028" y1="207.87220532482004" y2="190.58628262316623"/> + <line stroke="#888888" x1="26.355512379251028" x2="26.835549148350314" y1="190.58628262316623" y2="190.72615649604003"/> + <line stroke="#888888" x1="68.51846239770558" x2="68.51846239770559" y1="106.87140729545979" y2="115.62380243182007"/> + <line stroke="#888888" x1="68.51846239770559" x2="51.01367212498506" y1="115.62380243182007" y2="115.6238024318201"/> + <line stroke="#888888" x1="51.01367212498506" x2="51.01367212498503" y1="115.6238024318201" y2="106.87140729545983"/> + <line stroke="#888888" x1="287.52804294314717" x2="287.52804294314717" y1="363.12859270454044" y2="354.3761975681802"/> + <line stroke="#888888" x1="287.52804294314717" x2="305.0328332158677" y1="354.3761975681802" y2="354.3761975681802"/> + <line stroke="#888888" x1="305.0328332158677" x2="305.0328332158677" y1="354.3761975681802" y2="363.12859270454044"/> + <line opacity="0.5" stroke="#0000ff" x1="399.04650534085283" x2="460.04650534085283" y1="108.00000000000001" y2="108.00000000000001"/> + <line opacity="0.5" stroke="#0000ff" x1="460.04650534085283" x2="460.04650534085283" y1="108.00000000000001" y2="132.0"/> + <line opacity="0.5" stroke="#0000ff" x1="460.04650534085283" x2="399.04650534085283" y1="132.0" y2="132.0"/> + <line opacity="0.5" stroke="#0000ff" x1="399.04650534085283" x2="399.04650534085283" y1="132.0" y2="108.00000000000001"/> + <line stroke="#000000" x1="399.04650534085283" x2="399.04650534085283" y1="101.00000000000001" y2="108.00000000000001"/> + <line stroke="#000000" x1="459.0465053408528" x2="399.04650534085283" y1="101.00000000000001" y2="101.00000000000001"/> + <line stroke="#000000" x1="459.0465053408528" x2="459.0465053408528" y1="108.00000000000001" y2="101.00000000000001"/> + <line stroke="#000000" x1="467.04650534085283" x2="460.04650534085283" y1="108.00000000000001" y2="108.00000000000001"/> + <line stroke="#000000" x1="467.04650534085283" x2="467.04650534085283" y1="132.0" y2="108.00000000000001"/> + <line stroke="#000000" x1="460.04650534085283" x2="467.04650534085283" y1="132.0" y2="132.0"/> + <line opacity="0.5" stroke="#0000ff" x1="460.04650534085283" x2="460.04650534085283" y1="132.0" y2="193.00000000000003"/> + <line stroke="#000000" x1="400.0465053408528" x2="460.04650534085283" y1="193.00000000000003" y2="193.00000000000003"/> + <line opacity="0.5" stroke="#0000ff" x1="400.0465053408528" x2="400.0465053408528" y1="132.0" y2="193.00000000000003"/> + <line stroke="#000000" x1="484.04650534085283" x2="460.04650534085283" y1="132.0" y2="132.0"/> + <line opacity="0.5" stroke="#0000ff" x1="484.04650534085283" x2="484.04650534085283" y1="132.0" y2="193.00000000000003"/> + <line stroke="#000000" x1="460.04650534085283" x2="484.04650534085283" y1="193.00000000000003" y2="193.00000000000003"/> + <line stroke="#000000" x1="544.0465053408527" x2="484.04650534085283" y1="132.0" y2="132.0"/> + <line stroke="#000000" x1="544.0465053408527" x2="544.0465053408527" y1="193.00000000000003" y2="132.0"/> + <line stroke="#000000" x1="484.04650534085283" x2="544.0465053408527" y1="193.00000000000003" y2="193.00000000000003"/> + <line stroke="#000000" x1="400.0465053408528" x2="376.04650534085283" y1="132.0" y2="132.0"/> + <line stroke="#000000" x1="376.04650534085283" x2="400.0465053408528" y1="193.00000000000003" y2="193.00000000000003"/> + <line opacity="0.5" stroke="#0000ff" x1="376.04650534085283" x2="376.04650534085283" y1="193.00000000000003" y2="132.0"/> + <line stroke="#000000" x1="366.04650534085283" x2="376.04650534085283" y1="193.00000000000003" y2="193.00000000000003"/> + <line stroke="#000000" x1="366.04650534085283" x2="366.04650534085283" y1="132.0" y2="193.00000000000003"/> + <line stroke="#000000" x1="376.04650534085283" x2="366.04650534085283" y1="132.0" y2="132.0"/> + <line stroke="#000000" x1="392.04650534085283" x2="399.04650534085283" y1="132.0" y2="132.0"/> + <line stroke="#000000" x1="392.04650534085283" x2="392.04650534085283" y1="108.00000000000001" y2="132.0"/> + <line stroke="#000000" x1="399.04650534085283" x2="392.04650534085283" y1="108.00000000000001" y2="108.00000000000001"/> + <line stroke="#888888" x1="448.1374144317619" x2="451.6374144317619" y1="102.75000000000001" y2="102.75000000000001"/> + <line stroke="#888888" x1="451.6374144317619" x2="448.1374144317619" y1="102.75000000000001" y2="106.25000000000001"/> + <line stroke="#888888" x1="448.1374144317619" x2="437.228323522671" y1="106.25000000000001" y2="106.25000000000001"/> + <line stroke="#888888" x1="437.228323522671" x2="433.72832352267096" y1="106.25000000000001" y2="102.75000000000001"/> + <line stroke="#888888" x1="433.72832352267096" x2="437.228323522671" y1="102.75000000000001" y2="102.75000000000001"/> + <line stroke="#888888" x1="420.86468715903464" x2="424.36468715903464" y1="102.75000000000001" y2="102.75000000000001"/> + <line stroke="#888888" x1="424.36468715903464" x2="420.86468715903464" y1="102.75000000000001" y2="106.25000000000001"/> + <line stroke="#888888" x1="420.86468715903464" x2="409.9555962499437" y1="106.25000000000001" y2="106.25000000000001"/> + <line stroke="#888888" x1="409.9555962499437" x2="406.45559624994377" y1="106.25000000000001" y2="102.75000000000001"/> + <line stroke="#888888" x1="406.45559624994377" x2="409.9555962499437" y1="102.75000000000001" y2="102.75000000000001"/> + <line stroke="#888888" x1="465.29650534085283" x2="461.79650534085283" y1="124.00000000000003" y2="124.00000000000003"/> + <line stroke="#888888" x1="461.79650534085283" x2="461.79650534085283" y1="124.00000000000003" y2="116.0"/> + <line stroke="#888888" x1="461.79650534085283" x2="465.29650534085283" y1="116.0" y2="116.0"/> + <line stroke="#888888" x1="407.54650534085283" x2="407.54650534085283" y1="183.50000000000003" y2="165.50000000000003"/> + <line stroke="#888888" x1="407.54650534085283" x2="442.54650534085283" y1="165.50000000000003" y2="165.50000000000003"/> + <line stroke="#888888" x1="442.54650534085283" x2="442.54650534085283" y1="165.50000000000003" y2="183.50000000000003"/> + <line stroke="#888888" x1="442.54650534085283" x2="407.54650534085283" y1="183.50000000000003" y2="183.50000000000003"/> + <line stroke="#888888" x1="460.54650534085283" x2="460.54650534085283" y1="145.25" y2="142.25000000000003"/> + <line stroke="#888888" x1="460.54650534085283" x2="463.5465053408528" y1="142.25000000000003" y2="142.25000000000003"/> + <line stroke="#888888" x1="463.5465053408528" x2="463.5465053408528" y1="142.25000000000003" y2="145.25"/> + <line stroke="#888888" x1="463.5465053408528" x2="460.54650534085283" y1="145.25" y2="145.25"/> + <line stroke="#888888" x1="481.5465053408529" x2="481.5465053408529" y1="144.25000000000003" y2="143.25"/> + <line stroke="#888888" x1="481.5465053408529" x2="482.54650534085283" y1="143.25" y2="143.25"/> + <line stroke="#888888" x1="482.54650534085283" x2="482.54650534085283" y1="143.25" y2="144.25000000000003"/> + <line stroke="#888888" x1="482.54650534085283" x2="481.5465053408529" y1="144.25000000000003" y2="144.25000000000003"/> + <line stroke="#888888" x1="461.54650534085283" x2="461.54650534085283" y1="146.75000000000003" y2="145.75"/> + <line stroke="#888888" x1="461.54650534085283" x2="462.54650534085283" y1="145.75" y2="145.75"/> + <line stroke="#888888" x1="462.54650534085283" x2="462.54650534085283" y1="145.75" y2="146.75000000000003"/> + <line stroke="#888888" x1="462.54650534085283" x2="461.54650534085283" y1="146.75000000000003" y2="146.75000000000003"/> + <line stroke="#888888" x1="481.5465053408529" x2="481.5465053408529" y1="146.75000000000003" y2="145.75"/> + <line stroke="#888888" x1="481.5465053408529" x2="482.54650534085283" y1="145.75" y2="145.75"/> + <line stroke="#888888" x1="482.54650534085283" x2="482.54650534085283" y1="145.75" y2="146.75000000000003"/> + <line stroke="#888888" x1="482.54650534085283" x2="481.5465053408529" y1="146.75000000000003" y2="146.75000000000003"/> + <line stroke="#888888" x1="461.54650534085283" x2="461.54650534085283" y1="149.25000000000003" y2="148.25"/> + <line stroke="#888888" x1="461.54650534085283" x2="462.54650534085283" y1="148.25" y2="148.25"/> + <line stroke="#888888" x1="462.54650534085283" x2="462.54650534085283" y1="148.25" y2="149.25000000000003"/> + <line stroke="#888888" x1="462.54650534085283" x2="461.54650534085283" y1="149.25000000000003" y2="149.25000000000003"/> + <line stroke="#888888" x1="481.5465053408529" x2="481.5465053408529" y1="149.25000000000003" y2="148.25"/> + <line stroke="#888888" x1="481.5465053408529" x2="482.54650534085283" y1="148.25" y2="148.25"/> + <line stroke="#888888" x1="482.54650534085283" x2="482.54650534085283" y1="148.25" y2="149.25000000000003"/> + <line stroke="#888888" x1="482.54650534085283" x2="481.5465053408529" y1="149.25000000000003" y2="149.25000000000003"/> + <line stroke="#888888" x1="461.54650534085283" x2="461.54650534085283" y1="151.75000000000003" y2="150.75000000000003"/> + <line stroke="#888888" x1="461.54650534085283" x2="462.54650534085283" y1="150.75000000000003" y2="150.75000000000003"/> + <line stroke="#888888" x1="462.54650534085283" x2="462.54650534085283" y1="150.75000000000003" y2="151.75000000000003"/> + <line stroke="#888888" x1="462.54650534085283" x2="461.54650534085283" y1="151.75000000000003" y2="151.75000000000003"/> + <line stroke="#888888" x1="481.5465053408529" x2="481.5465053408529" y1="151.75000000000003" y2="150.75000000000003"/> + <line stroke="#888888" x1="481.5465053408529" x2="482.54650534085283" y1="150.75000000000003" y2="150.75000000000003"/> + <line stroke="#888888" x1="482.54650534085283" x2="482.54650534085283" y1="150.75000000000003" y2="151.75000000000003"/> + <line stroke="#888888" x1="482.54650534085283" x2="481.5465053408529" y1="151.75000000000003" y2="151.75000000000003"/> + <line stroke="#888888" x1="461.54650534085283" x2="461.54650534085283" y1="154.25000000000003" y2="153.25000000000003"/> + <line stroke="#888888" x1="461.54650534085283" x2="462.54650534085283" y1="153.25000000000003" y2="153.25000000000003"/> + <line stroke="#888888" x1="462.54650534085283" x2="462.54650534085283" y1="153.25000000000003" y2="154.25000000000003"/> + <line stroke="#888888" x1="462.54650534085283" x2="461.54650534085283" y1="154.25000000000003" y2="154.25000000000003"/> + <line stroke="#888888" x1="481.5465053408529" x2="481.5465053408529" y1="154.25000000000003" y2="153.25000000000003"/> + <line stroke="#888888" x1="481.5465053408529" x2="482.54650534085283" y1="153.25000000000003" y2="153.25000000000003"/> + <line stroke="#888888" x1="482.54650534085283" x2="482.54650534085283" y1="153.25000000000003" y2="154.25000000000003"/> + <line stroke="#888888" x1="482.54650534085283" x2="481.5465053408529" y1="154.25000000000003" y2="154.25000000000003"/> + <line stroke="#888888" x1="461.54650534085283" x2="461.54650534085283" y1="156.75" y2="155.75000000000003"/> + <line stroke="#888888" x1="461.54650534085283" x2="462.54650534085283" y1="155.75000000000003" y2="155.75000000000003"/> + <line stroke="#888888" x1="462.54650534085283" x2="462.54650534085283" y1="155.75000000000003" y2="156.75"/> + <line stroke="#888888" x1="462.54650534085283" x2="461.54650534085283" y1="156.75" y2="156.75"/> + <line stroke="#888888" x1="481.5465053408529" x2="481.5465053408529" y1="156.75" y2="155.75000000000003"/> + <line stroke="#888888" x1="481.5465053408529" x2="482.54650534085283" y1="155.75000000000003" y2="155.75000000000003"/> + <line stroke="#888888" x1="482.54650534085283" x2="482.54650534085283" y1="155.75000000000003" y2="156.75"/> + <line stroke="#888888" x1="482.54650534085283" x2="481.5465053408529" y1="156.75" y2="156.75"/> + <line stroke="#888888" x1="461.54650534085283" x2="461.54650534085283" y1="159.25" y2="158.25000000000003"/> + <line stroke="#888888" x1="461.54650534085283" x2="462.54650534085283" y1="158.25000000000003" y2="158.25000000000003"/> + <line stroke="#888888" x1="462.54650534085283" x2="462.54650534085283" y1="158.25000000000003" y2="159.25"/> + <line stroke="#888888" x1="462.54650534085283" x2="461.54650534085283" y1="159.25" y2="159.25"/> + <line stroke="#888888" x1="481.5465053408529" x2="481.5465053408529" y1="159.25" y2="158.25000000000003"/> + <line stroke="#888888" x1="481.5465053408529" x2="482.54650534085283" y1="158.25000000000003" y2="158.25000000000003"/> + <line stroke="#888888" x1="482.54650534085283" x2="482.54650534085283" y1="158.25000000000003" y2="159.25"/> + <line stroke="#888888" x1="482.54650534085283" x2="481.5465053408529" y1="159.25" y2="159.25"/> + <line stroke="#888888" x1="461.54650534085283" x2="461.54650534085283" y1="161.75" y2="160.75000000000003"/> + <line stroke="#888888" x1="461.54650534085283" x2="462.54650534085283" y1="160.75000000000003" y2="160.75000000000003"/> + <line stroke="#888888" x1="462.54650534085283" x2="462.54650534085283" y1="160.75000000000003" y2="161.75"/> + <line stroke="#888888" x1="462.54650534085283" x2="461.54650534085283" y1="161.75" y2="161.75"/> + <line stroke="#888888" x1="481.5465053408529" x2="481.5465053408529" y1="161.75" y2="160.75000000000003"/> + <line stroke="#888888" x1="481.5465053408529" x2="482.54650534085283" y1="160.75000000000003" y2="160.75000000000003"/> + <line stroke="#888888" x1="482.54650534085283" x2="482.54650534085283" y1="160.75000000000003" y2="161.75"/> + <line stroke="#888888" x1="482.54650534085283" x2="481.5465053408529" y1="161.75" y2="161.75"/> + <line stroke="#888888" x1="461.54650534085283" x2="461.54650534085283" y1="164.25000000000003" y2="163.25000000000003"/> + <line stroke="#888888" x1="461.54650534085283" x2="462.54650534085283" y1="163.25000000000003" y2="163.25000000000003"/> + <line stroke="#888888" x1="462.54650534085283" x2="462.54650534085283" y1="163.25000000000003" y2="164.25000000000003"/> + <line stroke="#888888" x1="462.54650534085283" x2="461.54650534085283" y1="164.25000000000003" y2="164.25000000000003"/> + <line stroke="#888888" x1="481.5465053408529" x2="481.5465053408529" y1="164.25000000000003" y2="163.25000000000003"/> + <line stroke="#888888" x1="481.5465053408529" x2="482.54650534085283" y1="163.25000000000003" y2="163.25000000000003"/> + <line stroke="#888888" x1="482.54650534085283" x2="482.54650534085283" y1="163.25000000000003" y2="164.25000000000003"/> + <line stroke="#888888" x1="482.54650534085283" x2="481.5465053408529" y1="164.25000000000003" y2="164.25000000000003"/> + <line stroke="#888888" x1="461.54650534085283" x2="461.54650534085283" y1="166.75000000000003" y2="165.75"/> + <line stroke="#888888" x1="461.54650534085283" x2="462.54650534085283" y1="165.75" y2="165.75"/> + <line stroke="#888888" x1="462.54650534085283" x2="462.54650534085283" y1="165.75" y2="166.75000000000003"/> + <line stroke="#888888" x1="462.54650534085283" x2="461.54650534085283" y1="166.75000000000003" y2="166.75000000000003"/> + <line stroke="#888888" x1="481.5465053408529" x2="481.5465053408529" y1="166.75000000000003" y2="165.75"/> + <line stroke="#888888" x1="481.5465053408529" x2="482.54650534085283" y1="165.75" y2="165.75"/> + <line stroke="#888888" x1="482.54650534085283" x2="482.54650534085283" y1="165.75" y2="166.75000000000003"/> + <line stroke="#888888" x1="482.54650534085283" x2="481.5465053408529" y1="166.75000000000003" y2="166.75000000000003"/> + <line stroke="#888888" x1="461.54650534085283" x2="461.54650534085283" y1="169.25000000000003" y2="168.25"/> + <line stroke="#888888" x1="461.54650534085283" x2="462.54650534085283" y1="168.25" y2="168.25"/> + <line stroke="#888888" x1="462.54650534085283" x2="462.54650534085283" y1="168.25" y2="169.25000000000003"/> + <line stroke="#888888" x1="462.54650534085283" x2="461.54650534085283" y1="169.25000000000003" y2="169.25000000000003"/> + <line stroke="#888888" x1="481.5465053408529" x2="481.5465053408529" y1="169.25000000000003" y2="168.25"/> + <line stroke="#888888" x1="481.5465053408529" x2="482.54650534085283" y1="168.25" y2="168.25"/> + <line stroke="#888888" x1="482.54650534085283" x2="482.54650534085283" y1="168.25" y2="169.25000000000003"/> + <line stroke="#888888" x1="482.54650534085283" x2="481.5465053408529" y1="169.25000000000003" y2="169.25000000000003"/> + <line stroke="#888888" x1="461.54650534085283" x2="461.54650534085283" y1="171.75000000000003" y2="170.75"/> + <line stroke="#888888" x1="461.54650534085283" x2="462.54650534085283" y1="170.75" y2="170.75"/> + <line stroke="#888888" x1="462.54650534085283" x2="462.54650534085283" y1="170.75" y2="171.75000000000003"/> + <line stroke="#888888" x1="462.54650534085283" x2="461.54650534085283" y1="171.75000000000003" y2="171.75000000000003"/> + <line stroke="#888888" x1="481.5465053408529" x2="481.5465053408529" y1="171.75000000000003" y2="170.75"/> + <line stroke="#888888" x1="481.5465053408529" x2="482.54650534085283" y1="170.75" y2="170.75"/> + <line stroke="#888888" x1="482.54650534085283" x2="482.54650534085283" y1="170.75" y2="171.75000000000003"/> + <line stroke="#888888" x1="482.54650534085283" x2="481.5465053408529" y1="171.75000000000003" y2="171.75000000000003"/> + <line stroke="#888888" x1="461.54650534085283" x2="461.54650534085283" y1="174.25000000000003" y2="173.25000000000003"/> + <line stroke="#888888" x1="461.54650534085283" x2="462.54650534085283" y1="173.25000000000003" y2="173.25000000000003"/> + <line stroke="#888888" x1="462.54650534085283" x2="462.54650534085283" y1="173.25000000000003" y2="174.25000000000003"/> + <line stroke="#888888" x1="462.54650534085283" x2="461.54650534085283" y1="174.25000000000003" y2="174.25000000000003"/> + <line stroke="#888888" x1="481.5465053408529" x2="481.5465053408529" y1="174.25000000000003" y2="173.25000000000003"/> + <line stroke="#888888" x1="481.5465053408529" x2="482.54650534085283" y1="173.25000000000003" y2="173.25000000000003"/> + <line stroke="#888888" x1="482.54650534085283" x2="482.54650534085283" y1="173.25000000000003" y2="174.25000000000003"/> + <line stroke="#888888" x1="482.54650534085283" x2="481.5465053408529" y1="174.25000000000003" y2="174.25000000000003"/> + <line stroke="#888888" x1="461.54650534085283" x2="461.54650534085283" y1="176.75000000000003" y2="175.75000000000003"/> + <line stroke="#888888" x1="461.54650534085283" x2="462.54650534085283" y1="175.75000000000003" y2="175.75000000000003"/> + <line stroke="#888888" x1="462.54650534085283" x2="462.54650534085283" y1="175.75000000000003" y2="176.75000000000003"/> + <line stroke="#888888" x1="462.54650534085283" x2="461.54650534085283" y1="176.75000000000003" y2="176.75000000000003"/> + <line stroke="#888888" x1="481.5465053408529" x2="481.5465053408529" y1="176.75000000000003" y2="175.75000000000003"/> + <line stroke="#888888" x1="481.5465053408529" x2="482.54650534085283" y1="175.75000000000003" y2="175.75000000000003"/> + <line stroke="#888888" x1="482.54650534085283" x2="482.54650534085283" y1="175.75000000000003" y2="176.75000000000003"/> + <line stroke="#888888" x1="482.54650534085283" x2="481.5465053408529" y1="176.75000000000003" y2="176.75000000000003"/> + <line stroke="#888888" x1="461.54650534085283" x2="461.54650534085283" y1="179.25000000000003" y2="178.25000000000003"/> + <line stroke="#888888" x1="461.54650534085283" x2="462.54650534085283" y1="178.25000000000003" y2="178.25000000000003"/> + <line stroke="#888888" x1="462.54650534085283" x2="462.54650534085283" y1="178.25000000000003" y2="179.25000000000003"/> + <line stroke="#888888" x1="462.54650534085283" x2="461.54650534085283" y1="179.25000000000003" y2="179.25000000000003"/> + <line stroke="#888888" x1="481.5465053408529" x2="481.5465053408529" y1="179.25000000000003" y2="178.25000000000003"/> + <line stroke="#888888" x1="481.5465053408529" x2="482.54650534085283" y1="178.25000000000003" y2="178.25000000000003"/> + <line stroke="#888888" x1="482.54650534085283" x2="482.54650534085283" y1="178.25000000000003" y2="179.25000000000003"/> + <line stroke="#888888" x1="482.54650534085283" x2="481.5465053408529" y1="179.25000000000003" y2="179.25000000000003"/> + <line stroke="#888888" x1="461.54650534085283" x2="461.54650534085283" y1="181.75" y2="180.75000000000003"/> + <line stroke="#888888" x1="461.54650534085283" x2="462.54650534085283" y1="180.75000000000003" y2="180.75000000000003"/> + <line stroke="#888888" x1="462.54650534085283" x2="462.54650534085283" y1="180.75000000000003" y2="181.75"/> + <line stroke="#888888" x1="462.54650534085283" x2="461.54650534085283" y1="181.75" y2="181.75"/> + <line stroke="#888888" x1="480.54650534085283" x2="480.54650534085283" y1="182.75000000000003" y2="179.75"/> + <line stroke="#888888" x1="480.54650534085283" x2="483.54650534085283" y1="179.75" y2="179.75"/> + <line stroke="#888888" x1="483.54650534085283" x2="483.54650534085283" y1="179.75" y2="182.75000000000003"/> + <line stroke="#888888" x1="483.54650534085283" x2="480.54650534085283" y1="182.75000000000003" y2="182.75000000000003"/> + <line stroke="#888888" x1="476.29650534085283" x2="467.79650534085283" y1="139.75000000000003" y2="139.75000000000003"/> + <line stroke="#888888" x1="467.79650534085283" x2="467.79650534085283" y1="139.75000000000003" y2="139.25"/> + <line stroke="#888888" x1="467.79650534085283" x2="476.29650534085283" y1="139.25" y2="139.25"/> + <line stroke="#888888" x1="476.29650534085283" x2="476.29650534085283" y1="139.25" y2="139.75000000000003"/> + <line stroke="#888888" x1="467.79650534085283" x2="476.29650534085283" y1="187.50000000000003" y2="187.50000000000003"/> + <line stroke="#888888" x1="476.29650534085283" x2="476.29650534085283" y1="187.50000000000003" y2="188.00000000000003"/> + <line stroke="#888888" x1="476.29650534085283" x2="467.79650534085283" y1="188.00000000000003" y2="188.00000000000003"/> + <line stroke="#888888" x1="467.79650534085283" x2="467.79650534085283" y1="188.00000000000003" y2="187.50000000000003"/> + <line stroke="#888888" x1="499.04650534085283" x2="499.04650534085283" y1="183.00000000000003" y2="170.00000000000003"/> + <line stroke="#888888" x1="499.04650534085283" x2="529.0465053408527" y1="170.00000000000003" y2="170.00000000000003"/> + <line stroke="#888888" x1="529.0465053408527" x2="529.0465053408527" y1="170.00000000000003" y2="183.00000000000003"/> + <line stroke="#888888" x1="529.0465053408527" x2="499.04650534085283" y1="183.00000000000003" y2="183.00000000000003"/> + <line stroke="#888888" x1="506.11468715903464" x2="494.70559624994377" y1="137.50000000000003" y2="137.50000000000003"/> + <line stroke="#888888" x1="494.70559624994377" x2="494.70559624994377" y1="137.50000000000003" y2="137.00000000000003"/> + <line stroke="#888888" x1="494.70559624994377" x2="506.11468715903464" y1="137.00000000000003" y2="137.00000000000003"/> + <line stroke="#888888" x1="506.11468715903464" x2="506.11468715903464" y1="137.00000000000003" y2="137.50000000000003"/> + <line stroke="#888888" x1="533.387414431762" x2="521.978323522671" y1="137.50000000000003" y2="137.50000000000003"/> + <line stroke="#888888" x1="521.978323522671" x2="521.978323522671" y1="137.50000000000003" y2="137.00000000000003"/> + <line stroke="#888888" x1="521.978323522671" x2="533.387414431762" y1="137.00000000000003" y2="137.00000000000003"/> + <line stroke="#888888" x1="533.387414431762" x2="533.387414431762" y1="137.00000000000003" y2="137.50000000000003"/> + <line stroke="#888888" x1="536.2965053408528" x2="536.2965053408528" y1="154.4318181818182" y2="142.84090909090912"/> + <line stroke="#888888" x1="536.2965053408528" x2="536.7965053408527" y1="142.84090909090912" y2="142.84090909090912"/> + <line stroke="#888888" x1="536.7965053408527" x2="536.7965053408527" y1="142.84090909090912" y2="154.4318181818182"/> + <line stroke="#888888" x1="536.7965053408527" x2="536.2965053408528" y1="154.4318181818182" y2="154.4318181818182"/> + <line stroke="#888888" x1="536.2965053408528" x2="536.2965053408528" y1="182.15909090909093" y2="170.5681818181818"/> + <line stroke="#888888" x1="536.2965053408528" x2="536.7965053408527" y1="170.5681818181818" y2="170.5681818181818"/> + <line stroke="#888888" x1="536.7965053408527" x2="536.7965053408527" y1="170.5681818181818" y2="182.15909090909093"/> + <line stroke="#888888" x1="536.7965053408527" x2="536.2965053408528" y1="182.15909090909093" y2="182.15909090909093"/> + <line stroke="#888888" x1="376.5465053408528" x2="376.5465053408528" y1="145.25" y2="142.25000000000003"/> + <line stroke="#888888" x1="376.5465053408528" x2="379.54650534085283" y1="142.25000000000003" y2="142.25000000000003"/> + <line stroke="#888888" x1="379.54650534085283" x2="379.54650534085283" y1="142.25000000000003" y2="145.25"/> + <line stroke="#888888" x1="379.54650534085283" x2="376.5465053408528" y1="145.25" y2="145.25"/> + <line stroke="#888888" x1="397.54650534085283" x2="397.54650534085283" y1="144.25000000000003" y2="143.25"/> + <line stroke="#888888" x1="397.54650534085283" x2="398.54650534085283" y1="143.25" y2="143.25"/> + <line stroke="#888888" x1="398.54650534085283" x2="398.54650534085283" y1="143.25" y2="144.25000000000003"/> + <line stroke="#888888" x1="398.54650534085283" x2="397.54650534085283" y1="144.25000000000003" y2="144.25000000000003"/> + <line stroke="#888888" x1="377.54650534085283" x2="377.54650534085283" y1="146.75000000000003" y2="145.75"/> + <line stroke="#888888" x1="377.54650534085283" x2="378.54650534085283" y1="145.75" y2="145.75"/> + <line stroke="#888888" x1="378.54650534085283" x2="378.54650534085283" y1="145.75" y2="146.75000000000003"/> + <line stroke="#888888" x1="378.54650534085283" x2="377.54650534085283" y1="146.75000000000003" y2="146.75000000000003"/> + <line stroke="#888888" x1="397.54650534085283" x2="397.54650534085283" y1="146.75000000000003" y2="145.75"/> + <line stroke="#888888" x1="397.54650534085283" x2="398.54650534085283" y1="145.75" y2="145.75"/> + <line stroke="#888888" x1="398.54650534085283" x2="398.54650534085283" y1="145.75" y2="146.75000000000003"/> + <line stroke="#888888" x1="398.54650534085283" x2="397.54650534085283" y1="146.75000000000003" y2="146.75000000000003"/> + <line stroke="#888888" x1="377.54650534085283" x2="377.54650534085283" y1="149.25000000000003" y2="148.25"/> + <line stroke="#888888" x1="377.54650534085283" x2="378.54650534085283" y1="148.25" y2="148.25"/> + <line stroke="#888888" x1="378.54650534085283" x2="378.54650534085283" y1="148.25" y2="149.25000000000003"/> + <line stroke="#888888" x1="378.54650534085283" x2="377.54650534085283" y1="149.25000000000003" y2="149.25000000000003"/> + <line stroke="#888888" x1="397.54650534085283" x2="397.54650534085283" y1="149.25000000000003" y2="148.25"/> + <line stroke="#888888" x1="397.54650534085283" x2="398.54650534085283" y1="148.25" y2="148.25"/> + <line stroke="#888888" x1="398.54650534085283" x2="398.54650534085283" y1="148.25" y2="149.25000000000003"/> + <line stroke="#888888" x1="398.54650534085283" x2="397.54650534085283" y1="149.25000000000003" y2="149.25000000000003"/> + <line stroke="#888888" x1="377.54650534085283" x2="377.54650534085283" y1="151.75000000000003" y2="150.75000000000003"/> + <line stroke="#888888" x1="377.54650534085283" x2="378.54650534085283" y1="150.75000000000003" y2="150.75000000000003"/> + <line stroke="#888888" x1="378.54650534085283" x2="378.54650534085283" y1="150.75000000000003" y2="151.75000000000003"/> + <line stroke="#888888" x1="378.54650534085283" x2="377.54650534085283" y1="151.75000000000003" y2="151.75000000000003"/> + <line stroke="#888888" x1="397.54650534085283" x2="397.54650534085283" y1="151.75000000000003" y2="150.75000000000003"/> + <line stroke="#888888" x1="397.54650534085283" x2="398.54650534085283" y1="150.75000000000003" y2="150.75000000000003"/> + <line stroke="#888888" x1="398.54650534085283" x2="398.54650534085283" y1="150.75000000000003" y2="151.75000000000003"/> + <line stroke="#888888" x1="398.54650534085283" x2="397.54650534085283" y1="151.75000000000003" y2="151.75000000000003"/> + <line stroke="#888888" x1="377.54650534085283" x2="377.54650534085283" y1="154.25000000000003" y2="153.25000000000003"/> + <line stroke="#888888" x1="377.54650534085283" x2="378.54650534085283" y1="153.25000000000003" y2="153.25000000000003"/> + <line stroke="#888888" x1="378.54650534085283" x2="378.54650534085283" y1="153.25000000000003" y2="154.25000000000003"/> + <line stroke="#888888" x1="378.54650534085283" x2="377.54650534085283" y1="154.25000000000003" y2="154.25000000000003"/> + <line stroke="#888888" x1="397.54650534085283" x2="397.54650534085283" y1="154.25000000000003" y2="153.25000000000003"/> + <line stroke="#888888" x1="397.54650534085283" x2="398.54650534085283" y1="153.25000000000003" y2="153.25000000000003"/> + <line stroke="#888888" x1="398.54650534085283" x2="398.54650534085283" y1="153.25000000000003" y2="154.25000000000003"/> + <line stroke="#888888" x1="398.54650534085283" x2="397.54650534085283" y1="154.25000000000003" y2="154.25000000000003"/> + <line stroke="#888888" x1="377.54650534085283" x2="377.54650534085283" y1="156.75" y2="155.75000000000003"/> + <line stroke="#888888" x1="377.54650534085283" x2="378.54650534085283" y1="155.75000000000003" y2="155.75000000000003"/> + <line stroke="#888888" x1="378.54650534085283" x2="378.54650534085283" y1="155.75000000000003" y2="156.75"/> + <line stroke="#888888" x1="378.54650534085283" x2="377.54650534085283" y1="156.75" y2="156.75"/> + <line stroke="#888888" x1="397.54650534085283" x2="397.54650534085283" y1="156.75" y2="155.75000000000003"/> + <line stroke="#888888" x1="397.54650534085283" x2="398.54650534085283" y1="155.75000000000003" y2="155.75000000000003"/> + <line stroke="#888888" x1="398.54650534085283" x2="398.54650534085283" y1="155.75000000000003" y2="156.75"/> + <line stroke="#888888" x1="398.54650534085283" x2="397.54650534085283" y1="156.75" y2="156.75"/> + <line stroke="#888888" x1="377.54650534085283" x2="377.54650534085283" y1="159.25" y2="158.25000000000003"/> + <line stroke="#888888" x1="377.54650534085283" x2="378.54650534085283" y1="158.25000000000003" y2="158.25000000000003"/> + <line stroke="#888888" x1="378.54650534085283" x2="378.54650534085283" y1="158.25000000000003" y2="159.25"/> + <line stroke="#888888" x1="378.54650534085283" x2="377.54650534085283" y1="159.25" y2="159.25"/> + <line stroke="#888888" x1="397.54650534085283" x2="397.54650534085283" y1="159.25" y2="158.25000000000003"/> + <line stroke="#888888" x1="397.54650534085283" x2="398.54650534085283" y1="158.25000000000003" y2="158.25000000000003"/> + <line stroke="#888888" x1="398.54650534085283" x2="398.54650534085283" y1="158.25000000000003" y2="159.25"/> + <line stroke="#888888" x1="398.54650534085283" x2="397.54650534085283" y1="159.25" y2="159.25"/> + <line stroke="#888888" x1="377.54650534085283" x2="377.54650534085283" y1="161.75" y2="160.75000000000003"/> + <line stroke="#888888" x1="377.54650534085283" x2="378.54650534085283" y1="160.75000000000003" y2="160.75000000000003"/> + <line stroke="#888888" x1="378.54650534085283" x2="378.54650534085283" y1="160.75000000000003" y2="161.75"/> + <line stroke="#888888" x1="378.54650534085283" x2="377.54650534085283" y1="161.75" y2="161.75"/> + <line stroke="#888888" x1="397.54650534085283" x2="397.54650534085283" y1="161.75" y2="160.75000000000003"/> + <line stroke="#888888" x1="397.54650534085283" x2="398.54650534085283" y1="160.75000000000003" y2="160.75000000000003"/> + <line stroke="#888888" x1="398.54650534085283" x2="398.54650534085283" y1="160.75000000000003" y2="161.75"/> + <line stroke="#888888" x1="398.54650534085283" x2="397.54650534085283" y1="161.75" y2="161.75"/> + <line stroke="#888888" x1="377.54650534085283" x2="377.54650534085283" y1="164.25000000000003" y2="163.25000000000003"/> + <line stroke="#888888" x1="377.54650534085283" x2="378.54650534085283" y1="163.25000000000003" y2="163.25000000000003"/> + <line stroke="#888888" x1="378.54650534085283" x2="378.54650534085283" y1="163.25000000000003" y2="164.25000000000003"/> + <line stroke="#888888" x1="378.54650534085283" x2="377.54650534085283" y1="164.25000000000003" y2="164.25000000000003"/> + <line stroke="#888888" x1="397.54650534085283" x2="397.54650534085283" y1="164.25000000000003" y2="163.25000000000003"/> + <line stroke="#888888" x1="397.54650534085283" x2="398.54650534085283" y1="163.25000000000003" y2="163.25000000000003"/> + <line stroke="#888888" x1="398.54650534085283" x2="398.54650534085283" y1="163.25000000000003" y2="164.25000000000003"/> + <line stroke="#888888" x1="398.54650534085283" x2="397.54650534085283" y1="164.25000000000003" y2="164.25000000000003"/> + <line stroke="#888888" x1="377.54650534085283" x2="377.54650534085283" y1="166.75000000000003" y2="165.75"/> + <line stroke="#888888" x1="377.54650534085283" x2="378.54650534085283" y1="165.75" y2="165.75"/> + <line stroke="#888888" x1="378.54650534085283" x2="378.54650534085283" y1="165.75" y2="166.75000000000003"/> + <line stroke="#888888" x1="378.54650534085283" x2="377.54650534085283" y1="166.75000000000003" y2="166.75000000000003"/> + <line stroke="#888888" x1="397.54650534085283" x2="397.54650534085283" y1="166.75000000000003" y2="165.75"/> + <line stroke="#888888" x1="397.54650534085283" x2="398.54650534085283" y1="165.75" y2="165.75"/> + <line stroke="#888888" x1="398.54650534085283" x2="398.54650534085283" y1="165.75" y2="166.75000000000003"/> + <line stroke="#888888" x1="398.54650534085283" x2="397.54650534085283" y1="166.75000000000003" y2="166.75000000000003"/> + <line stroke="#888888" x1="377.54650534085283" x2="377.54650534085283" y1="169.25000000000003" y2="168.25"/> + <line stroke="#888888" x1="377.54650534085283" x2="378.54650534085283" y1="168.25" y2="168.25"/> + <line stroke="#888888" x1="378.54650534085283" x2="378.54650534085283" y1="168.25" y2="169.25000000000003"/> + <line stroke="#888888" x1="378.54650534085283" x2="377.54650534085283" y1="169.25000000000003" y2="169.25000000000003"/> + <line stroke="#888888" x1="397.54650534085283" x2="397.54650534085283" y1="169.25000000000003" y2="168.25"/> + <line stroke="#888888" x1="397.54650534085283" x2="398.54650534085283" y1="168.25" y2="168.25"/> + <line stroke="#888888" x1="398.54650534085283" x2="398.54650534085283" y1="168.25" y2="169.25000000000003"/> + <line stroke="#888888" x1="398.54650534085283" x2="397.54650534085283" y1="169.25000000000003" y2="169.25000000000003"/> + <line stroke="#888888" x1="377.54650534085283" x2="377.54650534085283" y1="171.75000000000003" y2="170.75"/> + <line stroke="#888888" x1="377.54650534085283" x2="378.54650534085283" y1="170.75" y2="170.75"/> + <line stroke="#888888" x1="378.54650534085283" x2="378.54650534085283" y1="170.75" y2="171.75000000000003"/> + <line stroke="#888888" x1="378.54650534085283" x2="377.54650534085283" y1="171.75000000000003" y2="171.75000000000003"/> + <line stroke="#888888" x1="397.54650534085283" x2="397.54650534085283" y1="171.75000000000003" y2="170.75"/> + <line stroke="#888888" x1="397.54650534085283" x2="398.54650534085283" y1="170.75" y2="170.75"/> + <line stroke="#888888" x1="398.54650534085283" x2="398.54650534085283" y1="170.75" y2="171.75000000000003"/> + <line stroke="#888888" x1="398.54650534085283" x2="397.54650534085283" y1="171.75000000000003" y2="171.75000000000003"/> + <line stroke="#888888" x1="377.54650534085283" x2="377.54650534085283" y1="174.25000000000003" y2="173.25000000000003"/> + <line stroke="#888888" x1="377.54650534085283" x2="378.54650534085283" y1="173.25000000000003" y2="173.25000000000003"/> + <line stroke="#888888" x1="378.54650534085283" x2="378.54650534085283" y1="173.25000000000003" y2="174.25000000000003"/> + <line stroke="#888888" x1="378.54650534085283" x2="377.54650534085283" y1="174.25000000000003" y2="174.25000000000003"/> + <line stroke="#888888" x1="397.54650534085283" x2="397.54650534085283" y1="174.25000000000003" y2="173.25000000000003"/> + <line stroke="#888888" x1="397.54650534085283" x2="398.54650534085283" y1="173.25000000000003" y2="173.25000000000003"/> + <line stroke="#888888" x1="398.54650534085283" x2="398.54650534085283" y1="173.25000000000003" y2="174.25000000000003"/> + <line stroke="#888888" x1="398.54650534085283" x2="397.54650534085283" y1="174.25000000000003" y2="174.25000000000003"/> + <line stroke="#888888" x1="377.54650534085283" x2="377.54650534085283" y1="176.75000000000003" y2="175.75000000000003"/> + <line stroke="#888888" x1="377.54650534085283" x2="378.54650534085283" y1="175.75000000000003" y2="175.75000000000003"/> + <line stroke="#888888" x1="378.54650534085283" x2="378.54650534085283" y1="175.75000000000003" y2="176.75000000000003"/> + <line stroke="#888888" x1="378.54650534085283" x2="377.54650534085283" y1="176.75000000000003" y2="176.75000000000003"/> + <line stroke="#888888" x1="397.54650534085283" x2="397.54650534085283" y1="176.75000000000003" y2="175.75000000000003"/> + <line stroke="#888888" x1="397.54650534085283" x2="398.54650534085283" y1="175.75000000000003" y2="175.75000000000003"/> + <line stroke="#888888" x1="398.54650534085283" x2="398.54650534085283" y1="175.75000000000003" y2="176.75000000000003"/> + <line stroke="#888888" x1="398.54650534085283" x2="397.54650534085283" y1="176.75000000000003" y2="176.75000000000003"/> + <line stroke="#888888" x1="377.54650534085283" x2="377.54650534085283" y1="179.25000000000003" y2="178.25000000000003"/> + <line stroke="#888888" x1="377.54650534085283" x2="378.54650534085283" y1="178.25000000000003" y2="178.25000000000003"/> + <line stroke="#888888" x1="378.54650534085283" x2="378.54650534085283" y1="178.25000000000003" y2="179.25000000000003"/> + <line stroke="#888888" x1="378.54650534085283" x2="377.54650534085283" y1="179.25000000000003" y2="179.25000000000003"/> + <line stroke="#888888" x1="397.54650534085283" x2="397.54650534085283" y1="179.25000000000003" y2="178.25000000000003"/> + <line stroke="#888888" x1="397.54650534085283" x2="398.54650534085283" y1="178.25000000000003" y2="178.25000000000003"/> + <line stroke="#888888" x1="398.54650534085283" x2="398.54650534085283" y1="178.25000000000003" y2="179.25000000000003"/> + <line stroke="#888888" x1="398.54650534085283" x2="397.54650534085283" y1="179.25000000000003" y2="179.25000000000003"/> + <line stroke="#888888" x1="377.54650534085283" x2="377.54650534085283" y1="181.75" y2="180.75000000000003"/> + <line stroke="#888888" x1="377.54650534085283" x2="378.54650534085283" y1="180.75000000000003" y2="180.75000000000003"/> + <line stroke="#888888" x1="378.54650534085283" x2="378.54650534085283" y1="180.75000000000003" y2="181.75"/> + <line stroke="#888888" x1="378.54650534085283" x2="377.54650534085283" y1="181.75" y2="181.75"/> + <line stroke="#888888" x1="396.54650534085283" x2="396.54650534085283" y1="182.75000000000003" y2="179.75"/> + <line stroke="#888888" x1="396.54650534085283" x2="399.5465053408528" y1="179.75" y2="179.75"/> + <line stroke="#888888" x1="399.5465053408528" x2="399.5465053408528" y1="179.75" y2="182.75000000000003"/> + <line stroke="#888888" x1="399.5465053408528" x2="396.54650534085283" y1="182.75000000000003" y2="182.75000000000003"/> + <line stroke="#888888" x1="392.29650534085283" x2="383.79650534085283" y1="139.75000000000003" y2="139.75000000000003"/> + <line stroke="#888888" x1="383.79650534085283" x2="383.79650534085283" y1="139.75000000000003" y2="139.25"/> + <line stroke="#888888" x1="383.79650534085283" x2="392.29650534085283" y1="139.25" y2="139.25"/> + <line stroke="#888888" x1="392.29650534085283" x2="392.29650534085283" y1="139.25" y2="139.75000000000003"/> + <line stroke="#888888" x1="383.79650534085283" x2="392.29650534085283" y1="187.50000000000003" y2="187.50000000000003"/> + <line stroke="#888888" x1="392.29650534085283" x2="392.29650534085283" y1="187.50000000000003" y2="188.00000000000003"/> + <line stroke="#888888" x1="392.29650534085283" x2="383.79650534085283" y1="188.00000000000003" y2="188.00000000000003"/> + <line stroke="#888888" x1="383.79650534085283" x2="383.79650534085283" y1="188.00000000000003" y2="187.50000000000003"/> + <line stroke="#888888" x1="368.54650534085283" x2="373.54650534085283" y1="143.09090909090912" y2="143.09090909090912"/> + <line stroke="#888888" x1="373.54650534085283" x2="373.54650534085283" y1="143.09090909090912" y2="154.1818181818182"/> + <line stroke="#888888" x1="373.54650534085283" x2="368.54650534085283" y1="154.1818181818182" y2="154.1818181818182"/> + <line stroke="#888888" x1="368.54650534085283" x2="373.54650534085283" y1="170.8181818181818" y2="170.8181818181818"/> + <line stroke="#888888" x1="373.54650534085283" x2="373.54650534085283" y1="170.8181818181818" y2="181.90909090909093"/> + <line stroke="#888888" x1="373.54650534085283" x2="368.54650534085283" y1="181.90909090909093" y2="181.90909090909093"/> + <line stroke="#888888" x1="393.79650534085283" x2="397.29650534085283" y1="116.0" y2="116.0"/> + <line stroke="#888888" x1="397.29650534085283" x2="397.29650534085283" y1="116.0" y2="124.00000000000003"/> + <line stroke="#888888" x1="397.29650534085283" x2="393.79650534085283" y1="124.00000000000003" y2="124.00000000000003"/> </svg> diff --git a/rocolib/output/BoatWithServoMountAndStack/graph-autofold-default.dxf b/rocolib/output/BoatWithServoMountAndStack/graph-autofold-default.dxf index 9b66ed31d674a497f7b28a9d8652ec84e2ea45d5..3b5dfc4015fceace63aa7f10b15b70e85e4b1502 100644 --- a/rocolib/output/BoatWithServoMountAndStack/graph-autofold-default.dxf +++ b/rocolib/output/BoatWithServoMountAndStack/graph-autofold-default.dxf @@ -493,7 +493,7 @@ TABLE 2 LAYER 70 -16 +15 0 LAYER 2 @@ -597,7 +597,7 @@ CONTINUOUS 0 LAYER 2 -90.0 +41.987212495816664 70 0 62 @@ -627,17 +627,7 @@ CONTINUOUS 0 LAYER 2 -45.0 - 70 -0 - 62 -1 - 6 -CONTINUOUS - 0 -LAYER - 2 -54.87259905028077 +57.019129652304315 70 0 62 @@ -1053,15 +1043,15 @@ LINE 8 cut 10 -329.02325267042613 +209.0232526704265 20 -125.00000000000001 +120.00000000000001 30 0.0 11 -210.02325267042616 +190.0232526704265 21 -125.00000000000001 +120.00000000000001 31 0.0 0 @@ -1073,15 +1063,15 @@ DOTTED 8 45 10 -329.02325267042613 +209.0232526704265 20 -125.00000000000001 +120.00000000000001 30 0.0 11 -390.0232526704262 +270.02325267042653 21 -125.00000000000001 +120.00000000000001 31 0.0 0 @@ -1091,15 +1081,15 @@ LINE 8 cut 10 -390.0232526704262 +270.02325267042653 20 -125.00000000000001 +120.00000000000001 30 0.0 11 -390.0232526704262 +270.02325267042653 21 -125.00000000000001 +120.00000000000001 31 0.0 0 @@ -1109,15 +1099,15 @@ LINE 8 cut 10 -210.02325267042616 +190.0232526704265 20 -125.00000000000001 +120.00000000000001 30 0.0 11 -210.02325267042616 +190.0232526704265 21 -125.00000000000001 +120.00000000000001 31 0.0 0 @@ -1129,15 +1119,15 @@ DOTTED 8 45 10 -329.02325267042613 +209.0232526704265 20 -88.86137800081471 +83.8613780008147 30 0.0 11 -390.0232526704262 +270.02325267042653 21 -88.86137800081471 +83.8613780008147 31 0.0 0 @@ -1147,15 +1137,15 @@ LINE 8 cut 10 -390.0232526704262 +270.02325267042653 20 -125.00000000000001 +120.00000000000001 30 0.0 11 -390.0232526704262 +270.02325267042653 21 -88.86137800081471 +83.8613780008147 31 0.0 0 @@ -1165,15 +1155,15 @@ LINE 8 cut 10 -329.02325267042613 +209.0232526704265 20 -88.86137800081471 +83.8613780008147 30 0.0 11 -329.02325267042613 +209.0232526704265 21 -125.00000000000001 +120.00000000000001 31 0.0 0 @@ -1185,15 +1175,15 @@ DOTTED 8 45 10 -390.0232526704262 +270.02325267042653 20 -64.86137800081471 +59.8613780008147 30 0.0 11 -329.02325267042613 +209.0232526704265 21 -64.86137800081471 +59.8613780008147 31 0.0 0 @@ -1205,15 +1195,15 @@ DOTTED 8 90 10 -390.0232526704262 +270.02325267042653 20 -64.86137800081471 +59.8613780008147 30 0.0 11 -390.0232526704262 +270.02325267042653 21 -88.86137800081471 +83.8613780008147 31 0.0 0 @@ -1223,15 +1213,15 @@ LINE 8 cut 10 -329.02325267042613 +209.0232526704265 20 -28.722756001629396 +23.722756001629396 30 0.0 11 -329.02325267042613 +209.0232526704265 21 -64.86137800081472 +59.86137800081471 31 0.0 0 @@ -1241,15 +1231,15 @@ LINE 8 cut 10 -390.0232526704262 +270.02325267042653 20 -28.722756001629396 +23.722756001629396 30 0.0 11 -329.02325267042613 +209.0232526704265 21 -28.722756001629396 +23.722756001629396 31 0.0 0 @@ -1259,15 +1249,15 @@ LINE 8 cut 10 -390.0232526704262 +270.02325267042653 20 -64.86137800081472 +59.86137800081471 30 0.0 11 -390.0232526704262 +270.02325267042653 21 -28.722756001629396 +23.722756001629396 31 0.0 0 @@ -1277,15 +1267,15 @@ LINE 8 cut 10 -400.0232526704262 +280.02325267042653 20 -64.86137800081471 +59.8613780008147 30 0.0 11 -390.0232526704262 +270.02325267042653 21 -64.86137800081471 +59.8613780008147 31 0.0 0 @@ -1295,15 +1285,15 @@ LINE 8 cut 10 -400.0232526704262 +280.02325267042653 20 -88.86137800081471 +83.8613780008147 30 0.0 11 -400.0232526704262 +280.02325267042653 21 -64.86137800081471 +59.8613780008147 31 0.0 0 @@ -1313,15 +1303,15 @@ LINE 8 cut 10 -390.0232526704262 +270.02325267042653 20 -88.86137800081471 +83.8613780008147 30 0.0 11 -400.0232526704262 +280.02325267042653 21 -88.86137800081471 +83.8613780008147 31 0.0 0 @@ -1331,15 +1321,15 @@ LINE 8 cut 10 -319.02325267042613 +199.0232526704265 20 -88.86137800081471 +83.8613780008147 30 0.0 11 -329.02325267042613 +209.0232526704265 21 -88.86137800081471 +83.8613780008147 31 0.0 0 @@ -1349,15 +1339,15 @@ LINE 8 cut 10 -319.02325267042613 +199.0232526704265 20 -64.86137800081471 +59.8613780008147 30 0.0 11 -319.02325267042613 +199.0232526704265 21 -88.86137800081471 +83.8613780008147 31 0.0 0 @@ -1367,15 +1357,15 @@ LINE 8 cut 10 -329.02325267042613 +209.0232526704265 20 -64.86137800081471 +59.8613780008147 30 0.0 11 -319.02325267042613 +199.0232526704265 21 -64.86137800081471 +59.8613780008147 31 0.0 0 @@ -1385,15 +1375,15 @@ LINE 8 cut 10 -186.0232526704262 +166.0232526704265 20 -125.00000000000001 +120.00000000000001 30 0.0 11 -86.02325267042616 +86.02325267042649 21 -125.00000000000001 +120.00000000000001 31 0.0 0 @@ -1405,15 +1395,15 @@ DOTTED 8 180 10 -186.0232526704262 +166.0232526704265 20 -125.00000000000001 +120.00000000000001 30 0.0 11 -210.02325267042616 +190.0232526704265 21 -125.00000000000001 +120.00000000000001 31 0.0 0 @@ -1423,15 +1413,15 @@ LINE 8 cut 10 -390.0232526704262 +270.02325267042653 20 -125.00000000000001 +120.00000000000001 30 0.0 11 -390.0232526704262 +270.02325267042653 21 -125.00000000000001 +120.00000000000001 31 0.0 0 @@ -1441,15 +1431,15 @@ LINE 8 cut 10 -86.02325267042616 +86.02325267042649 20 -125.00000000000001 +120.00000000000001 30 0.0 11 -86.02325267042616 +86.02325267042649 21 -125.00000000000001 +120.00000000000001 31 0.0 0 @@ -1459,15 +1449,15 @@ LINE 8 cut 10 -210.02325267042616 +190.0232526704265 20 -125.00000000000001 +120.00000000000001 30 0.0 11 -210.02325267042616 +190.0232526704265 21 -91.0 +86.00000000000001 31 0.0 0 @@ -1479,15 +1469,15 @@ DOTTED 8 90 10 -186.0232526704262 +166.0232526704265 20 -91.0 +86.00000000000001 30 0.0 11 -186.0232526704262 +166.0232526704265 21 -125.00000000000001 +120.00000000000001 31 0.0 0 @@ -1497,15 +1487,15 @@ LINE 8 cut 10 -186.0232526704262 +166.0232526704265 20 -55.00000000000001 +50.0 30 0.0 11 -186.0232526704262 +166.0232526704265 21 -91.0 +86.00000000000001 31 0.0 0 @@ -1517,15 +1507,15 @@ DOTTED 8 -90 10 -186.0232526704262 +166.0232526704265 20 -55.00000000000001 +50.0 30 0.0 11 -210.02325267042616 +190.0232526704265 21 -55.00000000000001 +50.0 31 0.0 0 @@ -1535,15 +1525,15 @@ LINE 8 cut 10 -210.02325267042616 +190.0232526704265 20 -91.0 +86.00000000000001 30 0.0 11 -210.02325267042616 +190.0232526704265 21 -55.00000000000001 +50.0 31 0.0 0 @@ -1553,13 +1543,13 @@ LINE 8 cut 10 -210.02325267042616 +190.0232526704265 20 -55.00000000000001 +50.0 30 0.0 11 -210.02325267042616 +190.0232526704265 21 5.000000000000001 31 @@ -1571,15 +1561,15 @@ LINE 8 cut 10 -186.0232526704262 +166.0232526704265 20 5.000000000000001 30 0.0 11 -186.0232526704262 +166.0232526704265 21 -55.00000000000001 +50.0 31 0.0 0 @@ -1589,13 +1579,13 @@ LINE 8 cut 10 -186.0232526704262 +166.0232526704265 20 0.0 30 0.0 11 -186.0232526704262 +166.0232526704265 21 5.000000000000001 31 @@ -1607,13 +1597,13 @@ LINE 8 cut 10 -210.02325267042616 +190.0232526704265 20 0.0 30 0.0 11 -186.0232526704262 +166.0232526704265 21 0.0 31 @@ -1625,13 +1615,13 @@ LINE 8 cut 10 -210.02325267042616 +190.0232526704265 20 5.000000000000001 30 0.0 11 -210.02325267042616 +190.0232526704265 21 0.0 31 @@ -1643,15 +1633,15 @@ LINE 8 cut 10 -186.0232526704262 +166.0232526704265 20 -91.0 +86.00000000000001 30 0.0 11 -166.0232526704262 +146.0232526704265 21 -91.0 +86.00000000000001 31 0.0 0 @@ -1661,15 +1651,15 @@ LINE 8 cut 10 -166.0232526704262 +146.0232526704265 20 -125.00000000000001 +120.00000000000001 30 0.0 11 -186.0232526704262 +166.0232526704265 21 -125.00000000000001 +120.00000000000001 31 0.0 0 @@ -1681,15 +1671,15 @@ DOTTED 8 90 10 -166.0232526704262 +146.0232526704265 20 -91.0 +86.00000000000001 30 0.0 11 -166.0232526704262 +146.0232526704265 21 -125.00000000000001 +120.00000000000001 31 0.0 0 @@ -1699,15 +1689,15 @@ LINE 8 cut 10 -166.0232526704262 +146.0232526704265 20 -91.0 +86.00000000000001 30 0.0 11 -142.02325267042616 +122.02325267042649 21 -91.0 +86.00000000000001 31 0.0 0 @@ -1717,15 +1707,15 @@ LINE 8 cut 10 -142.02325267042616 +122.02325267042649 20 -125.00000000000001 +120.00000000000001 30 0.0 11 -166.0232526704262 +146.0232526704265 21 -125.00000000000001 +120.00000000000001 31 0.0 0 @@ -1737,15 +1727,15 @@ DOTTED 8 90 10 -142.02325267042616 +122.02325267042649 20 -91.0 +86.00000000000001 30 0.0 11 -142.02325267042616 +122.02325267042649 21 -125.00000000000001 +120.00000000000001 31 0.0 0 @@ -1755,15 +1745,15 @@ LINE 8 cut 10 -142.02325267042616 +122.02325267042649 20 -91.0 +86.00000000000001 30 0.0 11 -122.02325267042617 +102.02325267042649 21 -91.0 +86.00000000000001 31 0.0 0 @@ -1773,15 +1763,15 @@ LINE 8 cut 10 -122.02325267042617 +102.02325267042649 20 -125.00000000000001 +120.00000000000001 30 0.0 11 -142.02325267042616 +122.02325267042649 21 -125.00000000000001 +120.00000000000001 31 0.0 0 @@ -1793,15 +1783,15 @@ DOTTED 8 90 10 -122.02325267042617 +102.02325267042649 20 -125.00000000000001 +120.00000000000001 30 0.0 11 -122.02325267042617 +102.02325267042649 21 -91.0 +86.00000000000001 31 0.0 0 @@ -1811,15 +1801,15 @@ LINE 8 cut 10 -112.02325267042617 +92.02325267042649 20 -125.00000000000001 +120.00000000000001 30 0.0 11 -122.02325267042617 +102.02325267042649 21 -125.00000000000001 +120.00000000000001 31 0.0 0 @@ -1829,15 +1819,15 @@ LINE 8 cut 10 -112.02325267042617 +92.02325267042649 20 -91.0 +86.00000000000001 30 0.0 11 -112.02325267042617 +92.02325267042649 21 -125.00000000000001 +120.00000000000001 31 0.0 0 @@ -1847,15 +1837,15 @@ LINE 8 cut 10 -122.02325267042617 +102.02325267042649 20 -91.0 +86.00000000000001 30 0.0 11 -112.02325267042617 +92.02325267042649 21 -91.0 +86.00000000000001 31 0.0 0 @@ -1867,15 +1857,15 @@ DOTTED 8 90 10 -390.0232526704262 +270.02325267042653 20 -195.00000000000003 +190.00000000000003 30 0.0 11 -86.02325267042616 +86.02325267042649 21 -195.00000000000003 +190.00000000000003 31 0.0 0 @@ -1885,17 +1875,17 @@ DOTTED 62 1 8 -90.0 +41.987212495816664 10 -390.0232526704262 +270.02325267042653 20 -195.00000000000003 +190.00000000000003 30 0.0 11 -390.0232526704262 +270.02325267042653 21 -125.00000000000001 +120.00000000000001 31 0.0 0 @@ -1907,15 +1897,15 @@ DOTTED 8 -174 10 -390.0232526704262 +270.02325267042653 20 -125.00000000000001 +120.00000000000001 30 0.0 11 -460.0232526704262 +322.53762348858805 21 -125.00000000000001 +120.00000000000001 31 0.0 0 @@ -1927,15 +1917,15 @@ DOTTED 8 -180 10 -390.0232526704262 +270.02325267042653 20 -195.00000000000003 +190.00000000000003 30 0.0 11 -460.0232526704262 +322.53762348858805 21 -125.00000000000001 +120.00000000000001 31 0.0 0 @@ -1945,15 +1935,15 @@ LINE 8 cut 10 -390.0232526704262 +270.02325267042653 20 -101.66666666666669 +102.49520972727949 30 0.0 11 -390.0232526704262 +270.02325267042653 21 -125.00000000000001 +120.00000000000001 31 0.0 0 @@ -1963,15 +1953,15 @@ LINE 8 cut 10 -460.0232526704262 +322.53762348858805 20 -101.66666666666669 +102.49520972727949 30 0.0 11 -390.0232526704262 +270.02325267042653 21 -101.66666666666669 +102.49520972727949 31 0.0 0 @@ -1981,15 +1971,15 @@ LINE 8 cut 10 -460.0232526704262 +322.53762348858805 20 -125.00000000000001 +120.00000000000001 30 0.0 11 -460.0232526704262 +322.53762348858805 21 -101.66666666666669 +102.49520972727949 31 0.0 0 @@ -2001,15 +1991,15 @@ DOTTED 8 180 10 -390.02325267042625 +270.02325267042653 20 -195.00000000000003 +190.00000000000003 30 0.0 11 -460.0232526704262 +337.22840034432573 21 -195.00000000000003 +170.4176577976636 31 0.0 0 @@ -2019,15 +2009,15 @@ LINE 8 cut 10 -460.0232526704262 +337.22840034432573 20 -195.00000000000003 +170.4176577976636 30 0.0 11 -460.0232526704262 +322.53762348858805 21 -125.00000000000001 +120.00000000000001 31 0.0 0 @@ -2037,15 +2027,15 @@ LINE 8 cut 10 -460.02325267042625 +351.91917720006325 20 -265.00000000000006 +220.83531559532716 30 0.0 11 -460.0232526704262 +337.22840034432573 21 -195.0 +170.4176577976636 31 0.0 0 @@ -2055,15 +2045,55 @@ LINE 8 cut 10 -460.0232526704262 +356.04650534085283 + 20 +235.00000000000003 + 30 +0.0 + 11 +351.91917720006325 + 21 +220.83531559532716 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +57.019129652304315 + 10 +356.04650534085283 + 20 +235.00000000000003 + 30 +0.0 + 11 +270.02325267042653 + 21 +190.00000000000003 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +54.462322208025626 + 10 +270.02325267042653 20 -245.0 +235.00000000000003 30 0.0 11 -460.02325267042625 +270.02325267042653 21 -265.00000000000006 +190.00000000000003 31 0.0 0 @@ -2073,17 +2103,17 @@ DOTTED 62 1 8 -90.0 +54.462322208025626 10 -390.0232526704263 +270.02325267042653 20 -245.00000000000003 +280.00000000000006 30 0.0 11 -390.02325267042625 +270.02325267042653 21 -195.00000000000006 +235.00000000000006 31 0.0 0 @@ -2093,17 +2123,17 @@ DOTTED 62 1 8 -90.0 +57.019129652304315 10 -390.0232526704263 +356.04650534085283 20 -295.0 +235.00000000000003 30 0.0 11 -390.0232526704263 +270.02325267042653 21 -245.00000000000003 +280.0000000000001 31 0.0 0 @@ -2115,15 +2145,15 @@ DOTTED 8 180 10 -460.02325267042625 +337.22840034432573 20 -295.0 +299.5823422023365 30 0.0 11 -390.0232526704263 +270.02325267042653 21 -295.0 +280.0000000000001 31 0.0 0 @@ -2133,15 +2163,15 @@ LINE 8 cut 10 -460.02325267042625 +351.91917720006325 20 -225.00000000000003 +249.16468440467293 30 0.0 11 -460.02325267042625 +356.04650534085283 21 -245.00000000000003 +235.00000000000003 31 0.0 0 @@ -2151,15 +2181,15 @@ LINE 8 cut 10 -460.02325267042625 +337.22840034432573 20 -295.0 +299.5823422023365 30 0.0 11 -460.02325267042625 +351.91917720006325 21 -225.00000000000003 +249.16468440467293 31 0.0 0 @@ -2169,15 +2199,15 @@ LINE 8 cut 10 -460.02325267042625 +322.53762348858817 20 -365.0 +350.0 30 0.0 11 -460.02325267042625 +337.22840034432573 21 -295.0 +299.58234220233646 31 0.0 0 @@ -2189,15 +2219,15 @@ DOTTED 8 -180 10 -460.02325267042625 +322.53762348858817 20 -365.0 +350.0 30 0.0 11 -390.0232526704263 +270.02325267042653 21 -295.0 +280.0000000000001 31 0.0 0 @@ -2207,17 +2237,17 @@ DOTTED 62 1 8 -90.0 +41.987212495816664 10 -390.0232526704263 +270.0232526704266 20 -365.00000000000006 +350.00000000000006 30 0.0 11 -390.0232526704263 +270.02325267042653 21 -295.0 +280.00000000000006 31 0.0 0 @@ -2229,15 +2259,15 @@ DOTTED 8 -174 10 -460.02325267042625 +322.53762348858817 20 -365.0 +350.0 30 0.0 11 -390.0232526704263 +270.0232526704266 21 -365.00000000000006 +350.00000000000006 31 0.0 0 @@ -2249,15 +2279,15 @@ DOTTED 8 90 10 -390.0232526704263 +270.02325267042653 20 -295.0 +280.00000000000006 30 0.0 11 -86.02325267042634 +86.02325267042643 21 -295.0000000000001 +280.0000000000002 31 0.0 0 @@ -2269,15 +2299,15 @@ DOTTED 8 180 10 -210.02325267042633 +190.02325267042653 20 -365.0000000000001 +350.0000000000001 30 0.0 11 -186.02325267042636 +166.02325267042656 21 -365.00000000000017 +350.0000000000001 31 0.0 0 @@ -2287,15 +2317,15 @@ LINE 8 cut 10 -86.02325267042634 +86.0232526704265 20 -365.00000000000017 +350.0000000000002 30 0.0 11 -186.02325267042636 +166.02325267042656 21 -365.00000000000017 +350.0000000000001 31 0.0 0 @@ -2305,15 +2335,15 @@ LINE 8 cut 10 -86.02325267042634 +86.0232526704265 20 -365.00000000000017 +350.0000000000002 30 0.0 11 -86.02325267042634 +86.0232526704265 21 -365.00000000000017 +350.0000000000002 31 0.0 0 @@ -2323,15 +2353,15 @@ LINE 8 cut 10 -390.0232526704263 +270.0232526704266 20 -365.00000000000006 +350.00000000000006 30 0.0 11 -390.0232526704263 +270.0232526704266 21 -365.00000000000006 +350.00000000000006 31 0.0 0 @@ -2341,15 +2371,15 @@ LINE 8 cut 10 -210.02325267042633 +190.02325267042653 20 -365.0000000000001 +350.0000000000001 30 0.0 11 -329.02325267042636 +209.02325267042656 21 -365.00000000000006 +350.0000000000001 31 0.0 0 @@ -2359,15 +2389,15 @@ LINE 8 cut 10 -210.02325267042633 +190.02325267042653 20 -365.0000000000001 +350.0000000000001 30 0.0 11 -210.02325267042633 +190.02325267042653 21 -365.0000000000001 +350.0000000000001 31 0.0 0 @@ -2377,15 +2407,15 @@ LINE 8 cut 10 -390.0232526704263 +270.0232526704266 20 -365.00000000000006 +350.00000000000006 30 0.0 11 -390.0232526704263 +270.0232526704266 21 -365.00000000000006 +350.00000000000006 31 0.0 0 @@ -2395,15 +2425,15 @@ LINE 8 cut 10 -390.0232526704263 +270.0232526704266 20 -375.00000000000006 +360.0000000000001 30 0.0 11 -390.0232526704263 +270.0232526704266 21 -365.00000000000006 +350.00000000000006 31 0.0 0 @@ -2413,15 +2443,15 @@ LINE 8 cut 10 -329.02325267042636 +209.0232526704266 20 -375.00000000000006 +360.00000000000017 30 0.0 11 -390.0232526704263 +270.0232526704266 21 -375.00000000000006 +360.0000000000001 31 0.0 0 @@ -2431,15 +2461,15 @@ LINE 8 cut 10 -329.02325267042636 +209.02325267042656 20 -365.00000000000006 +350.0000000000001 30 0.0 11 -329.02325267042636 +209.0232526704266 21 -375.00000000000006 +360.00000000000017 31 0.0 0 @@ -2449,15 +2479,15 @@ LINE 8 cut 10 -210.02325267042636 +190.0232526704266 20 -399.0000000000001 +384.00000000000017 30 0.0 11 -210.02325267042633 +190.02325267042653 21 -365.0000000000001 +350.0000000000001 31 0.0 0 @@ -2469,15 +2499,15 @@ DOTTED 8 90 10 -186.02325267042633 +166.02325267042656 20 -365.0000000000001 +350.0000000000001 30 0.0 11 -186.02325267042636 +166.0232526704266 21 -399.0000000000001 +384.00000000000017 31 0.0 0 @@ -2487,15 +2517,15 @@ LINE 8 cut 10 -210.02325267042636 +190.02325267042664 20 -435.0000000000001 +420.00000000000017 30 0.0 11 -210.02325267042636 +190.0232526704266 21 -399.0000000000001 +384.00000000000017 31 0.0 0 @@ -2507,15 +2537,15 @@ DOTTED 8 -90 10 -210.02325267042636 +190.02325267042664 20 -435.0000000000001 +420.00000000000017 30 0.0 11 -186.0232526704264 +166.02325267042661 21 -435.0000000000001 +420.00000000000017 31 0.0 0 @@ -2525,15 +2555,15 @@ LINE 8 cut 10 -186.02325267042636 +166.0232526704266 20 -399.0000000000001 +384.00000000000017 30 0.0 11 -186.0232526704264 +166.02325267042661 21 -435.0000000000001 +420.00000000000017 31 0.0 0 @@ -2543,15 +2573,15 @@ LINE 8 cut 10 -186.0232526704264 +166.02325267042661 20 -435.0000000000001 +420.00000000000017 30 0.0 11 -186.0232526704264 +166.02325267042667 21 -485.0000000000001 +465.00000000000017 31 0.0 0 @@ -2561,15 +2591,15 @@ LINE 8 cut 10 -210.0232526704264 +190.02325267042667 20 -485.0000000000001 +465.00000000000017 30 0.0 11 -210.02325267042636 +190.02325267042664 21 -435.0000000000001 +420.00000000000017 31 0.0 0 @@ -2579,15 +2609,15 @@ LINE 8 cut 10 -186.0232526704264 +166.02325267042667 20 -485.0000000000001 +465.00000000000017 30 0.0 11 -210.0232526704264 +190.02325267042667 21 -485.0000000000001 +465.00000000000017 31 0.0 0 @@ -2597,15 +2627,15 @@ LINE 8 cut 10 -186.02325267042633 +166.02325267042656 20 -365.0000000000001 +350.0000000000001 30 0.0 11 -166.0232526704263 +146.02325267042656 21 -365.0000000000001 +350.0000000000001 31 0.0 0 @@ -2615,15 +2645,15 @@ LINE 8 cut 10 -166.02325267042633 +146.0232526704266 20 -399.0000000000001 +384.00000000000017 30 0.0 11 -186.02325267042636 +166.0232526704266 21 -399.0000000000001 +384.00000000000017 31 0.0 0 @@ -2635,15 +2665,15 @@ DOTTED 8 90 10 -166.0232526704263 +146.02325267042656 20 -365.0000000000001 +350.0000000000001 30 0.0 11 -166.02325267042633 +146.0232526704266 21 -399.0000000000001 +384.00000000000017 31 0.0 0 @@ -2653,15 +2683,15 @@ LINE 8 cut 10 -166.0232526704263 +146.02325267042656 20 -365.0000000000001 +350.0000000000001 30 0.0 11 -142.02325267042633 +122.02325267042653 21 -365.0000000000001 +350.0000000000001 31 0.0 0 @@ -2671,15 +2701,15 @@ LINE 8 cut 10 -142.02325267042636 +122.02325267042656 20 -399.0000000000001 +384.00000000000017 30 0.0 11 -166.02325267042633 +146.0232526704266 21 -399.0000000000001 +384.00000000000017 31 0.0 0 @@ -2691,15 +2721,15 @@ DOTTED 8 90 10 -142.02325267042633 +122.02325267042653 20 -365.0000000000001 +350.0000000000001 30 0.0 11 -142.02325267042636 +122.02325267042656 21 -399.0000000000001 +384.00000000000017 31 0.0 0 @@ -2709,15 +2739,15 @@ LINE 8 cut 10 -142.02325267042633 +122.02325267042653 20 -365.0000000000001 +350.0000000000001 30 0.0 11 -122.02325267042634 +102.02325267042653 21 -365.0000000000001 +350.0000000000001 31 0.0 0 @@ -2727,15 +2757,15 @@ LINE 8 cut 10 -122.02325267042636 +102.02325267042656 20 -399.0000000000001 +384.00000000000017 30 0.0 11 -142.02325267042636 +122.02325267042656 21 -399.0000000000001 +384.00000000000017 31 0.0 0 @@ -2747,15 +2777,15 @@ DOTTED 8 90 10 -122.02325267042636 +102.02325267042656 20 -399.0000000000001 +384.00000000000017 30 0.0 11 -122.02325267042634 +102.02325267042653 21 -365.0000000000001 +350.0000000000001 31 0.0 0 @@ -2765,15 +2795,15 @@ LINE 8 cut 10 -112.02325267042634 +92.02325267042654 20 -399.0000000000001 +384.00000000000017 30 0.0 11 -122.02325267042634 +102.02325267042654 21 -399.0000000000001 +384.00000000000017 31 0.0 0 @@ -2783,15 +2813,15 @@ LINE 8 cut 10 -112.02325267042633 +92.02325267042652 20 -365.0000000000001 +350.0000000000001 30 0.0 11 -112.02325267042634 +92.02325267042654 21 -399.0000000000001 +384.00000000000017 31 0.0 0 @@ -2801,15 +2831,15 @@ LINE 8 cut 10 -122.02325267042633 +102.02325267042652 20 -365.0000000000001 +350.0000000000001 30 0.0 11 -112.02325267042633 +92.02325267042652 21 -365.0000000000001 +350.0000000000001 31 0.0 0 @@ -2819,17 +2849,17 @@ DOTTED 62 1 8 -45.0 +41.987212495816664 10 -86.0232526704263 +86.02325267042642 20 -295.00000000000017 +280.0000000000003 30 0.0 11 -86.02325267042634 +86.0232526704265 21 -365.00000000000017 +350.0000000000002 31 0.0 0 @@ -2841,15 +2871,15 @@ DOTTED 8 -174 10 -86.02325267042634 +86.0232526704265 20 -365.00000000000017 +350.0000000000002 30 0.0 11 -32.42924173922606 +33.5088818522649 21 -365.0000000000002 +350.00000000000034 31 0.0 0 @@ -2861,15 +2891,15 @@ DOTTED 8 -180 10 -86.02325267042632 +86.02325267042642 20 -295.00000000000017 +280.0000000000003 30 0.0 11 -32.42924173922606 +33.5088818522649 21 -365.0000000000002 +350.00000000000034 31 0.0 0 @@ -2879,15 +2909,15 @@ LINE 8 cut 10 -86.02325267042634 +86.02325267042652 20 -382.8646703104003 +367.50479027272075 30 0.0 11 -86.02325267042634 +86.0232526704265 21 -365.00000000000017 +350.0000000000002 31 0.0 0 @@ -2897,15 +2927,15 @@ LINE 8 cut 10 -32.42924173922606 +33.50888185226492 20 -382.8646703104003 +367.5047902727208 30 0.0 11 -86.02325267042634 +86.02325267042652 21 -382.8646703104003 +367.50479027272075 31 0.0 0 @@ -2915,15 +2945,15 @@ LINE 8 cut 10 -32.42924173922606 +33.5088818522649 20 -365.0000000000002 +350.00000000000034 30 0.0 11 -32.42924173922606 +33.50888185226492 21 -382.8646703104003 +367.5047902727208 31 0.0 0 @@ -2935,15 +2965,15 @@ DOTTED 8 180 10 -86.02325267042632 +86.02325267042643 20 -295.00000000000017 +280.0000000000002 30 0.0 11 -18.447362619882885 +18.81810499652727 21 -313.2619572849372 +299.5823422023367 31 0.0 0 @@ -2953,15 +2983,15 @@ LINE 8 cut 10 -18.447362619882885 +18.81810499652727 20 -313.2619572849372 +299.5823422023367 30 0.0 11 -32.42924173922606 +33.5088818522649 21 -365.0000000000002 +350.0000000000002 31 0.0 0 @@ -2971,15 +3001,15 @@ LINE 8 cut 10 -4.465483500539649 +4.127328140789616 20 -261.5239145698741 +249.16468440467318 30 0.0 11 -18.447362619882853 +18.81810499652724 21 -313.2619572849372 +299.5823422023367 31 0.0 0 @@ -2989,15 +3019,15 @@ LINE 8 cut 10 -0.0 +2.8421709430404014e-14 20 -245.00000000000028 +235.0000000000003 30 0.0 11 -4.465483500539649 +4.127328140789616 21 -261.5239145698741 +249.16468440467318 31 0.0 0 @@ -3007,17 +3037,17 @@ DOTTED 62 1 8 -54.87259905028077 +57.019129652304315 10 -0.0 +2.8421709430404014e-14 20 -245.00000000000028 +235.0000000000003 30 0.0 11 -86.0232526704263 +86.02325267042642 21 -295.0000000000001 +280.0000000000003 31 0.0 0 @@ -3029,15 +3059,15 @@ DOTTED 8 54.462322208025626 10 -86.02325267042627 +86.02325267042637 20 -245.0000000000002 +235.0000000000002 30 0.0 11 -86.02325267042632 +86.02325267042642 21 -295.0000000000001 +280.0000000000003 31 0.0 0 @@ -3049,15 +3079,15 @@ DOTTED 8 54.462322208025626 10 -86.02325267042623 +86.0232526704263 20 -195.00000000000017 +190.0000000000002 30 0.0 11 -86.02325267042627 +86.02325267042636 21 -245.0000000000002 +235.0000000000002 31 0.0 0 @@ -3067,17 +3097,17 @@ DOTTED 62 1 8 -54.87259905028077 +57.019129652304315 10 -0.0 +2.8421709430404014e-14 20 -245.00000000000026 +235.0000000000003 30 0.0 11 -86.02325267042623 +86.0232526704263 21 -195.00000000000017 +190.0000000000002 31 0.0 0 @@ -3089,15 +3119,15 @@ DOTTED 8 180 10 -18.447362619882743 +18.818104996527016 20 -176.73804271506336 +170.41765779766385 30 0.0 11 -86.02325267042623 +86.02325267042627 21 -195.00000000000017 +190.0000000000002 31 0.0 0 @@ -3107,15 +3137,15 @@ LINE 8 cut 10 -4.465483500539619 +4.127328140789531 20 -228.47608543012643 +220.83531559532747 30 0.0 11 0.0 21 -245.00000000000026 +235.0000000000003 31 0.0 0 @@ -3125,15 +3155,15 @@ LINE 8 cut 10 -18.447362619882743 +18.818104996527016 20 -176.73804271506336 +170.41765779766385 30 0.0 11 -4.465483500539619 +4.127328140789531 21 -228.47608543012643 +220.83531559532747 31 0.0 0 @@ -3143,15 +3173,15 @@ LINE 8 cut 10 -32.42924173922586 +33.50888185226453 20 -125.00000000000027 +120.00000000000027 30 0.0 11 -18.447362619882743 +18.818104996527044 21 -176.73804271506336 +170.41765779766388 31 0.0 0 @@ -3163,15 +3193,15 @@ DOTTED 8 -180 10 -32.42924173922586 +33.50888185226453 20 -125.00000000000027 +120.00000000000027 30 0.0 11 -86.02325267042623 +86.02325267042629 21 -195.00000000000017 +190.0000000000002 31 0.0 0 @@ -3181,17 +3211,17 @@ DOTTED 62 1 8 -45.0 +41.987212495816664 10 86.02325267042613 20 -125.00000000000021 +120.00000000000016 30 0.0 11 -86.0232526704262 +86.0232526704263 21 -195.00000000000017 +190.0000000000002 31 0.0 0 @@ -3203,15 +3233,15 @@ DOTTED 8 -174 10 -32.42924173922586 +33.50888185226453 20 -125.00000000000027 +120.00000000000027 30 0.0 11 86.02325267042613 21 -125.00000000000021 +120.00000000000016 31 0.0 0 @@ -3221,15 +3251,15 @@ LINE 8 cut 10 -32.42924173922584 +33.5088818522645 20 -107.13532968960016 +102.49520972727973 30 0.0 11 -32.42924173922586 +33.50888185226453 21 -125.00000000000027 +120.00000000000027 31 0.0 0 @@ -3241,13 +3271,13 @@ cut 10 86.02325267042612 20 -107.13532968960011 +102.49520972727963 30 0.0 11 -32.42924173922584 +33.5088818522645 21 -107.13532968960016 +102.49520972727973 31 0.0 0 @@ -3259,13 +3289,13 @@ cut 10 86.02325267042613 20 -125.00000000000021 +120.00000000000016 30 0.0 11 86.02325267042612 21 -107.13532968960011 +102.49520972727963 31 0.0 0 @@ -3275,15 +3305,15 @@ LINE 8 cut 10 -460.02325267042625 +322.5376234885882 20 -388.3333333333333 +367.5047902727206 30 0.0 11 -460.02325267042625 +322.53762348858817 21 -365.0 +350.0 31 0.0 0 @@ -3293,15 +3323,15 @@ LINE 8 cut 10 -390.0232526704263 +270.0232526704266 20 -388.33333333333337 +367.50479027272064 30 0.0 11 -460.02325267042625 +322.5376234885882 21 -388.3333333333333 +367.5047902727206 31 0.0 0 @@ -3311,15 +3341,15 @@ LINE 8 cut 10 -390.0232526704263 +270.0232526704266 20 -365.00000000000006 +350.00000000000006 30 0.0 11 -390.0232526704263 +270.0232526704266 21 -388.33333333333337 +367.50479027272064 31 0.0 0 @@ -3329,15 +3359,15 @@ LINE 8 cut 10 -347.02325267042613 +227.0232526704265 20 -70.3613780008147 +65.3613780008147 30 0.0 11 -358.0232526704262 +238.0232526704265 21 -70.3613780008147 +65.3613780008147 31 0.0 0 @@ -3347,15 +3377,15 @@ LINE 8 cut 10 -358.0232526704262 +238.0232526704265 20 -70.3613780008147 +65.3613780008147 30 0.0 11 -358.0232526704262 +238.0232526704265 21 -83.36137800081471 +78.3613780008147 31 0.0 0 @@ -3365,15 +3395,15 @@ LINE 8 cut 10 -358.0232526704262 +238.0232526704265 20 -83.36137800081471 +78.3613780008147 30 0.0 11 -347.02325267042613 +227.0232526704265 21 -83.36137800081471 +78.3613780008147 31 0.0 0 @@ -3383,15 +3413,15 @@ LINE 8 cut 10 -347.02325267042613 +227.0232526704265 20 -83.36137800081471 +78.3613780008147 30 0.0 11 -347.02325267042613 +227.0232526704265 21 -70.3613780008147 +65.3613780008147 31 0.0 0 @@ -3401,15 +3431,15 @@ LINE 8 cut 10 -378.52325267042613 +258.52325267042653 20 -71.86137800081471 +66.8613780008147 30 0.0 11 -384.5232526704262 +264.52325267042653 21 -71.86137800081471 +66.8613780008147 31 0.0 0 @@ -3419,15 +3449,15 @@ LINE 8 cut 10 -384.5232526704262 +264.52325267042653 20 -71.86137800081471 +66.8613780008147 30 0.0 11 -384.5232526704262 +264.52325267042653 21 -81.86137800081471 +76.8613780008147 31 0.0 0 @@ -3437,15 +3467,15 @@ LINE 8 cut 10 -384.5232526704262 +264.52325267042653 20 -81.86137800081471 +76.8613780008147 30 0.0 11 -378.52325267042613 +258.52325267042653 21 -81.86137800081471 +76.8613780008147 31 0.0 0 @@ -3455,15 +3485,15 @@ LINE 8 cut 10 -378.52325267042613 +258.52325267042653 20 -81.86137800081471 +76.8613780008147 30 0.0 11 -378.52325267042613 +258.52325267042653 21 -71.86137800081471 +66.8613780008147 31 0.0 0 @@ -3473,15 +3503,15 @@ LINE 8 cut 10 -351.45507085224443 +231.4550708522447 20 -36.47275600162939 +31.472756001629396 30 0.0 11 -339.8641617613353 +219.8641617613356 21 -36.47275600162939 +31.472756001629396 31 0.0 0 @@ -3491,15 +3521,15 @@ LINE 8 cut 10 -339.8641617613353 +219.8641617613356 20 -36.47275600162939 +31.472756001629396 30 0.0 11 -339.8641617613353 +219.8641617613356 21 -35.9727560016294 +30.9727560016294 31 0.0 0 @@ -3509,15 +3539,15 @@ LINE 8 cut 10 -339.8641617613353 +219.8641617613356 20 -35.9727560016294 +30.9727560016294 30 0.0 11 -351.45507085224443 +231.4550708522447 21 -35.9727560016294 +30.9727560016294 31 0.0 0 @@ -3527,15 +3557,15 @@ LINE 8 cut 10 -351.45507085224443 +231.4550708522447 20 -35.9727560016294 +30.9727560016294 30 0.0 11 -351.45507085224443 +231.4550708522447 21 -36.47275600162939 +31.472756001629396 31 0.0 0 @@ -3545,15 +3575,15 @@ LINE 8 cut 10 -379.18234357951707 +259.1823435795174 20 -36.47275600162939 +31.472756001629396 30 0.0 11 -367.591434488608 +247.59143448860831 21 -36.47275600162939 +31.472756001629396 31 0.0 0 @@ -3563,15 +3593,15 @@ LINE 8 cut 10 -367.591434488608 +247.59143448860831 20 -36.47275600162939 +31.472756001629396 30 0.0 11 -367.591434488608 +247.59143448860831 21 -35.9727560016294 +30.9727560016294 31 0.0 0 @@ -3581,15 +3611,15 @@ LINE 8 cut 10 -367.591434488608 +247.59143448860831 20 -35.9727560016294 +30.9727560016294 30 0.0 11 -379.18234357951707 +259.1823435795174 21 -35.9727560016294 +30.9727560016294 31 0.0 0 @@ -3599,15 +3629,15 @@ LINE 8 cut 10 -379.18234357951707 +259.1823435795174 20 -35.9727560016294 +30.9727560016294 30 0.0 11 -379.18234357951707 +259.1823435795174 21 -36.47275600162939 +31.472756001629396 31 0.0 0 @@ -3617,15 +3647,15 @@ LINE 8 cut 10 -397.5232526704262 +277.5232526704265 20 -80.86137800081471 +75.8613780008147 30 0.0 11 -392.52325267042613 +272.5232526704265 21 -80.86137800081471 +75.8613780008147 31 0.0 0 @@ -3635,15 +3665,15 @@ LINE 8 cut 10 -392.52325267042613 +272.5232526704265 20 -80.86137800081471 +75.8613780008147 30 0.0 11 -392.52325267042613 +272.5232526704265 21 -72.86137800081471 +67.8613780008147 31 0.0 0 @@ -3653,15 +3683,15 @@ LINE 8 cut 10 -392.52325267042613 +272.5232526704265 20 -72.86137800081471 +67.8613780008147 30 0.0 11 -397.5232526704262 +277.5232526704265 21 -72.86137800081471 +67.8613780008147 31 0.0 0 @@ -3671,15 +3701,15 @@ LINE 8 cut 10 -321.5232526704262 +201.5232526704265 20 -72.86137800081471 +67.8613780008147 30 0.0 11 -326.5232526704262 +206.5232526704265 21 -72.86137800081471 +67.8613780008147 31 0.0 0 @@ -3689,15 +3719,15 @@ LINE 8 cut 10 -326.5232526704262 +206.5232526704265 20 -72.86137800081471 +67.8613780008147 30 0.0 11 -326.5232526704262 +206.5232526704265 21 -80.86137800081471 +75.8613780008147 31 0.0 0 @@ -3707,15 +3737,15 @@ LINE 8 cut 10 -326.5232526704262 +206.5232526704265 20 -80.86137800081471 +75.8613780008147 30 0.0 11 -321.5232526704262 +201.5232526704265 21 -80.86137800081471 +75.8613780008147 31 0.0 0 @@ -3725,15 +3755,15 @@ LINE 8 cut 10 -202.2732526704262 +182.2732526704265 20 -113.91666666666669 +108.91666666666669 30 0.0 11 -202.2732526704262 +182.2732526704265 21 -102.08333333333336 +97.08333333333336 31 0.0 0 @@ -3743,15 +3773,15 @@ LINE 8 cut 10 -202.2732526704262 +182.2732526704265 20 -102.08333333333336 +97.08333333333336 30 0.0 11 -202.7732526704262 +182.7732526704265 21 -102.08333333333336 +97.08333333333336 31 0.0 0 @@ -3761,15 +3791,15 @@ LINE 8 cut 10 -202.7732526704262 +182.7732526704265 20 -102.08333333333336 +97.08333333333336 30 0.0 11 -202.7732526704262 +182.7732526704265 21 -113.91666666666669 +108.91666666666669 31 0.0 0 @@ -3779,15 +3809,15 @@ LINE 8 cut 10 -202.7732526704262 +182.7732526704265 20 -113.91666666666669 +108.91666666666669 30 0.0 11 -202.2732526704262 +182.2732526704265 21 -113.91666666666669 +108.91666666666669 31 0.0 0 @@ -3797,13 +3827,13 @@ LINE 8 cut 10 -202.0232526704262 +182.0232526704265 20 1.2500000000000002 30 0.0 11 -204.5232526704262 +184.5232526704265 21 1.2500000000000002 31 @@ -3815,13 +3845,13 @@ LINE 8 cut 10 -204.5232526704262 +184.5232526704265 20 1.2500000000000002 30 0.0 11 -202.0232526704262 +182.0232526704265 21 3.7500000000000004 31 @@ -3833,13 +3863,13 @@ LINE 8 cut 10 -202.0232526704262 +182.0232526704265 20 3.7500000000000004 30 0.0 11 -194.02325267042616 +174.0232526704265 21 3.7500000000000004 31 @@ -3851,13 +3881,13 @@ LINE 8 cut 10 -194.02325267042616 +174.0232526704265 20 3.7500000000000004 30 0.0 11 -191.52325267042616 +171.5232526704265 21 1.2500000000000002 31 @@ -3869,13 +3899,13 @@ LINE 8 cut 10 -191.52325267042616 +171.5232526704265 20 1.2500000000000002 30 0.0 11 -194.02325267042616 +174.0232526704265 21 1.2500000000000002 31 @@ -3887,15 +3917,15 @@ LINE 8 cut 10 -167.02325267042616 +147.02325267042647 20 -102.00000000000001 +97.00000000000001 30 0.0 11 -171.02325267042616 +151.0232526704265 21 -102.00000000000001 +97.00000000000001 31 0.0 0 @@ -3905,15 +3935,15 @@ LINE 8 cut 10 -171.02325267042616 +151.0232526704265 20 -102.00000000000001 +97.00000000000001 30 0.0 11 -171.02325267042616 +151.0232526704265 21 -114.00000000000001 +109.00000000000001 31 0.0 0 @@ -3923,15 +3953,15 @@ LINE 8 cut 10 -171.02325267042616 +151.0232526704265 20 -114.00000000000001 +109.00000000000001 30 0.0 11 -167.02325267042616 +147.02325267042647 21 -114.00000000000001 +109.00000000000001 31 0.0 0 @@ -3941,15 +3971,15 @@ LINE 8 cut 10 -167.02325267042616 +147.02325267042647 20 -114.00000000000001 +109.00000000000001 30 0.0 11 -167.02325267042616 +147.02325267042647 21 -102.00000000000001 +97.00000000000001 31 0.0 0 @@ -3959,15 +3989,15 @@ LINE 8 cut 10 -179.0232526704262 +159.0232526704265 20 -103.5 +98.50000000000001 30 0.0 11 -183.0232526704262 +163.02325267042647 21 -103.5 +98.50000000000001 31 0.0 0 @@ -3977,15 +4007,15 @@ LINE 8 cut 10 -183.0232526704262 +163.02325267042647 20 -103.5 +98.50000000000001 30 0.0 11 -183.0232526704262 +163.02325267042647 21 -112.50000000000001 +107.50000000000001 31 0.0 0 @@ -3995,15 +4025,15 @@ LINE 8 cut 10 -183.0232526704262 +163.02325267042647 20 -112.50000000000001 +107.50000000000001 30 0.0 11 -179.0232526704262 +159.0232526704265 21 -112.50000000000001 +107.50000000000001 31 0.0 0 @@ -4013,15 +4043,15 @@ LINE 8 cut 10 -179.0232526704262 +159.0232526704265 20 -112.50000000000001 +107.50000000000001 30 0.0 11 -179.0232526704262 +159.0232526704265 21 -103.5 +98.50000000000001 31 0.0 0 @@ -4031,15 +4061,15 @@ LINE 8 cut 10 -142.5232526704262 +122.52325267042649 20 -102.00000000000001 +97.00000000000001 30 0.0 11 -165.5232526704262 +145.5232526704265 21 -102.00000000000001 +97.00000000000001 31 0.0 0 @@ -4049,15 +4079,15 @@ LINE 8 cut 10 -165.5232526704262 +145.5232526704265 20 -102.00000000000001 +97.00000000000001 30 0.0 11 -165.5232526704262 +145.5232526704265 21 -114.00000000000001 +109.00000000000001 31 0.0 0 @@ -4067,15 +4097,15 @@ LINE 8 cut 10 -165.5232526704262 +145.5232526704265 20 -114.00000000000001 +109.00000000000001 30 0.0 11 -142.5232526704262 +122.52325267042649 21 -114.00000000000001 +109.00000000000001 31 0.0 0 @@ -4085,15 +4115,15 @@ LINE 8 cut 10 -142.5232526704262 +122.52325267042649 20 -114.00000000000001 +109.00000000000001 30 0.0 11 -142.5232526704262 +122.52325267042649 21 -102.00000000000001 +97.00000000000001 31 0.0 0 @@ -4103,15 +4133,15 @@ LINE 8 cut 10 -137.02325267042616 +117.02325267042649 20 -102.00000000000001 +97.00000000000001 30 0.0 11 -141.0232526704262 +121.02325267042649 21 -102.00000000000001 +97.00000000000001 31 0.0 0 @@ -4121,15 +4151,15 @@ LINE 8 cut 10 -141.0232526704262 +121.02325267042649 20 -102.00000000000001 +97.00000000000001 30 0.0 11 -141.0232526704262 +121.02325267042649 21 -114.00000000000001 +109.00000000000001 31 0.0 0 @@ -4139,15 +4169,15 @@ LINE 8 cut 10 -141.0232526704262 +121.02325267042649 20 -114.00000000000001 +109.00000000000001 30 0.0 11 -137.02325267042616 +117.02325267042649 21 -114.00000000000001 +109.00000000000001 31 0.0 0 @@ -4157,15 +4187,15 @@ LINE 8 cut 10 -137.02325267042616 +117.02325267042649 20 -114.00000000000001 +109.00000000000001 30 0.0 11 -137.02325267042616 +117.02325267042649 21 -102.00000000000001 +97.00000000000001 31 0.0 0 @@ -4175,15 +4205,15 @@ LINE 8 cut 10 -114.52325267042617 +94.52325267042649 20 -102.33333333333334 +97.33333333333336 30 0.0 11 -119.52325267042617 +99.52325267042649 21 -102.33333333333334 +97.33333333333336 31 0.0 0 @@ -4193,15 +4223,15 @@ LINE 8 cut 10 -119.52325267042617 +99.52325267042649 20 -102.33333333333334 +97.33333333333336 30 0.0 11 -119.52325267042617 +99.52325267042649 21 -113.66666666666669 +108.66666666666669 31 0.0 0 @@ -4211,15 +4241,15 @@ LINE 8 cut 10 -119.52325267042617 +99.52325267042649 20 -113.66666666666669 +108.66666666666669 30 0.0 11 -114.52325267042617 +94.52325267042649 21 -113.66666666666669 +108.66666666666669 31 0.0 0 @@ -4229,15 +4259,15 @@ LINE 8 cut 10 -436.68991933709293 +305.0328332158675 20 -107.50000000000001 +106.87140729545962 30 0.0 11 -436.68991933709293 +305.0328332158675 21 -119.16666666666669 +115.62380243181988 31 0.0 0 @@ -4247,15 +4277,15 @@ LINE 8 cut 10 -436.68991933709293 +305.0328332158675 20 -119.16666666666669 +115.62380243181988 30 0.0 11 -413.35658600375956 +287.52804294314706 21 -119.16666666666669 +115.62380243181988 31 0.0 0 @@ -4265,15 +4295,15 @@ LINE 8 cut 10 -413.35658600375956 +287.52804294314706 20 -119.16666666666669 +115.62380243181988 30 0.0 11 -413.35658600375956 +287.52804294314706 21 -107.50000000000001 +106.87140729545962 31 0.0 0 @@ -4283,15 +4313,15 @@ LINE 8 cut 10 -442.27325267042625 +334.2477556839554 20 -241.91666666666666 +208.0120791976936 30 0.0 11 -442.27325267042625 +329.21095619250247 21 -218.08333333333334 +190.7261564960398 31 0.0 0 @@ -4301,15 +4331,15 @@ LINE 8 cut 10 -442.27325267042625 +329.21095619250247 20 -218.08333333333334 +190.7261564960398 30 0.0 11 -442.77325267042625 +329.6909929616017 21 -218.08333333333334 +190.5862826231659 31 0.0 0 @@ -4319,15 +4349,15 @@ LINE 8 cut 10 -442.77325267042625 +329.6909929616017 20 -218.08333333333334 +190.5862826231659 30 0.0 11 -442.77325267042625 +334.72779245305475 21 -241.91666666666666 +207.87220532481976 31 0.0 0 @@ -4337,15 +4367,15 @@ LINE 8 cut 10 -442.77325267042625 +334.72779245305475 20 -241.91666666666666 +207.87220532481976 30 0.0 11 -442.27325267042625 +334.2477556839554 21 -241.91666666666666 +208.0120791976936 31 0.0 0 @@ -4355,15 +4385,15 @@ LINE 8 cut 10 -442.2732526704263 +329.21095619250247 20 -271.9166666666667 +279.27384350396034 30 0.0 11 -442.2732526704263 +334.24775568395546 21 -248.08333333333337 +261.98792080230646 31 0.0 0 @@ -4373,15 +4403,15 @@ LINE 8 cut 10 -442.2732526704263 +334.24775568395546 20 -248.08333333333337 +261.98792080230646 30 0.0 11 -442.7732526704263 +334.72779245305475 21 -248.08333333333337 +262.12779467518027 31 0.0 0 @@ -4391,15 +4421,15 @@ LINE 8 cut 10 -442.7732526704263 +334.72779245305475 20 -248.08333333333337 +262.12779467518027 30 0.0 11 -442.7732526704263 +329.69099296160175 21 -271.9166666666667 +279.41371737683414 31 0.0 0 @@ -4409,15 +4439,15 @@ LINE 8 cut 10 -442.7732526704263 +329.69099296160175 20 -271.9166666666667 +279.41371737683414 30 0.0 11 -442.2732526704263 +329.21095619250247 21 -271.9166666666667 +279.27384350396034 31 0.0 0 @@ -4427,15 +4457,15 @@ LINE 8 cut 10 -340.11416176133537 +220.11416176133568 20 -372.50000000000006 +357.50000000000017 30 0.0 11 -340.11416176133537 +220.11416176133568 21 -367.50000000000006 +352.50000000000017 31 0.0 0 @@ -4445,15 +4475,15 @@ LINE 8 cut 10 -340.11416176133537 +220.11416176133568 20 -367.50000000000006 +352.50000000000017 30 0.0 11 -351.20507085224455 +231.20507085224477 21 -367.50000000000006 +352.50000000000017 31 0.0 0 @@ -4463,15 +4493,15 @@ LINE 8 cut 10 -351.20507085224455 +231.20507085224477 20 -367.50000000000006 +352.50000000000017 30 0.0 11 -351.20507085224455 +231.20507085224477 21 -372.50000000000006 +357.50000000000017 31 0.0 0 @@ -4481,15 +4511,15 @@ LINE 8 cut 10 -367.8414344886082 +247.84143448860843 20 -372.50000000000006 +357.50000000000017 30 0.0 11 -367.8414344886082 +247.84143448860843 21 -367.50000000000006 +352.50000000000017 31 0.0 0 @@ -4499,15 +4529,15 @@ LINE 8 cut 10 -367.8414344886082 +247.84143448860843 20 -367.50000000000006 +352.50000000000017 30 0.0 11 -378.9323435795172 +258.9323435795175 21 -367.50000000000006 +352.5000000000001 31 0.0 0 @@ -4517,15 +4547,15 @@ LINE 8 cut 10 -378.9323435795172 +258.9323435795175 20 -367.50000000000006 +352.5000000000001 30 0.0 11 -378.9323435795172 +258.9323435795175 21 -372.50000000000006 +357.5000000000001 31 0.0 0 @@ -4535,15 +4565,15 @@ LINE 8 cut 10 -202.27325267042633 +182.2732526704266 20 -387.9166666666668 +372.91666666666674 30 0.0 11 -202.27325267042633 +182.2732526704266 21 -376.0833333333334 +361.08333333333354 31 0.0 0 @@ -4553,15 +4583,15 @@ LINE 8 cut 10 -202.27325267042633 +182.2732526704266 20 -376.0833333333334 +361.08333333333354 30 0.0 11 -202.77325267042633 +182.7732526704266 21 -376.0833333333334 +361.08333333333354 31 0.0 0 @@ -4571,15 +4601,15 @@ LINE 8 cut 10 -202.77325267042633 +182.7732526704266 20 -376.0833333333334 +361.08333333333354 30 0.0 11 -202.77325267042636 +182.7732526704266 21 -387.9166666666668 +372.91666666666674 31 0.0 0 @@ -4589,15 +4619,15 @@ LINE 8 cut 10 -202.77325267042636 +182.7732526704266 20 -387.9166666666668 +372.91666666666674 30 0.0 11 -202.27325267042633 +182.2732526704266 21 -387.9166666666668 +372.91666666666674 31 0.0 0 @@ -4607,15 +4637,15 @@ LINE 8 cut 10 -193.7732526704264 +173.77325267042664 20 -481.0000000000001 +461.00000000000017 30 0.0 11 -202.27325267042636 +182.27325267042667 21 -481.0000000000001 +461.00000000000017 31 0.0 0 @@ -4625,15 +4655,15 @@ LINE 8 cut 10 -202.27325267042636 +182.27325267042667 20 -481.0000000000001 +461.00000000000017 30 0.0 11 -202.27325267042636 +182.27325267042667 21 -481.5000000000001 +461.50000000000017 31 0.0 0 @@ -4643,15 +4673,15 @@ LINE 8 cut 10 -202.27325267042636 +182.27325267042667 20 -481.5000000000001 +461.50000000000017 30 0.0 11 -193.7732526704264 +173.77325267042664 21 -481.5000000000001 +461.50000000000017 31 0.0 0 @@ -4661,15 +4691,15 @@ LINE 8 cut 10 -193.7732526704264 +173.77325267042664 20 -481.5000000000001 +461.50000000000017 30 0.0 11 -193.7732526704264 +173.77325267042664 21 -481.0000000000001 +461.00000000000017 31 0.0 0 @@ -4679,15 +4709,15 @@ LINE 8 cut 10 -167.02325267042633 +147.02325267042653 20 -376.0000000000001 +361.00000000000017 30 0.0 11 -171.02325267042633 +151.02325267042653 21 -376.0000000000001 +361.00000000000017 31 0.0 0 @@ -4697,15 +4727,15 @@ LINE 8 cut 10 -171.02325267042633 +151.02325267042653 20 -376.0000000000001 +361.00000000000017 30 0.0 11 -171.02325267042633 +151.02325267042656 21 -388.0000000000001 +373.0000000000001 31 0.0 0 @@ -4715,15 +4745,15 @@ LINE 8 cut 10 -171.02325267042633 +151.02325267042656 20 -388.0000000000001 +373.0000000000001 30 0.0 11 -167.02325267042633 +147.02325267042653 21 -388.0000000000001 +373.0000000000001 31 0.0 0 @@ -4733,15 +4763,15 @@ LINE 8 cut 10 -167.02325267042633 +147.02325267042653 20 -388.0000000000001 +373.0000000000001 30 0.0 11 -167.02325267042633 +147.02325267042653 21 -376.0000000000001 +361.00000000000017 31 0.0 0 @@ -4751,15 +4781,15 @@ LINE 8 cut 10 -179.02325267042633 +159.02325267042656 20 -377.50000000000006 +362.50000000000017 30 0.0 11 -183.02325267042633 +163.02325267042653 21 -377.50000000000006 +362.50000000000017 31 0.0 0 @@ -4769,15 +4799,15 @@ LINE 8 cut 10 -183.02325267042633 +163.02325267042653 20 -377.50000000000006 +362.50000000000017 30 0.0 11 -183.02325267042633 +163.02325267042656 21 -386.50000000000006 +371.50000000000017 31 0.0 0 @@ -4787,15 +4817,15 @@ LINE 8 cut 10 -183.02325267042633 +163.02325267042656 20 -386.50000000000006 +371.50000000000017 30 0.0 11 -179.02325267042633 +159.0232526704266 21 -386.50000000000006 +371.50000000000017 31 0.0 0 @@ -4805,15 +4835,15 @@ LINE 8 cut 10 -179.02325267042633 +159.0232526704266 20 -386.50000000000006 +371.50000000000017 30 0.0 11 -179.02325267042633 +159.02325267042656 21 -377.50000000000006 +362.50000000000017 31 0.0 0 @@ -4823,15 +4853,15 @@ LINE 8 cut 10 -142.52325267042636 +122.52325267042654 20 -376.0000000000001 +361.00000000000017 30 0.0 11 -165.52325267042636 +145.52325267042656 21 -376.0000000000001 +361.00000000000017 31 0.0 0 @@ -4841,15 +4871,15 @@ LINE 8 cut 10 -165.52325267042636 +145.52325267042656 20 -376.0000000000001 +361.00000000000017 30 0.0 11 -165.52325267042636 +145.5232526704266 21 -388.0000000000001 +373.0000000000001 31 0.0 0 @@ -4859,15 +4889,15 @@ LINE 8 cut 10 -165.52325267042636 +145.5232526704266 20 -388.0000000000001 +373.0000000000001 30 0.0 11 -142.52325267042636 +122.52325267042656 21 -388.0000000000001 +373.0000000000001 31 0.0 0 @@ -4877,15 +4907,15 @@ LINE 8 cut 10 -142.52325267042636 +122.52325267042656 20 -388.0000000000001 +373.0000000000001 30 0.0 11 -142.52325267042636 +122.52325267042654 21 -376.0000000000001 +361.00000000000017 31 0.0 0 @@ -4895,15 +4925,15 @@ LINE 8 cut 10 -137.02325267042636 +117.02325267042654 20 -376.0000000000001 +361.00000000000017 30 0.0 11 -141.02325267042633 +121.02325267042654 21 -376.0000000000001 +361.00000000000017 31 0.0 0 @@ -4913,15 +4943,15 @@ LINE 8 cut 10 -141.02325267042633 +121.02325267042654 20 -376.0000000000001 +361.00000000000017 30 0.0 11 -141.02325267042633 +121.02325267042654 21 -388.0000000000001 +373.0000000000001 31 0.0 0 @@ -4931,15 +4961,15 @@ LINE 8 cut 10 -141.02325267042633 +121.02325267042654 20 -388.0000000000001 +373.0000000000001 30 0.0 11 -137.02325267042636 +117.02325267042654 21 -388.0000000000001 +373.0000000000001 31 0.0 0 @@ -4949,15 +4979,15 @@ LINE 8 cut 10 -137.02325267042636 +117.02325267042654 20 -388.0000000000001 +373.0000000000001 30 0.0 11 -137.02325267042636 +117.02325267042654 21 -376.0000000000001 +361.00000000000017 31 0.0 0 @@ -4967,15 +4997,15 @@ LINE 8 cut 10 -114.52325267042633 +94.52325267042652 20 -376.3333333333334 +361.33333333333354 30 0.0 11 -119.52325267042633 +99.52325267042653 21 -376.3333333333334 +361.33333333333354 31 0.0 0 @@ -4985,15 +5015,15 @@ LINE 8 cut 10 -119.52325267042633 +99.52325267042653 20 -376.3333333333334 +361.33333333333354 30 0.0 11 -119.52325267042634 +99.52325267042654 21 -387.6666666666668 +372.6666666666668 31 0.0 0 @@ -5003,15 +5033,15 @@ LINE 8 cut 10 -119.52325267042634 +99.52325267042654 20 -387.6666666666668 +372.6666666666668 30 0.0 11 -114.52325267042634 +94.52325267042653 21 -387.6666666666668 +372.6666666666668 31 0.0 0 @@ -5021,15 +5051,15 @@ LINE 8 cut 10 -50.293912049626165 +51.013672124985426 20 -378.3985027328003 +363.1285927045407 30 0.0 11 -50.293912049626165 +51.013672124985426 21 -369.46616757760023 +354.37619756818043 31 0.0 0 @@ -5039,15 +5069,15 @@ LINE 8 cut 10 -50.293912049626165 +51.013672124985426 20 -369.46616757760023 +354.37619756818043 30 0.0 11 -68.15858236002626 +68.51846239770595 21 -369.46616757760023 +354.37619756818043 31 0.0 0 @@ -5057,15 +5087,15 @@ LINE 8 cut 10 -68.15858236002626 +68.51846239770595 20 -369.46616757760023 +354.37619756818043 30 0.0 11 -68.15858236002626 +68.51846239770595 21 -378.3985027328003 +363.1285927045407 31 0.0 0 @@ -5075,15 +5105,15 @@ LINE 8 cut 10 -22.23674174086841 +21.79874965689743 20 -274.96789528790873 +261.98792080230675 30 0.0 11 -27.02781066601807 +26.83554914835048 21 -292.6965944551955 +279.27384350396056 31 0.0 0 @@ -5093,15 +5123,15 @@ LINE 8 cut 10 -27.02781066601807 +26.83554914835048 20 -292.6965944551955 +279.27384350396056 30 0.0 11 -26.545125737085613 +26.3555123792512 21 -292.82703700723084 +279.4137173768344 31 0.0 0 @@ -5111,15 +5141,15 @@ LINE 8 cut 10 -26.545125737085613 +26.3555123792512 20 -292.82703700723084 +279.4137173768344 30 0.0 11 -21.754056811935953 +21.318712887798146 21 -275.098337839944 +262.1277946751806 31 0.0 0 @@ -5129,15 +5159,15 @@ LINE 8 cut 10 -21.754056811935953 +21.318712887798146 20 -275.098337839944 +262.1277946751806 30 0.0 11 -22.23674174086841 +21.79874965689743 21 -274.96789528790873 +261.98792080230675 31 0.0 0 @@ -5147,15 +5177,15 @@ LINE 8 cut 10 -27.027810666018013 +26.835549148350314 20 -197.30340554480492 +190.72615649604003 30 0.0 11 -22.236741740868357 +21.798749656897318 21 -215.0321047120917 +208.01207919769385 31 0.0 0 @@ -5165,15 +5195,15 @@ LINE 8 cut 10 -22.236741740868357 +21.798749656897318 20 -215.0321047120917 +208.01207919769385 30 0.0 11 -21.7540568119359 +21.31871288779803 21 -214.90166216005642 +207.87220532482004 31 0.0 0 @@ -5183,15 +5213,15 @@ LINE 8 cut 10 -21.7540568119359 +21.31871288779803 20 -214.90166216005642 +207.87220532482004 30 0.0 11 -26.54512573708556 +26.355512379251028 21 -197.17296299276964 +190.58628262316623 31 0.0 0 @@ -5201,15 +5231,15 @@ LINE 8 cut 10 -26.54512573708556 +26.355512379251028 20 -197.17296299276964 +190.58628262316623 30 0.0 11 -27.027810666018013 +26.835549148350314 21 -197.30340554480492 +190.72615649604003 31 0.0 0 @@ -5219,15 +5249,15 @@ LINE 8 cut 10 -68.15858236002603 +68.51846239770558 20 -111.60149726720016 +106.87140729545979 30 0.0 11 -68.15858236002603 +68.51846239770559 21 -120.5338324224002 +115.62380243182007 31 0.0 0 @@ -5237,15 +5267,15 @@ LINE 8 cut 10 -68.15858236002603 +68.51846239770559 20 -120.5338324224002 +115.62380243182007 30 0.0 11 -50.293912049625966 +51.01367212498506 21 -120.53383242240022 +115.6238024318201 31 0.0 0 @@ -5255,15 +5285,15 @@ LINE 8 cut 10 -50.293912049625966 +51.01367212498506 20 -120.53383242240022 +115.6238024318201 30 0.0 11 -50.29391204962594 +51.01367212498503 21 -111.60149726720017 +106.87140729545983 31 0.0 0 @@ -5273,15 +5303,15 @@ LINE 8 cut 10 -413.3565860037597 +287.52804294314717 20 -382.49999999999994 +363.12859270454044 30 0.0 11 -413.3565860037597 +287.52804294314717 21 -370.83333333333337 +354.3761975681802 31 0.0 0 @@ -5291,15 +5321,15 @@ LINE 8 cut 10 -413.3565860037597 +287.52804294314717 20 -370.83333333333337 +354.3761975681802 30 0.0 11 -436.68991933709293 +305.0328332158677 21 -370.8333333333333 +354.3761975681802 31 0.0 0 @@ -5309,15 +5339,15 @@ LINE 8 cut 10 -436.68991933709293 +305.0328332158677 20 -370.8333333333333 +354.3761975681802 30 0.0 11 -436.68991933709293 +305.0328332158677 21 -382.49999999999994 +363.12859270454044 31 0.0 0 @@ -5329,15 +5359,15 @@ DOTTED 8 90 10 -503.0232526704263 +399.04650534085283 20 -113.00000000000001 +108.00000000000001 30 0.0 11 -564.0232526704264 +460.04650534085283 21 -113.00000000000001 +108.00000000000001 31 0.0 0 @@ -5349,15 +5379,15 @@ DOTTED 8 90 10 -564.0232526704264 +460.04650534085283 20 -113.00000000000001 +108.00000000000001 30 0.0 11 -564.0232526704264 +460.04650534085283 21 -137.00000000000003 +132.0 31 0.0 0 @@ -5369,15 +5399,15 @@ DOTTED 8 90 10 -564.0232526704264 +460.04650534085283 20 -137.00000000000003 +132.0 30 0.0 11 -503.0232526704263 +399.04650534085283 21 -137.00000000000003 +132.0 31 0.0 0 @@ -5389,15 +5419,15 @@ DOTTED 8 90 10 -503.0232526704263 +399.04650534085283 20 -137.00000000000003 +132.0 30 0.0 11 -503.0232526704263 +399.04650534085283 21 -113.00000000000001 +108.00000000000001 31 0.0 0 @@ -5407,15 +5437,15 @@ LINE 8 cut 10 -503.0232526704263 +399.04650534085283 20 -106.00000000000001 +101.00000000000001 30 0.0 11 -503.0232526704263 +399.04650534085283 21 -113.00000000000001 +108.00000000000001 31 0.0 0 @@ -5425,15 +5455,15 @@ LINE 8 cut 10 -563.0232526704264 +459.0465053408528 20 -106.00000000000001 +101.00000000000001 30 0.0 11 -503.0232526704263 +399.04650534085283 21 -106.00000000000001 +101.00000000000001 31 0.0 0 @@ -5443,15 +5473,15 @@ LINE 8 cut 10 -563.0232526704264 +459.0465053408528 20 -113.00000000000001 +108.00000000000001 30 0.0 11 -563.0232526704264 +459.0465053408528 21 -106.00000000000001 +101.00000000000001 31 0.0 0 @@ -5461,15 +5491,15 @@ LINE 8 cut 10 -571.0232526704264 +467.04650534085283 20 -113.00000000000001 +108.00000000000001 30 0.0 11 -564.0232526704264 +460.04650534085283 21 -113.00000000000001 +108.00000000000001 31 0.0 0 @@ -5479,15 +5509,15 @@ LINE 8 cut 10 -571.0232526704264 +467.04650534085283 20 -137.00000000000003 +132.0 30 0.0 11 -571.0232526704264 +467.04650534085283 21 -113.00000000000001 +108.00000000000001 31 0.0 0 @@ -5497,15 +5527,15 @@ LINE 8 cut 10 -564.0232526704264 +460.04650534085283 20 -137.00000000000003 +132.0 30 0.0 11 -571.0232526704264 +467.04650534085283 21 -137.00000000000003 +132.0 31 0.0 0 @@ -5517,15 +5547,15 @@ DOTTED 8 90 10 -564.0232526704264 +460.04650534085283 20 -137.00000000000003 +132.0 30 0.0 11 -564.0232526704264 +460.04650534085283 21 -198.0 +193.00000000000003 31 0.0 0 @@ -5535,15 +5565,15 @@ LINE 8 cut 10 -504.0232526704263 +400.0465053408528 20 -198.0 +193.00000000000003 30 0.0 11 -564.0232526704264 +460.04650534085283 21 -198.0 +193.00000000000003 31 0.0 0 @@ -5555,15 +5585,15 @@ DOTTED 8 90 10 -504.0232526704263 +400.0465053408528 20 -137.00000000000003 +132.0 30 0.0 11 -504.0232526704263 +400.0465053408528 21 -198.0 +193.00000000000003 31 0.0 0 @@ -5573,15 +5603,15 @@ LINE 8 cut 10 -588.0232526704262 +484.04650534085283 20 -137.00000000000003 +132.0 30 0.0 11 -564.0232526704264 +460.04650534085283 21 -137.00000000000003 +132.0 31 0.0 0 @@ -5593,15 +5623,15 @@ DOTTED 8 90 10 -588.0232526704262 +484.04650534085283 20 -137.00000000000003 +132.0 30 0.0 11 -588.0232526704262 +484.04650534085283 21 -198.0 +193.00000000000003 31 0.0 0 @@ -5611,15 +5641,15 @@ LINE 8 cut 10 -564.0232526704264 +460.04650534085283 20 -198.0 +193.00000000000003 30 0.0 11 -588.0232526704262 +484.04650534085283 21 -198.0 +193.00000000000003 31 0.0 0 @@ -5629,15 +5659,15 @@ LINE 8 cut 10 -648.0232526704264 +544.0465053408527 20 -137.00000000000003 +132.0 30 0.0 11 -588.0232526704262 +484.04650534085283 21 -137.00000000000003 +132.0 31 0.0 0 @@ -5647,15 +5677,15 @@ LINE 8 cut 10 -648.0232526704264 +544.0465053408527 20 -198.0 +193.00000000000003 30 0.0 11 -648.0232526704264 +544.0465053408527 21 -137.00000000000003 +132.0 31 0.0 0 @@ -5665,15 +5695,15 @@ LINE 8 cut 10 -588.0232526704262 +484.04650534085283 20 -198.0 +193.00000000000003 30 0.0 11 -648.0232526704264 +544.0465053408527 21 -198.0 +193.00000000000003 31 0.0 0 @@ -5683,15 +5713,15 @@ LINE 8 cut 10 -504.0232526704263 +400.0465053408528 20 -137.00000000000003 +132.0 30 0.0 11 -480.0232526704263 +376.04650534085283 21 -137.00000000000003 +132.0 31 0.0 0 @@ -5701,15 +5731,15 @@ LINE 8 cut 10 -480.0232526704263 +376.04650534085283 20 -198.0 +193.00000000000003 30 0.0 11 -504.0232526704263 +400.0465053408528 21 -198.0 +193.00000000000003 31 0.0 0 @@ -5721,15 +5751,15 @@ DOTTED 8 90 10 -480.0232526704263 +376.04650534085283 20 -198.0 +193.00000000000003 30 0.0 11 -480.0232526704263 +376.04650534085283 21 -137.00000000000003 +132.0 31 0.0 0 @@ -5739,15 +5769,15 @@ LINE 8 cut 10 -470.0232526704263 +366.04650534085283 20 -198.0 +193.00000000000003 30 0.0 11 -480.0232526704263 +376.04650534085283 21 -198.0 +193.00000000000003 31 0.0 0 @@ -5757,15 +5787,15 @@ LINE 8 cut 10 -470.0232526704263 +366.04650534085283 20 -137.00000000000003 +132.0 30 0.0 11 -470.0232526704263 +366.04650534085283 21 -198.0 +193.00000000000003 31 0.0 0 @@ -5775,15 +5805,15 @@ LINE 8 cut 10 -480.0232526704263 +376.04650534085283 20 -137.00000000000003 +132.0 30 0.0 11 -470.0232526704263 +366.04650534085283 21 -137.00000000000003 +132.0 31 0.0 0 @@ -5793,15 +5823,15 @@ LINE 8 cut 10 -496.0232526704263 +392.04650534085283 20 -137.00000000000003 +132.0 30 0.0 11 -503.0232526704263 +399.04650534085283 21 -137.00000000000003 +132.0 31 0.0 0 @@ -5811,15 +5841,15 @@ LINE 8 cut 10 -496.0232526704263 +392.04650534085283 20 -113.00000000000001 +108.00000000000001 30 0.0 11 -496.0232526704263 +392.04650534085283 21 -137.00000000000003 +132.0 31 0.0 0 @@ -5829,15 +5859,15 @@ LINE 8 cut 10 -503.0232526704263 +399.04650534085283 20 -113.00000000000001 +108.00000000000001 30 0.0 11 -496.0232526704263 +392.04650534085283 21 -113.00000000000001 +108.00000000000001 31 0.0 0 @@ -5847,15 +5877,15 @@ LINE 8 cut 10 -552.1141617613354 +448.1374144317619 20 -107.75000000000001 +102.75000000000001 30 0.0 11 -555.6141617613354 +451.6374144317619 21 -107.75000000000001 +102.75000000000001 31 0.0 0 @@ -5865,15 +5895,15 @@ LINE 8 cut 10 -555.6141617613354 +451.6374144317619 20 -107.75000000000001 +102.75000000000001 30 0.0 11 -552.1141617613354 +448.1374144317619 21 -111.25000000000001 +106.25000000000001 31 0.0 0 @@ -5883,15 +5913,15 @@ LINE 8 cut 10 -552.1141617613354 +448.1374144317619 20 -111.25000000000001 +106.25000000000001 30 0.0 11 -541.2050708522444 +437.228323522671 21 -111.25000000000001 +106.25000000000001 31 0.0 0 @@ -5901,15 +5931,15 @@ LINE 8 cut 10 -541.2050708522444 +437.228323522671 20 -111.25000000000001 +106.25000000000001 30 0.0 11 -537.7050708522446 +433.72832352267096 21 -107.75000000000001 +102.75000000000001 31 0.0 0 @@ -5919,15 +5949,15 @@ LINE 8 cut 10 -537.7050708522446 +433.72832352267096 20 -107.75000000000001 +102.75000000000001 30 0.0 11 -541.2050708522444 +437.228323522671 21 -107.75000000000001 +102.75000000000001 31 0.0 0 @@ -5937,15 +5967,15 @@ LINE 8 cut 10 -524.8414344886082 +420.86468715903464 20 -107.75000000000001 +102.75000000000001 30 0.0 11 -528.3414344886082 +424.36468715903464 21 -107.75000000000001 +102.75000000000001 31 0.0 0 @@ -5955,15 +5985,15 @@ LINE 8 cut 10 -528.3414344886082 +424.36468715903464 20 -107.75000000000001 +102.75000000000001 30 0.0 11 -524.8414344886082 +420.86468715903464 21 -111.25000000000001 +106.25000000000001 31 0.0 0 @@ -5973,15 +6003,15 @@ LINE 8 cut 10 -524.8414344886082 +420.86468715903464 20 -111.25000000000001 +106.25000000000001 30 0.0 11 -513.9323435795172 +409.9555962499437 21 -111.25000000000001 +106.25000000000001 31 0.0 0 @@ -5991,15 +6021,15 @@ LINE 8 cut 10 -513.9323435795172 +409.9555962499437 20 -111.25000000000001 +106.25000000000001 30 0.0 11 -510.43234357951724 +406.45559624994377 21 -107.75000000000001 +102.75000000000001 31 0.0 0 @@ -6009,15 +6039,15 @@ LINE 8 cut 10 -510.43234357951724 +406.45559624994377 20 -107.75000000000001 +102.75000000000001 30 0.0 11 -513.9323435795172 +409.9555962499437 21 -107.75000000000001 +102.75000000000001 31 0.0 0 @@ -6027,15 +6057,15 @@ LINE 8 cut 10 -569.2732526704264 +465.29650534085283 20 -129.0 +124.00000000000003 30 0.0 11 -565.7732526704262 +461.79650534085283 21 -129.0 +124.00000000000003 31 0.0 0 @@ -6045,15 +6075,15 @@ LINE 8 cut 10 -565.7732526704262 +461.79650534085283 20 -129.0 +124.00000000000003 30 0.0 11 -565.7732526704262 +461.79650534085283 21 -121.00000000000001 +116.0 31 0.0 0 @@ -6063,15 +6093,15 @@ LINE 8 cut 10 -565.7732526704262 +461.79650534085283 20 -121.00000000000001 +116.0 30 0.0 11 -569.2732526704264 +465.29650534085283 21 -121.00000000000001 +116.0 31 0.0 0 @@ -6081,15 +6111,15 @@ LINE 8 cut 10 -511.5232526704263 +407.54650534085283 20 -188.50000000000003 +183.50000000000003 30 0.0 11 -511.5232526704263 +407.54650534085283 21 -170.5 +165.50000000000003 31 0.0 0 @@ -6099,15 +6129,15 @@ LINE 8 cut 10 -511.5232526704263 +407.54650534085283 20 -170.5 +165.50000000000003 30 0.0 11 -546.5232526704264 +442.54650534085283 21 -170.5 +165.50000000000003 31 0.0 0 @@ -6117,15 +6147,15 @@ LINE 8 cut 10 -546.5232526704264 +442.54650534085283 20 -170.5 +165.50000000000003 30 0.0 11 -546.5232526704264 +442.54650534085283 21 -188.50000000000003 +183.50000000000003 31 0.0 0 @@ -6135,15 +6165,15 @@ LINE 8 cut 10 -546.5232526704264 +442.54650534085283 20 -188.50000000000003 +183.50000000000003 30 0.0 11 -511.5232526704263 +407.54650534085283 21 -188.50000000000003 +183.50000000000003 31 0.0 0 @@ -6153,15 +6183,15 @@ LINE 8 cut 10 -564.5232526704264 +460.54650534085283 20 -150.25 +145.25 30 0.0 11 -564.5232526704264 +460.54650534085283 21 -147.25000000000003 +142.25000000000003 31 0.0 0 @@ -6171,15 +6201,15 @@ LINE 8 cut 10 -564.5232526704264 +460.54650534085283 20 -147.25000000000003 +142.25000000000003 30 0.0 11 -567.5232526704262 +463.5465053408528 21 -147.25000000000003 +142.25000000000003 31 0.0 0 @@ -6189,15 +6219,15 @@ LINE 8 cut 10 -567.5232526704262 +463.5465053408528 20 -147.25000000000003 +142.25000000000003 30 0.0 11 -567.5232526704262 +463.5465053408528 21 -150.25 +145.25 31 0.0 0 @@ -6207,15 +6237,15 @@ LINE 8 cut 10 -567.5232526704262 +463.5465053408528 20 -150.25 +145.25 30 0.0 11 -564.5232526704264 +460.54650534085283 21 -150.25 +145.25 31 0.0 0 @@ -6225,15 +6255,15 @@ LINE 8 cut 10 -585.5232526704262 +481.5465053408529 20 -149.25000000000003 +144.25000000000003 30 0.0 11 -585.5232526704262 +481.5465053408529 21 -148.25 +143.25 31 0.0 0 @@ -6243,15 +6273,15 @@ LINE 8 cut 10 -585.5232526704262 +481.5465053408529 20 -148.25 +143.25 30 0.0 11 -586.5232526704262 +482.54650534085283 21 -148.25 +143.25 31 0.0 0 @@ -6261,15 +6291,15 @@ LINE 8 cut 10 -586.5232526704262 +482.54650534085283 20 -148.25 +143.25 30 0.0 11 -586.5232526704262 +482.54650534085283 21 -149.25000000000003 +144.25000000000003 31 0.0 0 @@ -6279,15 +6309,15 @@ LINE 8 cut 10 -586.5232526704262 +482.54650534085283 20 -149.25000000000003 +144.25000000000003 30 0.0 11 -585.5232526704262 +481.5465053408529 21 -149.25000000000003 +144.25000000000003 31 0.0 0 @@ -6297,15 +6327,15 @@ LINE 8 cut 10 -565.5232526704264 +461.54650534085283 20 -151.75000000000003 +146.75000000000003 30 0.0 11 -565.5232526704264 +461.54650534085283 21 -150.75000000000003 +145.75 31 0.0 0 @@ -6315,15 +6345,15 @@ LINE 8 cut 10 -565.5232526704264 +461.54650534085283 20 -150.75000000000003 +145.75 30 0.0 11 -566.5232526704264 +462.54650534085283 21 -150.75000000000003 +145.75 31 0.0 0 @@ -6333,15 +6363,15 @@ LINE 8 cut 10 -566.5232526704264 +462.54650534085283 20 -150.75000000000003 +145.75 30 0.0 11 -566.5232526704264 +462.54650534085283 21 -151.75000000000003 +146.75000000000003 31 0.0 0 @@ -6351,15 +6381,15 @@ LINE 8 cut 10 -566.5232526704264 +462.54650534085283 20 -151.75000000000003 +146.75000000000003 30 0.0 11 -565.5232526704264 +461.54650534085283 21 -151.75000000000003 +146.75000000000003 31 0.0 0 @@ -6369,15 +6399,15 @@ LINE 8 cut 10 -585.5232526704262 +481.5465053408529 20 -151.75000000000003 +146.75000000000003 30 0.0 11 -585.5232526704262 +481.5465053408529 21 -150.75000000000003 +145.75 31 0.0 0 @@ -6387,15 +6417,15 @@ LINE 8 cut 10 -585.5232526704262 +481.5465053408529 20 -150.75000000000003 +145.75 30 0.0 11 -586.5232526704262 +482.54650534085283 21 -150.75000000000003 +145.75 31 0.0 0 @@ -6405,15 +6435,15 @@ LINE 8 cut 10 -586.5232526704262 +482.54650534085283 20 -150.75000000000003 +145.75 30 0.0 11 -586.5232526704262 +482.54650534085283 21 -151.75000000000003 +146.75000000000003 31 0.0 0 @@ -6423,15 +6453,15 @@ LINE 8 cut 10 -586.5232526704262 +482.54650534085283 20 -151.75000000000003 +146.75000000000003 30 0.0 11 -585.5232526704262 +481.5465053408529 21 -151.75000000000003 +146.75000000000003 31 0.0 0 @@ -6441,15 +6471,15 @@ LINE 8 cut 10 -565.5232526704264 +461.54650534085283 20 -154.25000000000003 +149.25000000000003 30 0.0 11 -565.5232526704264 +461.54650534085283 21 -153.25000000000003 +148.25 31 0.0 0 @@ -6459,15 +6489,15 @@ LINE 8 cut 10 -565.5232526704264 +461.54650534085283 20 -153.25000000000003 +148.25 30 0.0 11 -566.5232526704264 +462.54650534085283 21 -153.25000000000003 +148.25 31 0.0 0 @@ -6477,15 +6507,15 @@ LINE 8 cut 10 -566.5232526704264 +462.54650534085283 20 -153.25000000000003 +148.25 30 0.0 11 -566.5232526704264 +462.54650534085283 21 -154.25000000000003 +149.25000000000003 31 0.0 0 @@ -6495,15 +6525,15 @@ LINE 8 cut 10 -566.5232526704264 +462.54650534085283 20 -154.25000000000003 +149.25000000000003 30 0.0 11 -565.5232526704264 +461.54650534085283 21 -154.25000000000003 +149.25000000000003 31 0.0 0 @@ -6513,15 +6543,15 @@ LINE 8 cut 10 -585.5232526704262 +481.5465053408529 20 -154.25000000000003 +149.25000000000003 30 0.0 11 -585.5232526704262 +481.5465053408529 21 -153.25000000000003 +148.25 31 0.0 0 @@ -6531,15 +6561,15 @@ LINE 8 cut 10 -585.5232526704262 +481.5465053408529 20 -153.25000000000003 +148.25 30 0.0 11 -586.5232526704262 +482.54650534085283 21 -153.25000000000003 +148.25 31 0.0 0 @@ -6549,15 +6579,15 @@ LINE 8 cut 10 -586.5232526704262 +482.54650534085283 20 -153.25000000000003 +148.25 30 0.0 11 -586.5232526704262 +482.54650534085283 21 -154.25000000000003 +149.25000000000003 31 0.0 0 @@ -6567,15 +6597,15 @@ LINE 8 cut 10 -586.5232526704262 +482.54650534085283 20 -154.25000000000003 +149.25000000000003 30 0.0 11 -585.5232526704262 +481.5465053408529 21 -154.25000000000003 +149.25000000000003 31 0.0 0 @@ -6585,15 +6615,15 @@ LINE 8 cut 10 -565.5232526704264 +461.54650534085283 20 -156.75 +151.75000000000003 30 0.0 11 -565.5232526704264 +461.54650534085283 21 -155.75000000000003 +150.75000000000003 31 0.0 0 @@ -6603,15 +6633,15 @@ LINE 8 cut 10 -565.5232526704264 +461.54650534085283 20 -155.75000000000003 +150.75000000000003 30 0.0 11 -566.5232526704264 +462.54650534085283 21 -155.75000000000003 +150.75000000000003 31 0.0 0 @@ -6621,15 +6651,15 @@ LINE 8 cut 10 -566.5232526704264 +462.54650534085283 20 -155.75000000000003 +150.75000000000003 30 0.0 11 -566.5232526704264 +462.54650534085283 21 -156.75 +151.75000000000003 31 0.0 0 @@ -6639,15 +6669,15 @@ LINE 8 cut 10 -566.5232526704264 +462.54650534085283 20 -156.75 +151.75000000000003 30 0.0 11 -565.5232526704264 +461.54650534085283 21 -156.75 +151.75000000000003 31 0.0 0 @@ -6657,15 +6687,15 @@ LINE 8 cut 10 -585.5232526704262 +481.5465053408529 20 -156.75 +151.75000000000003 30 0.0 11 -585.5232526704262 +481.5465053408529 21 -155.75000000000003 +150.75000000000003 31 0.0 0 @@ -6675,15 +6705,15 @@ LINE 8 cut 10 -585.5232526704262 +481.5465053408529 20 -155.75000000000003 +150.75000000000003 30 0.0 11 -586.5232526704262 +482.54650534085283 21 -155.75000000000003 +150.75000000000003 31 0.0 0 @@ -6693,15 +6723,15 @@ LINE 8 cut 10 -586.5232526704262 +482.54650534085283 20 -155.75000000000003 +150.75000000000003 30 0.0 11 -586.5232526704262 +482.54650534085283 21 -156.75 +151.75000000000003 31 0.0 0 @@ -6711,15 +6741,15 @@ LINE 8 cut 10 -586.5232526704262 +482.54650534085283 20 -156.75 +151.75000000000003 30 0.0 11 -585.5232526704262 +481.5465053408529 21 -156.75 +151.75000000000003 31 0.0 0 @@ -6729,15 +6759,15 @@ LINE 8 cut 10 -565.5232526704264 +461.54650534085283 20 -159.25 +154.25000000000003 30 0.0 11 -565.5232526704264 +461.54650534085283 21 -158.25000000000003 +153.25000000000003 31 0.0 0 @@ -6747,15 +6777,15 @@ LINE 8 cut 10 -565.5232526704264 +461.54650534085283 20 -158.25000000000003 +153.25000000000003 30 0.0 11 -566.5232526704264 +462.54650534085283 21 -158.25000000000003 +153.25000000000003 31 0.0 0 @@ -6765,15 +6795,15 @@ LINE 8 cut 10 -566.5232526704264 +462.54650534085283 20 -158.25000000000003 +153.25000000000003 30 0.0 11 -566.5232526704264 +462.54650534085283 21 -159.25 +154.25000000000003 31 0.0 0 @@ -6783,15 +6813,15 @@ LINE 8 cut 10 -566.5232526704264 +462.54650534085283 20 -159.25 +154.25000000000003 30 0.0 11 -565.5232526704264 +461.54650534085283 21 -159.25 +154.25000000000003 31 0.0 0 @@ -6801,15 +6831,15 @@ LINE 8 cut 10 -585.5232526704262 +481.5465053408529 20 -159.25 +154.25000000000003 30 0.0 11 -585.5232526704262 +481.5465053408529 21 -158.25000000000003 +153.25000000000003 31 0.0 0 @@ -6819,15 +6849,15 @@ LINE 8 cut 10 -585.5232526704262 +481.5465053408529 20 -158.25000000000003 +153.25000000000003 30 0.0 11 -586.5232526704262 +482.54650534085283 21 -158.25000000000003 +153.25000000000003 31 0.0 0 @@ -6837,15 +6867,15 @@ LINE 8 cut 10 -586.5232526704262 +482.54650534085283 20 -158.25000000000003 +153.25000000000003 30 0.0 11 -586.5232526704262 +482.54650534085283 21 -159.25 +154.25000000000003 31 0.0 0 @@ -6855,15 +6885,15 @@ LINE 8 cut 10 -586.5232526704262 +482.54650534085283 20 -159.25 +154.25000000000003 30 0.0 11 -585.5232526704262 +481.5465053408529 21 -159.25 +154.25000000000003 31 0.0 0 @@ -6873,15 +6903,15 @@ LINE 8 cut 10 -565.5232526704264 +461.54650534085283 20 -161.75 +156.75 30 0.0 11 -565.5232526704264 +461.54650534085283 21 -160.75000000000003 +155.75000000000003 31 0.0 0 @@ -6891,15 +6921,15 @@ LINE 8 cut 10 -565.5232526704264 +461.54650534085283 20 -160.75000000000003 +155.75000000000003 30 0.0 11 -566.5232526704264 +462.54650534085283 21 -160.75000000000003 +155.75000000000003 31 0.0 0 @@ -6909,15 +6939,15 @@ LINE 8 cut 10 -566.5232526704264 +462.54650534085283 20 -160.75000000000003 +155.75000000000003 30 0.0 11 -566.5232526704264 +462.54650534085283 21 -161.75 +156.75 31 0.0 0 @@ -6927,15 +6957,15 @@ LINE 8 cut 10 -566.5232526704264 +462.54650534085283 20 -161.75 +156.75 30 0.0 11 -565.5232526704264 +461.54650534085283 21 -161.75 +156.75 31 0.0 0 @@ -6945,15 +6975,15 @@ LINE 8 cut 10 -585.5232526704262 +481.5465053408529 20 -161.75 +156.75 30 0.0 11 -585.5232526704262 +481.5465053408529 21 -160.75000000000003 +155.75000000000003 31 0.0 0 @@ -6963,15 +6993,15 @@ LINE 8 cut 10 -585.5232526704262 +481.5465053408529 20 -160.75000000000003 +155.75000000000003 30 0.0 11 -586.5232526704262 +482.54650534085283 21 -160.75000000000003 +155.75000000000003 31 0.0 0 @@ -6981,15 +7011,177 @@ LINE 8 cut 10 -586.5232526704262 +482.54650534085283 20 -160.75000000000003 +155.75000000000003 30 0.0 11 -586.5232526704262 +482.54650534085283 21 -161.75 +156.75 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +482.54650534085283 + 20 +156.75 + 30 +0.0 + 11 +481.5465053408529 + 21 +156.75 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +461.54650534085283 + 20 +159.25 + 30 +0.0 + 11 +461.54650534085283 + 21 +158.25000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +461.54650534085283 + 20 +158.25000000000003 + 30 +0.0 + 11 +462.54650534085283 + 21 +158.25000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +462.54650534085283 + 20 +158.25000000000003 + 30 +0.0 + 11 +462.54650534085283 + 21 +159.25 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +462.54650534085283 + 20 +159.25 + 30 +0.0 + 11 +461.54650534085283 + 21 +159.25 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +481.5465053408529 + 20 +159.25 + 30 +0.0 + 11 +481.5465053408529 + 21 +158.25000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +481.5465053408529 + 20 +158.25000000000003 + 30 +0.0 + 11 +482.54650534085283 + 21 +158.25000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +482.54650534085283 + 20 +158.25000000000003 + 30 +0.0 + 11 +482.54650534085283 + 21 +159.25 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +482.54650534085283 + 20 +159.25 + 30 +0.0 + 11 +481.5465053408529 + 21 +159.25 31 0.0 0 @@ -6999,13 +7191,139 @@ LINE 8 cut 10 -586.5232526704262 +461.54650534085283 20 161.75 30 0.0 11 -585.5232526704262 +461.54650534085283 + 21 +160.75000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +461.54650534085283 + 20 +160.75000000000003 + 30 +0.0 + 11 +462.54650534085283 + 21 +160.75000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +462.54650534085283 + 20 +160.75000000000003 + 30 +0.0 + 11 +462.54650534085283 + 21 +161.75 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +462.54650534085283 + 20 +161.75 + 30 +0.0 + 11 +461.54650534085283 + 21 +161.75 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +481.5465053408529 + 20 +161.75 + 30 +0.0 + 11 +481.5465053408529 + 21 +160.75000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +481.5465053408529 + 20 +160.75000000000003 + 30 +0.0 + 11 +482.54650534085283 + 21 +160.75000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +482.54650534085283 + 20 +160.75000000000003 + 30 +0.0 + 11 +482.54650534085283 + 21 +161.75 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +482.54650534085283 + 20 +161.75 + 30 +0.0 + 11 +481.5465053408529 21 161.75 31 @@ -7017,13 +7335,13 @@ LINE 8 cut 10 -565.5232526704264 +461.54650534085283 20 164.25000000000003 30 0.0 11 -565.5232526704264 +461.54650534085283 21 163.25000000000003 31 @@ -7035,13 +7353,13 @@ LINE 8 cut 10 -565.5232526704264 +461.54650534085283 20 163.25000000000003 30 0.0 11 -566.5232526704264 +462.54650534085283 21 163.25000000000003 31 @@ -7053,13 +7371,13 @@ LINE 8 cut 10 -566.5232526704264 +462.54650534085283 20 163.25000000000003 30 0.0 11 -566.5232526704264 +462.54650534085283 21 164.25000000000003 31 @@ -7071,13 +7389,13 @@ LINE 8 cut 10 -566.5232526704264 +462.54650534085283 20 164.25000000000003 30 0.0 11 -565.5232526704264 +461.54650534085283 21 164.25000000000003 31 @@ -7089,13 +7407,13 @@ LINE 8 cut 10 -585.5232526704262 +481.5465053408529 20 164.25000000000003 30 0.0 11 -585.5232526704262 +481.5465053408529 21 163.25000000000003 31 @@ -7107,13 +7425,13 @@ LINE 8 cut 10 -585.5232526704262 +481.5465053408529 20 163.25000000000003 30 0.0 11 -586.5232526704262 +482.54650534085283 21 163.25000000000003 31 @@ -7125,13 +7443,13 @@ LINE 8 cut 10 -586.5232526704262 +482.54650534085283 20 163.25000000000003 30 0.0 11 -586.5232526704262 +482.54650534085283 21 164.25000000000003 31 @@ -7143,13 +7461,13 @@ LINE 8 cut 10 -586.5232526704262 +482.54650534085283 20 164.25000000000003 30 0.0 11 -585.5232526704262 +481.5465053408529 21 164.25000000000003 31 @@ -7161,13 +7479,13 @@ LINE 8 cut 10 -565.5232526704264 +461.54650534085283 20 166.75000000000003 30 0.0 11 -565.5232526704264 +461.54650534085283 21 165.75 31 @@ -7179,13 +7497,13 @@ LINE 8 cut 10 -565.5232526704264 +461.54650534085283 20 165.75 30 0.0 11 -566.5232526704264 +462.54650534085283 21 165.75 31 @@ -7197,13 +7515,13 @@ LINE 8 cut 10 -566.5232526704264 +462.54650534085283 20 165.75 30 0.0 11 -566.5232526704264 +462.54650534085283 21 166.75000000000003 31 @@ -7215,13 +7533,13 @@ LINE 8 cut 10 -566.5232526704264 +462.54650534085283 20 166.75000000000003 30 0.0 11 -565.5232526704264 +461.54650534085283 21 166.75000000000003 31 @@ -7233,13 +7551,13 @@ LINE 8 cut 10 -585.5232526704262 +481.5465053408529 20 166.75000000000003 30 0.0 11 -585.5232526704262 +481.5465053408529 21 165.75 31 @@ -7251,13 +7569,13 @@ LINE 8 cut 10 -585.5232526704262 +481.5465053408529 20 165.75 30 0.0 11 -586.5232526704262 +482.54650534085283 21 165.75 31 @@ -7269,13 +7587,13 @@ LINE 8 cut 10 -586.5232526704262 +482.54650534085283 20 165.75 30 0.0 11 -586.5232526704262 +482.54650534085283 21 166.75000000000003 31 @@ -7287,13 +7605,13 @@ LINE 8 cut 10 -586.5232526704262 +482.54650534085283 20 166.75000000000003 30 0.0 11 -585.5232526704262 +481.5465053408529 21 166.75000000000003 31 @@ -7305,13 +7623,13 @@ LINE 8 cut 10 -565.5232526704264 +461.54650534085283 20 169.25000000000003 30 0.0 11 -565.5232526704264 +461.54650534085283 21 168.25 31 @@ -7323,13 +7641,13 @@ LINE 8 cut 10 -565.5232526704264 +461.54650534085283 20 168.25 30 0.0 11 -566.5232526704264 +462.54650534085283 21 168.25 31 @@ -7341,13 +7659,13 @@ LINE 8 cut 10 -566.5232526704264 +462.54650534085283 20 168.25 30 0.0 11 -566.5232526704264 +462.54650534085283 21 169.25000000000003 31 @@ -7359,13 +7677,13 @@ LINE 8 cut 10 -566.5232526704264 +462.54650534085283 20 169.25000000000003 30 0.0 11 -565.5232526704264 +461.54650534085283 21 169.25000000000003 31 @@ -7377,13 +7695,13 @@ LINE 8 cut 10 -585.5232526704262 +481.5465053408529 20 169.25000000000003 30 0.0 11 -585.5232526704262 +481.5465053408529 21 168.25 31 @@ -7395,13 +7713,13 @@ LINE 8 cut 10 -585.5232526704262 +481.5465053408529 20 168.25 30 0.0 11 -586.5232526704262 +482.54650534085283 21 168.25 31 @@ -7413,13 +7731,13 @@ LINE 8 cut 10 -586.5232526704262 +482.54650534085283 20 168.25 30 0.0 11 -586.5232526704262 +482.54650534085283 21 169.25000000000003 31 @@ -7431,13 +7749,13 @@ LINE 8 cut 10 -586.5232526704262 +482.54650534085283 20 169.25000000000003 30 0.0 11 -585.5232526704262 +481.5465053408529 21 169.25000000000003 31 @@ -7449,13 +7767,13 @@ LINE 8 cut 10 -565.5232526704264 +461.54650534085283 20 171.75000000000003 30 0.0 11 -565.5232526704264 +461.54650534085283 21 170.75 31 @@ -7467,13 +7785,13 @@ LINE 8 cut 10 -565.5232526704264 +461.54650534085283 20 170.75 30 0.0 11 -566.5232526704264 +462.54650534085283 21 170.75 31 @@ -7485,13 +7803,13 @@ LINE 8 cut 10 -566.5232526704264 +462.54650534085283 20 170.75 30 0.0 11 -566.5232526704264 +462.54650534085283 21 171.75000000000003 31 @@ -7503,13 +7821,13 @@ LINE 8 cut 10 -566.5232526704264 +462.54650534085283 20 171.75000000000003 30 0.0 11 -565.5232526704264 +461.54650534085283 21 171.75000000000003 31 @@ -7521,13 +7839,13 @@ LINE 8 cut 10 -585.5232526704262 +481.5465053408529 20 171.75000000000003 30 0.0 11 -585.5232526704262 +481.5465053408529 21 170.75 31 @@ -7539,13 +7857,13 @@ LINE 8 cut 10 -585.5232526704262 +481.5465053408529 20 170.75 30 0.0 11 -586.5232526704262 +482.54650534085283 21 170.75 31 @@ -7557,13 +7875,13 @@ LINE 8 cut 10 -586.5232526704262 +482.54650534085283 20 170.75 30 0.0 11 -586.5232526704262 +482.54650534085283 21 171.75000000000003 31 @@ -7575,13 +7893,13 @@ LINE 8 cut 10 -586.5232526704262 +482.54650534085283 20 171.75000000000003 30 0.0 11 -585.5232526704262 +481.5465053408529 21 171.75000000000003 31 @@ -7593,13 +7911,13 @@ LINE 8 cut 10 -565.5232526704264 +461.54650534085283 20 174.25000000000003 30 0.0 11 -565.5232526704264 +461.54650534085283 21 173.25000000000003 31 @@ -7611,13 +7929,13 @@ LINE 8 cut 10 -565.5232526704264 +461.54650534085283 20 173.25000000000003 30 0.0 11 -566.5232526704264 +462.54650534085283 21 173.25000000000003 31 @@ -7629,13 +7947,13 @@ LINE 8 cut 10 -566.5232526704264 +462.54650534085283 20 173.25000000000003 30 0.0 11 -566.5232526704264 +462.54650534085283 21 174.25000000000003 31 @@ -7647,13 +7965,13 @@ LINE 8 cut 10 -566.5232526704264 +462.54650534085283 20 174.25000000000003 30 0.0 11 -565.5232526704264 +461.54650534085283 21 174.25000000000003 31 @@ -7665,13 +7983,13 @@ LINE 8 cut 10 -585.5232526704262 +481.5465053408529 20 174.25000000000003 30 0.0 11 -585.5232526704262 +481.5465053408529 21 173.25000000000003 31 @@ -7683,13 +8001,13 @@ LINE 8 cut 10 -585.5232526704262 +481.5465053408529 20 173.25000000000003 30 0.0 11 -586.5232526704262 +482.54650534085283 21 173.25000000000003 31 @@ -7701,13 +8019,13 @@ LINE 8 cut 10 -586.5232526704262 +482.54650534085283 20 173.25000000000003 30 0.0 11 -586.5232526704262 +482.54650534085283 21 174.25000000000003 31 @@ -7719,13 +8037,13 @@ LINE 8 cut 10 -586.5232526704262 +482.54650534085283 20 174.25000000000003 30 0.0 11 -585.5232526704262 +481.5465053408529 21 174.25000000000003 31 @@ -7737,13 +8055,13 @@ LINE 8 cut 10 -565.5232526704264 +461.54650534085283 20 176.75000000000003 30 0.0 11 -565.5232526704264 +461.54650534085283 21 175.75000000000003 31 @@ -7755,13 +8073,13 @@ LINE 8 cut 10 -565.5232526704264 +461.54650534085283 20 175.75000000000003 30 0.0 11 -566.5232526704264 +462.54650534085283 21 175.75000000000003 31 @@ -7773,13 +8091,13 @@ LINE 8 cut 10 -566.5232526704264 +462.54650534085283 20 175.75000000000003 30 0.0 11 -566.5232526704264 +462.54650534085283 21 176.75000000000003 31 @@ -7791,13 +8109,13 @@ LINE 8 cut 10 -566.5232526704264 +462.54650534085283 20 176.75000000000003 30 0.0 11 -565.5232526704264 +461.54650534085283 21 176.75000000000003 31 @@ -7809,13 +8127,13 @@ LINE 8 cut 10 -585.5232526704262 +481.5465053408529 20 176.75000000000003 30 0.0 11 -585.5232526704262 +481.5465053408529 21 175.75000000000003 31 @@ -7827,13 +8145,13 @@ LINE 8 cut 10 -585.5232526704262 +481.5465053408529 20 175.75000000000003 30 0.0 11 -586.5232526704262 +482.54650534085283 21 175.75000000000003 31 @@ -7845,13 +8163,13 @@ LINE 8 cut 10 -586.5232526704262 +482.54650534085283 20 175.75000000000003 30 0.0 11 -586.5232526704262 +482.54650534085283 21 176.75000000000003 31 @@ -7863,13 +8181,13 @@ LINE 8 cut 10 -586.5232526704262 +482.54650534085283 20 176.75000000000003 30 0.0 11 -585.5232526704262 +481.5465053408529 21 176.75000000000003 31 @@ -7881,13 +8199,13 @@ LINE 8 cut 10 -565.5232526704264 +461.54650534085283 20 179.25000000000003 30 0.0 11 -565.5232526704264 +461.54650534085283 21 178.25000000000003 31 @@ -7899,13 +8217,13 @@ LINE 8 cut 10 -565.5232526704264 +461.54650534085283 20 178.25000000000003 30 0.0 11 -566.5232526704264 +462.54650534085283 21 178.25000000000003 31 @@ -7917,13 +8235,13 @@ LINE 8 cut 10 -566.5232526704264 +462.54650534085283 20 178.25000000000003 30 0.0 11 -566.5232526704264 +462.54650534085283 21 179.25000000000003 31 @@ -7935,13 +8253,13 @@ LINE 8 cut 10 -566.5232526704264 +462.54650534085283 20 179.25000000000003 30 0.0 11 -565.5232526704264 +461.54650534085283 21 179.25000000000003 31 @@ -7953,13 +8271,13 @@ LINE 8 cut 10 -585.5232526704262 +481.5465053408529 20 179.25000000000003 30 0.0 11 -585.5232526704262 +481.5465053408529 21 178.25000000000003 31 @@ -7971,13 +8289,13 @@ LINE 8 cut 10 -585.5232526704262 +481.5465053408529 20 178.25000000000003 30 0.0 11 -586.5232526704262 +482.54650534085283 21 178.25000000000003 31 @@ -7989,13 +8307,13 @@ LINE 8 cut 10 -586.5232526704262 +482.54650534085283 20 178.25000000000003 30 0.0 11 -586.5232526704262 +482.54650534085283 21 179.25000000000003 31 @@ -8007,13 +8325,13 @@ LINE 8 cut 10 -586.5232526704262 +482.54650534085283 20 179.25000000000003 30 0.0 11 -585.5232526704262 +481.5465053408529 21 179.25000000000003 31 @@ -8025,13 +8343,13 @@ LINE 8 cut 10 -565.5232526704264 +461.54650534085283 20 181.75 30 0.0 11 -565.5232526704264 +461.54650534085283 21 180.75000000000003 31 @@ -8043,13 +8361,13 @@ LINE 8 cut 10 -565.5232526704264 +461.54650534085283 20 180.75000000000003 30 0.0 11 -566.5232526704264 +462.54650534085283 21 180.75000000000003 31 @@ -8061,13 +8379,13 @@ LINE 8 cut 10 -566.5232526704264 +462.54650534085283 20 180.75000000000003 30 0.0 11 -566.5232526704264 +462.54650534085283 21 181.75 31 @@ -8079,13 +8397,13 @@ LINE 8 cut 10 -566.5232526704264 +462.54650534085283 20 181.75 30 0.0 11 -565.5232526704264 +461.54650534085283 21 181.75 31 @@ -8097,15 +8415,15 @@ LINE 8 cut 10 -585.5232526704262 +480.54650534085283 20 -181.75 +182.75000000000003 30 0.0 11 -585.5232526704262 +480.54650534085283 21 -180.75000000000003 +179.75 31 0.0 0 @@ -8115,15 +8433,15 @@ LINE 8 cut 10 -585.5232526704262 +480.54650534085283 20 -180.75000000000003 +179.75 30 0.0 11 -586.5232526704262 +483.54650534085283 21 -180.75000000000003 +179.75 31 0.0 0 @@ -8133,15 +8451,15 @@ LINE 8 cut 10 -586.5232526704262 +483.54650534085283 20 -180.75000000000003 +179.75 30 0.0 11 -586.5232526704262 +483.54650534085283 21 -181.75 +182.75000000000003 31 0.0 0 @@ -8151,15 +8469,15 @@ LINE 8 cut 10 -586.5232526704262 +483.54650534085283 20 -181.75 +182.75000000000003 30 0.0 11 -585.5232526704262 +480.54650534085283 21 -181.75 +182.75000000000003 31 0.0 0 @@ -8169,15 +8487,15 @@ LINE 8 cut 10 -565.5232526704264 +476.29650534085283 20 -184.25 +139.75000000000003 30 0.0 11 -565.5232526704264 +467.79650534085283 21 -183.25000000000003 +139.75000000000003 31 0.0 0 @@ -8187,15 +8505,15 @@ LINE 8 cut 10 -565.5232526704264 +467.79650534085283 20 -183.25000000000003 +139.75000000000003 30 0.0 11 -566.5232526704264 +467.79650534085283 21 -183.25000000000003 +139.25 31 0.0 0 @@ -8205,15 +8523,15 @@ LINE 8 cut 10 -566.5232526704264 +467.79650534085283 20 -183.25000000000003 +139.25 30 0.0 11 -566.5232526704264 +476.29650534085283 21 -184.25 +139.25 31 0.0 0 @@ -8223,15 +8541,15 @@ LINE 8 cut 10 -566.5232526704264 +476.29650534085283 20 -184.25 +139.25 30 0.0 11 -565.5232526704264 +476.29650534085283 21 -184.25 +139.75000000000003 31 0.0 0 @@ -8241,15 +8559,15 @@ LINE 8 cut 10 -585.5232526704262 +467.79650534085283 20 -184.25 +187.50000000000003 30 0.0 11 -585.5232526704262 +476.29650534085283 21 -183.25000000000003 +187.50000000000003 31 0.0 0 @@ -8259,15 +8577,15 @@ LINE 8 cut 10 -585.5232526704262 +476.29650534085283 20 -183.25000000000003 +187.50000000000003 30 0.0 11 -586.5232526704262 +476.29650534085283 21 -183.25000000000003 +188.00000000000003 31 0.0 0 @@ -8277,15 +8595,15 @@ LINE 8 cut 10 -586.5232526704262 +476.29650534085283 20 -183.25000000000003 +188.00000000000003 30 0.0 11 -586.5232526704262 +467.79650534085283 21 -184.25 +188.00000000000003 31 0.0 0 @@ -8295,15 +8613,15 @@ LINE 8 cut 10 -586.5232526704262 +467.79650534085283 20 -184.25 +188.00000000000003 30 0.0 11 -585.5232526704262 +467.79650534085283 21 -184.25 +187.50000000000003 31 0.0 0 @@ -8313,15 +8631,15 @@ LINE 8 cut 10 -565.5232526704264 +499.04650534085283 20 -186.75 +183.00000000000003 30 0.0 11 -565.5232526704264 +499.04650534085283 21 -185.75000000000003 +170.00000000000003 31 0.0 0 @@ -8331,15 +8649,15 @@ LINE 8 cut 10 -565.5232526704264 +499.04650534085283 20 -185.75000000000003 +170.00000000000003 30 0.0 11 -566.5232526704264 +529.0465053408527 21 -185.75000000000003 +170.00000000000003 31 0.0 0 @@ -8349,15 +8667,15 @@ LINE 8 cut 10 -566.5232526704264 +529.0465053408527 20 -185.75000000000003 +170.00000000000003 30 0.0 11 -566.5232526704264 +529.0465053408527 21 -186.75 +183.00000000000003 31 0.0 0 @@ -8367,15 +8685,15 @@ LINE 8 cut 10 -566.5232526704264 +529.0465053408527 20 -186.75 +183.00000000000003 30 0.0 11 -565.5232526704264 +499.04650534085283 21 -186.75 +183.00000000000003 31 0.0 0 @@ -8385,15 +8703,15 @@ LINE 8 cut 10 -584.5232526704264 +506.11468715903464 20 -187.75000000000003 +137.50000000000003 30 0.0 11 -584.5232526704264 +494.70559624994377 21 -184.75000000000003 +137.50000000000003 31 0.0 0 @@ -8403,15 +8721,15 @@ LINE 8 cut 10 -584.5232526704264 +494.70559624994377 20 -184.75000000000003 +137.50000000000003 30 0.0 11 -587.5232526704262 +494.70559624994377 21 -184.75000000000003 +137.00000000000003 31 0.0 0 @@ -8421,15 +8739,15 @@ LINE 8 cut 10 -587.5232526704262 +494.70559624994377 20 -184.75000000000003 +137.00000000000003 30 0.0 11 -587.5232526704262 +506.11468715903464 21 -187.75000000000003 +137.00000000000003 31 0.0 0 @@ -8439,15 +8757,15 @@ LINE 8 cut 10 -587.5232526704262 +506.11468715903464 20 -187.75000000000003 +137.00000000000003 30 0.0 11 -584.5232526704264 +506.11468715903464 21 -187.75000000000003 +137.50000000000003 31 0.0 0 @@ -8457,15 +8775,15 @@ LINE 8 cut 10 -580.2732526704264 +533.387414431762 20 -144.75000000000003 +137.50000000000003 30 0.0 11 -571.7732526704262 +521.978323522671 21 -144.75000000000003 +137.50000000000003 31 0.0 0 @@ -8475,15 +8793,15 @@ LINE 8 cut 10 -571.7732526704262 +521.978323522671 20 -144.75000000000003 +137.50000000000003 30 0.0 11 -571.7732526704262 +521.978323522671 21 -144.25000000000003 +137.00000000000003 31 0.0 0 @@ -8493,15 +8811,15 @@ LINE 8 cut 10 -571.7732526704262 +521.978323522671 20 -144.25000000000003 +137.00000000000003 30 0.0 11 -580.2732526704264 +533.387414431762 21 -144.25000000000003 +137.00000000000003 31 0.0 0 @@ -8511,15 +8829,15 @@ LINE 8 cut 10 -580.2732526704264 +533.387414431762 20 -144.25000000000003 +137.00000000000003 30 0.0 11 -580.2732526704264 +533.387414431762 21 -144.75000000000003 +137.50000000000003 31 0.0 0 @@ -8529,15 +8847,15 @@ LINE 8 cut 10 -571.7732526704262 +536.2965053408528 20 -192.50000000000003 +154.4318181818182 30 0.0 11 -580.2732526704264 +536.2965053408528 21 -192.50000000000003 +142.84090909090912 31 0.0 0 @@ -8547,15 +8865,15 @@ LINE 8 cut 10 -580.2732526704264 +536.2965053408528 20 -192.50000000000003 +142.84090909090912 30 0.0 11 -580.2732526704264 +536.7965053408527 21 -193.00000000000003 +142.84090909090912 31 0.0 0 @@ -8565,15 +8883,15 @@ LINE 8 cut 10 -580.2732526704264 +536.7965053408527 20 -193.00000000000003 +142.84090909090912 30 0.0 11 -571.7732526704262 +536.7965053408527 21 -193.00000000000003 +154.4318181818182 31 0.0 0 @@ -8583,15 +8901,15 @@ LINE 8 cut 10 -571.7732526704262 +536.7965053408527 20 -193.00000000000003 +154.4318181818182 30 0.0 11 -571.7732526704262 +536.2965053408528 21 -192.50000000000003 +154.4318181818182 31 0.0 0 @@ -8601,15 +8919,15 @@ LINE 8 cut 10 -603.0232526704264 +536.2965053408528 20 -188.00000000000003 +182.15909090909093 30 0.0 11 -603.0232526704264 +536.2965053408528 21 -175.0 +170.5681818181818 31 0.0 0 @@ -8619,15 +8937,15 @@ LINE 8 cut 10 -603.0232526704264 +536.2965053408528 20 -175.0 +170.5681818181818 30 0.0 11 -633.0232526704262 +536.7965053408527 21 -175.0 +170.5681818181818 31 0.0 0 @@ -8637,15 +8955,15 @@ LINE 8 cut 10 -633.0232526704262 +536.7965053408527 20 -175.0 +170.5681818181818 30 0.0 11 -633.0232526704262 +536.7965053408527 21 -188.00000000000003 +182.15909090909093 31 0.0 0 @@ -8655,15 +8973,15 @@ LINE 8 cut 10 -633.0232526704262 +536.7965053408527 20 -188.00000000000003 +182.15909090909093 30 0.0 11 -603.0232526704264 +536.2965053408528 21 -188.00000000000003 +182.15909090909093 31 0.0 0 @@ -8673,15 +8991,15 @@ LINE 8 cut 10 -610.0914344886081 +376.5465053408528 20 -142.50000000000003 +145.25 30 0.0 11 -598.6823435795171 +376.5465053408528 21 -142.50000000000003 +142.25000000000003 31 0.0 0 @@ -8691,15 +9009,15 @@ LINE 8 cut 10 -598.6823435795171 +376.5465053408528 20 -142.50000000000003 +142.25000000000003 30 0.0 11 -598.6823435795171 +379.54650534085283 21 -142.00000000000003 +142.25000000000003 31 0.0 0 @@ -8709,15 +9027,15 @@ LINE 8 cut 10 -598.6823435795171 +379.54650534085283 20 -142.00000000000003 +142.25000000000003 30 0.0 11 -610.0914344886081 +379.54650534085283 21 -142.00000000000003 +145.25 31 0.0 0 @@ -8727,15 +9045,15 @@ LINE 8 cut 10 -610.0914344886081 +379.54650534085283 20 -142.00000000000003 +145.25 30 0.0 11 -610.0914344886081 +376.5465053408528 21 -142.50000000000003 +145.25 31 0.0 0 @@ -8745,15 +9063,15 @@ LINE 8 cut 10 -637.3641617613355 +397.54650534085283 20 -142.50000000000003 +144.25000000000003 30 0.0 11 -625.9550708522444 +397.54650534085283 21 -142.50000000000003 +143.25 31 0.0 0 @@ -8763,15 +9081,15 @@ LINE 8 cut 10 -625.9550708522444 +397.54650534085283 20 -142.50000000000003 +143.25 30 0.0 11 -625.9550708522444 +398.54650534085283 21 -142.00000000000003 +143.25 31 0.0 0 @@ -8781,15 +9099,15 @@ LINE 8 cut 10 -625.9550708522444 +398.54650534085283 20 -142.00000000000003 +143.25 30 0.0 11 -637.3641617613355 +398.54650534085283 21 -142.00000000000003 +144.25000000000003 31 0.0 0 @@ -8799,15 +9117,15 @@ LINE 8 cut 10 -637.3641617613355 +398.54650534085283 20 -142.00000000000003 +144.25000000000003 30 0.0 11 -637.3641617613355 +397.54650534085283 21 -142.50000000000003 +144.25000000000003 31 0.0 0 @@ -8817,15 +9135,15 @@ LINE 8 cut 10 -640.2732526704264 +377.54650534085283 20 -159.43181818181822 +146.75000000000003 30 0.0 11 -640.2732526704264 +377.54650534085283 21 -147.84090909090912 +145.75 31 0.0 0 @@ -8835,15 +9153,15 @@ LINE 8 cut 10 -640.2732526704264 +377.54650534085283 20 -147.84090909090912 +145.75 30 0.0 11 -640.7732526704264 +378.54650534085283 21 -147.84090909090912 +145.75 31 0.0 0 @@ -8853,15 +9171,15 @@ LINE 8 cut 10 -640.7732526704264 +378.54650534085283 20 -147.84090909090912 +145.75 30 0.0 11 -640.7732526704264 +378.54650534085283 21 -159.43181818181822 +146.75000000000003 31 0.0 0 @@ -8871,15 +9189,15 @@ LINE 8 cut 10 -640.7732526704264 +378.54650534085283 20 -159.43181818181822 +146.75000000000003 30 0.0 11 -640.2732526704264 +377.54650534085283 21 -159.43181818181822 +146.75000000000003 31 0.0 0 @@ -8889,15 +9207,15 @@ LINE 8 cut 10 -640.2732526704264 +397.54650534085283 20 -187.15909090909093 +146.75000000000003 30 0.0 11 -640.2732526704264 +397.54650534085283 21 -175.5681818181818 +145.75 31 0.0 0 @@ -8907,15 +9225,15 @@ LINE 8 cut 10 -640.2732526704264 +397.54650534085283 20 -175.5681818181818 +145.75 30 0.0 11 -640.7732526704264 +398.54650534085283 21 -175.5681818181818 +145.75 31 0.0 0 @@ -8925,15 +9243,15 @@ LINE 8 cut 10 -640.7732526704264 +398.54650534085283 20 -175.5681818181818 +145.75 30 0.0 11 -640.7732526704264 +398.54650534085283 21 -187.15909090909093 +146.75000000000003 31 0.0 0 @@ -8943,15 +9261,15 @@ LINE 8 cut 10 -640.7732526704264 +398.54650534085283 20 -187.15909090909093 +146.75000000000003 30 0.0 11 -640.2732526704264 +397.54650534085283 21 -187.15909090909093 +146.75000000000003 31 0.0 0 @@ -8961,15 +9279,15 @@ LINE 8 cut 10 -480.5232526704263 +377.54650534085283 20 -150.25 +149.25000000000003 30 0.0 11 -480.5232526704263 +377.54650534085283 21 -147.25000000000003 +148.25 31 0.0 0 @@ -8979,15 +9297,15 @@ LINE 8 cut 10 -480.5232526704263 +377.54650534085283 20 -147.25000000000003 +148.25 30 0.0 11 -483.5232526704263 +378.54650534085283 21 -147.25000000000003 +148.25 31 0.0 0 @@ -8997,15 +9315,15 @@ LINE 8 cut 10 -483.5232526704263 +378.54650534085283 20 -147.25000000000003 +148.25 30 0.0 11 -483.5232526704263 +378.54650534085283 21 -150.25 +149.25000000000003 31 0.0 0 @@ -9015,15 +9333,15 @@ LINE 8 cut 10 -483.5232526704263 +378.54650534085283 20 -150.25 +149.25000000000003 30 0.0 11 -480.5232526704263 +377.54650534085283 21 -150.25 +149.25000000000003 31 0.0 0 @@ -9033,13 +9351,13 @@ LINE 8 cut 10 -501.5232526704263 +397.54650534085283 20 149.25000000000003 30 0.0 11 -501.5232526704263 +397.54650534085283 21 148.25 31 @@ -9051,13 +9369,13 @@ LINE 8 cut 10 -501.5232526704263 +397.54650534085283 20 148.25 30 0.0 11 -502.5232526704263 +398.54650534085283 21 148.25 31 @@ -9069,13 +9387,13 @@ LINE 8 cut 10 -502.5232526704263 +398.54650534085283 20 148.25 30 0.0 11 -502.5232526704263 +398.54650534085283 21 149.25000000000003 31 @@ -9087,13 +9405,13 @@ LINE 8 cut 10 -502.5232526704263 +398.54650534085283 20 149.25000000000003 30 0.0 11 -501.5232526704263 +397.54650534085283 21 149.25000000000003 31 @@ -9105,13 +9423,13 @@ LINE 8 cut 10 -481.5232526704263 +377.54650534085283 20 151.75000000000003 30 0.0 11 -481.5232526704263 +377.54650534085283 21 150.75000000000003 31 @@ -9123,13 +9441,13 @@ LINE 8 cut 10 -481.5232526704263 +377.54650534085283 20 150.75000000000003 30 0.0 11 -482.52325267042636 +378.54650534085283 21 150.75000000000003 31 @@ -9141,13 +9459,13 @@ LINE 8 cut 10 -482.52325267042636 +378.54650534085283 20 150.75000000000003 30 0.0 11 -482.52325267042636 +378.54650534085283 21 151.75000000000003 31 @@ -9159,13 +9477,13 @@ LINE 8 cut 10 -482.52325267042636 +378.54650534085283 20 151.75000000000003 30 0.0 11 -481.5232526704263 +377.54650534085283 21 151.75000000000003 31 @@ -9177,13 +9495,13 @@ LINE 8 cut 10 -501.5232526704263 +397.54650534085283 20 151.75000000000003 30 0.0 11 -501.5232526704263 +397.54650534085283 21 150.75000000000003 31 @@ -9195,13 +9513,13 @@ LINE 8 cut 10 -501.5232526704263 +397.54650534085283 20 150.75000000000003 30 0.0 11 -502.5232526704263 +398.54650534085283 21 150.75000000000003 31 @@ -9213,13 +9531,13 @@ LINE 8 cut 10 -502.5232526704263 +398.54650534085283 20 150.75000000000003 30 0.0 11 -502.5232526704263 +398.54650534085283 21 151.75000000000003 31 @@ -9231,13 +9549,13 @@ LINE 8 cut 10 -502.5232526704263 +398.54650534085283 20 151.75000000000003 30 0.0 11 -501.5232526704263 +397.54650534085283 21 151.75000000000003 31 @@ -9249,13 +9567,13 @@ LINE 8 cut 10 -481.5232526704263 +377.54650534085283 20 154.25000000000003 30 0.0 11 -481.5232526704263 +377.54650534085283 21 153.25000000000003 31 @@ -9267,13 +9585,13 @@ LINE 8 cut 10 -481.5232526704263 +377.54650534085283 20 153.25000000000003 30 0.0 11 -482.52325267042636 +378.54650534085283 21 153.25000000000003 31 @@ -9285,13 +9603,13 @@ LINE 8 cut 10 -482.52325267042636 +378.54650534085283 20 153.25000000000003 30 0.0 11 -482.52325267042636 +378.54650534085283 21 154.25000000000003 31 @@ -9303,13 +9621,13 @@ LINE 8 cut 10 -482.52325267042636 +378.54650534085283 20 154.25000000000003 30 0.0 11 -481.5232526704263 +377.54650534085283 21 154.25000000000003 31 @@ -9321,13 +9639,13 @@ LINE 8 cut 10 -501.5232526704263 +397.54650534085283 20 154.25000000000003 30 0.0 11 -501.5232526704263 +397.54650534085283 21 153.25000000000003 31 @@ -9339,13 +9657,13 @@ LINE 8 cut 10 -501.5232526704263 +397.54650534085283 20 153.25000000000003 30 0.0 11 -502.5232526704263 +398.54650534085283 21 153.25000000000003 31 @@ -9357,13 +9675,13 @@ LINE 8 cut 10 -502.5232526704263 +398.54650534085283 20 153.25000000000003 30 0.0 11 -502.5232526704263 +398.54650534085283 21 154.25000000000003 31 @@ -9375,13 +9693,13 @@ LINE 8 cut 10 -502.5232526704263 +398.54650534085283 20 154.25000000000003 30 0.0 11 -501.5232526704263 +397.54650534085283 21 154.25000000000003 31 @@ -9393,13 +9711,13 @@ LINE 8 cut 10 -481.5232526704263 +377.54650534085283 20 156.75 30 0.0 11 -481.5232526704263 +377.54650534085283 21 155.75000000000003 31 @@ -9411,13 +9729,13 @@ LINE 8 cut 10 -481.5232526704263 +377.54650534085283 20 155.75000000000003 30 0.0 11 -482.52325267042636 +378.54650534085283 21 155.75000000000003 31 @@ -9429,13 +9747,13 @@ LINE 8 cut 10 -482.52325267042636 +378.54650534085283 20 155.75000000000003 30 0.0 11 -482.52325267042636 +378.54650534085283 21 156.75 31 @@ -9447,13 +9765,13 @@ LINE 8 cut 10 -482.52325267042636 +378.54650534085283 20 156.75 30 0.0 11 -481.5232526704263 +377.54650534085283 21 156.75 31 @@ -9465,13 +9783,13 @@ LINE 8 cut 10 -501.5232526704263 +397.54650534085283 20 156.75 30 0.0 11 -501.5232526704263 +397.54650534085283 21 155.75000000000003 31 @@ -9483,13 +9801,13 @@ LINE 8 cut 10 -501.5232526704263 +397.54650534085283 20 155.75000000000003 30 0.0 11 -502.5232526704263 +398.54650534085283 21 155.75000000000003 31 @@ -9501,13 +9819,13 @@ LINE 8 cut 10 -502.5232526704263 +398.54650534085283 20 155.75000000000003 30 0.0 11 -502.5232526704263 +398.54650534085283 21 156.75 31 @@ -9519,13 +9837,13 @@ LINE 8 cut 10 -502.5232526704263 +398.54650534085283 20 156.75 30 0.0 11 -501.5232526704263 +397.54650534085283 21 156.75 31 @@ -9537,13 +9855,13 @@ LINE 8 cut 10 -481.5232526704263 +377.54650534085283 20 159.25 30 0.0 11 -481.5232526704263 +377.54650534085283 21 158.25000000000003 31 @@ -9555,13 +9873,13 @@ LINE 8 cut 10 -481.5232526704263 +377.54650534085283 20 158.25000000000003 30 0.0 11 -482.52325267042636 +378.54650534085283 21 158.25000000000003 31 @@ -9573,13 +9891,13 @@ LINE 8 cut 10 -482.52325267042636 +378.54650534085283 20 158.25000000000003 30 0.0 11 -482.52325267042636 +378.54650534085283 21 159.25 31 @@ -9591,13 +9909,13 @@ LINE 8 cut 10 -482.52325267042636 +378.54650534085283 20 159.25 30 0.0 11 -481.5232526704263 +377.54650534085283 21 159.25 31 @@ -9609,13 +9927,13 @@ LINE 8 cut 10 -501.5232526704263 +397.54650534085283 20 159.25 30 0.0 11 -501.5232526704263 +397.54650534085283 21 158.25000000000003 31 @@ -9627,13 +9945,13 @@ LINE 8 cut 10 -501.5232526704263 +397.54650534085283 20 158.25000000000003 30 0.0 11 -502.5232526704263 +398.54650534085283 21 158.25000000000003 31 @@ -9645,13 +9963,13 @@ LINE 8 cut 10 -502.5232526704263 +398.54650534085283 20 158.25000000000003 30 0.0 11 -502.5232526704263 +398.54650534085283 21 159.25 31 @@ -9663,13 +9981,13 @@ LINE 8 cut 10 -502.5232526704263 +398.54650534085283 20 159.25 30 0.0 11 -501.5232526704263 +397.54650534085283 21 159.25 31 @@ -9681,13 +9999,13 @@ LINE 8 cut 10 -481.5232526704263 +377.54650534085283 20 161.75 30 0.0 11 -481.5232526704263 +377.54650534085283 21 160.75000000000003 31 @@ -9699,13 +10017,13 @@ LINE 8 cut 10 -481.5232526704263 +377.54650534085283 20 160.75000000000003 30 0.0 11 -482.52325267042636 +378.54650534085283 21 160.75000000000003 31 @@ -9717,13 +10035,13 @@ LINE 8 cut 10 -482.52325267042636 +378.54650534085283 20 160.75000000000003 30 0.0 11 -482.52325267042636 +378.54650534085283 21 161.75 31 @@ -9735,13 +10053,13 @@ LINE 8 cut 10 -482.52325267042636 +378.54650534085283 20 161.75 30 0.0 11 -481.5232526704263 +377.54650534085283 21 161.75 31 @@ -9753,13 +10071,13 @@ LINE 8 cut 10 -501.5232526704263 +397.54650534085283 20 161.75 30 0.0 11 -501.5232526704263 +397.54650534085283 21 160.75000000000003 31 @@ -9771,13 +10089,13 @@ LINE 8 cut 10 -501.5232526704263 +397.54650534085283 20 160.75000000000003 30 0.0 11 -502.5232526704263 +398.54650534085283 21 160.75000000000003 31 @@ -9789,13 +10107,13 @@ LINE 8 cut 10 -502.5232526704263 +398.54650534085283 20 160.75000000000003 30 0.0 11 -502.5232526704263 +398.54650534085283 21 161.75 31 @@ -9807,13 +10125,13 @@ LINE 8 cut 10 -502.5232526704263 +398.54650534085283 20 161.75 30 0.0 11 -501.5232526704263 +397.54650534085283 21 161.75 31 @@ -9825,13 +10143,13 @@ LINE 8 cut 10 -481.5232526704263 +377.54650534085283 20 164.25000000000003 30 0.0 11 -481.5232526704263 +377.54650534085283 21 163.25000000000003 31 @@ -9843,13 +10161,13 @@ LINE 8 cut 10 -481.5232526704263 +377.54650534085283 20 163.25000000000003 30 0.0 11 -482.52325267042636 +378.54650534085283 21 163.25000000000003 31 @@ -9861,13 +10179,13 @@ LINE 8 cut 10 -482.52325267042636 +378.54650534085283 20 163.25000000000003 30 0.0 11 -482.52325267042636 +378.54650534085283 21 164.25000000000003 31 @@ -9879,13 +10197,13 @@ LINE 8 cut 10 -482.52325267042636 +378.54650534085283 20 164.25000000000003 30 0.0 11 -481.5232526704263 +377.54650534085283 21 164.25000000000003 31 @@ -9897,13 +10215,13 @@ LINE 8 cut 10 -501.5232526704263 +397.54650534085283 20 164.25000000000003 30 0.0 11 -501.5232526704263 +397.54650534085283 21 163.25000000000003 31 @@ -9915,13 +10233,13 @@ LINE 8 cut 10 -501.5232526704263 +397.54650534085283 20 163.25000000000003 30 0.0 11 -502.5232526704263 +398.54650534085283 21 163.25000000000003 31 @@ -9933,13 +10251,13 @@ LINE 8 cut 10 -502.5232526704263 +398.54650534085283 20 163.25000000000003 30 0.0 11 -502.5232526704263 +398.54650534085283 21 164.25000000000003 31 @@ -9951,13 +10269,13 @@ LINE 8 cut 10 -502.5232526704263 +398.54650534085283 20 164.25000000000003 30 0.0 11 -501.5232526704263 +397.54650534085283 21 164.25000000000003 31 @@ -9969,13 +10287,13 @@ LINE 8 cut 10 -481.5232526704263 +377.54650534085283 20 166.75000000000003 30 0.0 11 -481.5232526704263 +377.54650534085283 21 165.75 31 @@ -9987,13 +10305,13 @@ LINE 8 cut 10 -481.5232526704263 +377.54650534085283 20 165.75 30 0.0 11 -482.52325267042636 +378.54650534085283 21 165.75 31 @@ -10005,13 +10323,13 @@ LINE 8 cut 10 -482.52325267042636 +378.54650534085283 20 165.75 30 0.0 11 -482.52325267042636 +378.54650534085283 21 166.75000000000003 31 @@ -10023,13 +10341,13 @@ LINE 8 cut 10 -482.52325267042636 +378.54650534085283 20 166.75000000000003 30 0.0 11 -481.5232526704263 +377.54650534085283 21 166.75000000000003 31 @@ -10041,13 +10359,13 @@ LINE 8 cut 10 -501.5232526704263 +397.54650534085283 20 166.75000000000003 30 0.0 11 -501.5232526704263 +397.54650534085283 21 165.75 31 @@ -10059,13 +10377,13 @@ LINE 8 cut 10 -501.5232526704263 +397.54650534085283 20 165.75 30 0.0 11 -502.5232526704263 +398.54650534085283 21 165.75 31 @@ -10077,13 +10395,13 @@ LINE 8 cut 10 -502.5232526704263 +398.54650534085283 20 165.75 30 0.0 11 -502.5232526704263 +398.54650534085283 21 166.75000000000003 31 @@ -10095,13 +10413,13 @@ LINE 8 cut 10 -502.5232526704263 +398.54650534085283 20 166.75000000000003 30 0.0 11 -501.5232526704263 +397.54650534085283 21 166.75000000000003 31 @@ -10113,13 +10431,13 @@ LINE 8 cut 10 -481.5232526704263 +377.54650534085283 20 169.25000000000003 30 0.0 11 -481.5232526704263 +377.54650534085283 21 168.25 31 @@ -10131,13 +10449,13 @@ LINE 8 cut 10 -481.5232526704263 +377.54650534085283 20 168.25 30 0.0 11 -482.52325267042636 +378.54650534085283 21 168.25 31 @@ -10149,13 +10467,13 @@ LINE 8 cut 10 -482.52325267042636 +378.54650534085283 20 168.25 30 0.0 11 -482.52325267042636 +378.54650534085283 21 169.25000000000003 31 @@ -10167,13 +10485,13 @@ LINE 8 cut 10 -482.52325267042636 +378.54650534085283 20 169.25000000000003 30 0.0 11 -481.5232526704263 +377.54650534085283 21 169.25000000000003 31 @@ -10185,13 +10503,13 @@ LINE 8 cut 10 -501.5232526704263 +397.54650534085283 20 169.25000000000003 30 0.0 11 -501.5232526704263 +397.54650534085283 21 168.25 31 @@ -10203,13 +10521,13 @@ LINE 8 cut 10 -501.5232526704263 +397.54650534085283 20 168.25 30 0.0 11 -502.5232526704263 +398.54650534085283 21 168.25 31 @@ -10221,13 +10539,13 @@ LINE 8 cut 10 -502.5232526704263 +398.54650534085283 20 168.25 30 0.0 11 -502.5232526704263 +398.54650534085283 21 169.25000000000003 31 @@ -10239,13 +10557,13 @@ LINE 8 cut 10 -502.5232526704263 +398.54650534085283 20 169.25000000000003 30 0.0 11 -501.5232526704263 +397.54650534085283 21 169.25000000000003 31 @@ -10257,13 +10575,13 @@ LINE 8 cut 10 -481.5232526704263 +377.54650534085283 20 171.75000000000003 30 0.0 11 -481.5232526704263 +377.54650534085283 21 170.75 31 @@ -10275,13 +10593,13 @@ LINE 8 cut 10 -481.5232526704263 +377.54650534085283 20 170.75 30 0.0 11 -482.52325267042636 +378.54650534085283 21 170.75 31 @@ -10293,13 +10611,13 @@ LINE 8 cut 10 -482.52325267042636 +378.54650534085283 20 170.75 30 0.0 11 -482.52325267042636 +378.54650534085283 21 171.75000000000003 31 @@ -10311,13 +10629,13 @@ LINE 8 cut 10 -482.52325267042636 +378.54650534085283 20 171.75000000000003 30 0.0 11 -481.5232526704263 +377.54650534085283 21 171.75000000000003 31 @@ -10329,13 +10647,13 @@ LINE 8 cut 10 -501.5232526704263 +397.54650534085283 20 171.75000000000003 30 0.0 11 -501.5232526704263 +397.54650534085283 21 170.75 31 @@ -10347,13 +10665,13 @@ LINE 8 cut 10 -501.5232526704263 +397.54650534085283 20 170.75 30 0.0 11 -502.5232526704263 +398.54650534085283 21 170.75 31 @@ -10365,13 +10683,13 @@ LINE 8 cut 10 -502.5232526704263 +398.54650534085283 20 170.75 30 0.0 11 -502.5232526704263 +398.54650534085283 21 171.75000000000003 31 @@ -10383,13 +10701,13 @@ LINE 8 cut 10 -502.5232526704263 +398.54650534085283 20 171.75000000000003 30 0.0 11 -501.5232526704263 +397.54650534085283 21 171.75000000000003 31 @@ -10401,13 +10719,13 @@ LINE 8 cut 10 -481.5232526704263 +377.54650534085283 20 174.25000000000003 30 0.0 11 -481.5232526704263 +377.54650534085283 21 173.25000000000003 31 @@ -10419,13 +10737,13 @@ LINE 8 cut 10 -481.5232526704263 +377.54650534085283 20 173.25000000000003 30 0.0 11 -482.52325267042636 +378.54650534085283 21 173.25000000000003 31 @@ -10437,13 +10755,13 @@ LINE 8 cut 10 -482.52325267042636 +378.54650534085283 20 173.25000000000003 30 0.0 11 -482.52325267042636 +378.54650534085283 21 174.25000000000003 31 @@ -10455,13 +10773,13 @@ LINE 8 cut 10 -482.52325267042636 +378.54650534085283 20 174.25000000000003 30 0.0 11 -481.5232526704263 +377.54650534085283 21 174.25000000000003 31 @@ -10473,13 +10791,13 @@ LINE 8 cut 10 -501.5232526704263 +397.54650534085283 20 174.25000000000003 30 0.0 11 -501.5232526704263 +397.54650534085283 21 173.25000000000003 31 @@ -10491,13 +10809,13 @@ LINE 8 cut 10 -501.5232526704263 +397.54650534085283 20 173.25000000000003 30 0.0 11 -502.5232526704263 +398.54650534085283 21 173.25000000000003 31 @@ -10509,13 +10827,13 @@ LINE 8 cut 10 -502.5232526704263 +398.54650534085283 20 173.25000000000003 30 0.0 11 -502.5232526704263 +398.54650534085283 21 174.25000000000003 31 @@ -10527,13 +10845,13 @@ LINE 8 cut 10 -502.5232526704263 +398.54650534085283 20 174.25000000000003 30 0.0 11 -501.5232526704263 +397.54650534085283 21 174.25000000000003 31 @@ -10545,13 +10863,13 @@ LINE 8 cut 10 -481.5232526704263 +377.54650534085283 20 176.75000000000003 30 0.0 11 -481.5232526704263 +377.54650534085283 21 175.75000000000003 31 @@ -10563,13 +10881,13 @@ LINE 8 cut 10 -481.5232526704263 +377.54650534085283 20 175.75000000000003 30 0.0 11 -482.52325267042636 +378.54650534085283 21 175.75000000000003 31 @@ -10581,13 +10899,13 @@ LINE 8 cut 10 -482.52325267042636 +378.54650534085283 20 175.75000000000003 30 0.0 11 -482.52325267042636 +378.54650534085283 21 176.75000000000003 31 @@ -10599,13 +10917,13 @@ LINE 8 cut 10 -482.52325267042636 +378.54650534085283 20 176.75000000000003 30 0.0 11 -481.5232526704263 +377.54650534085283 21 176.75000000000003 31 @@ -10617,13 +10935,13 @@ LINE 8 cut 10 -501.5232526704263 +397.54650534085283 20 176.75000000000003 30 0.0 11 -501.5232526704263 +397.54650534085283 21 175.75000000000003 31 @@ -10635,13 +10953,13 @@ LINE 8 cut 10 -501.5232526704263 +397.54650534085283 20 175.75000000000003 30 0.0 11 -502.5232526704263 +398.54650534085283 21 175.75000000000003 31 @@ -10653,13 +10971,13 @@ LINE 8 cut 10 -502.5232526704263 +398.54650534085283 20 175.75000000000003 30 0.0 11 -502.5232526704263 +398.54650534085283 21 176.75000000000003 31 @@ -10671,13 +10989,13 @@ LINE 8 cut 10 -502.5232526704263 +398.54650534085283 20 176.75000000000003 30 0.0 11 -501.5232526704263 +397.54650534085283 21 176.75000000000003 31 @@ -10689,13 +11007,13 @@ LINE 8 cut 10 -481.5232526704263 +377.54650534085283 20 179.25000000000003 30 0.0 11 -481.5232526704263 +377.54650534085283 21 178.25000000000003 31 @@ -10707,13 +11025,13 @@ LINE 8 cut 10 -481.5232526704263 +377.54650534085283 20 178.25000000000003 30 0.0 11 -482.52325267042636 +378.54650534085283 21 178.25000000000003 31 @@ -10725,13 +11043,13 @@ LINE 8 cut 10 -482.52325267042636 +378.54650534085283 20 178.25000000000003 30 0.0 11 -482.52325267042636 +378.54650534085283 21 179.25000000000003 31 @@ -10743,13 +11061,13 @@ LINE 8 cut 10 -482.52325267042636 +378.54650534085283 20 179.25000000000003 30 0.0 11 -481.5232526704263 +377.54650534085283 21 179.25000000000003 31 @@ -10761,13 +11079,13 @@ LINE 8 cut 10 -501.5232526704263 +397.54650534085283 20 179.25000000000003 30 0.0 11 -501.5232526704263 +397.54650534085283 21 178.25000000000003 31 @@ -10779,13 +11097,13 @@ LINE 8 cut 10 -501.5232526704263 +397.54650534085283 20 178.25000000000003 30 0.0 11 -502.5232526704263 +398.54650534085283 21 178.25000000000003 31 @@ -10797,13 +11115,13 @@ LINE 8 cut 10 -502.5232526704263 +398.54650534085283 20 178.25000000000003 30 0.0 11 -502.5232526704263 +398.54650534085283 21 179.25000000000003 31 @@ -10815,13 +11133,13 @@ LINE 8 cut 10 -502.5232526704263 +398.54650534085283 20 179.25000000000003 30 0.0 11 -501.5232526704263 +397.54650534085283 21 179.25000000000003 31 @@ -10833,85 +11151,13 @@ LINE 8 cut 10 -481.5232526704263 - 20 -181.75 - 30 -0.0 - 11 -481.5232526704263 - 21 -180.75000000000003 - 31 -0.0 - 0 -LINE - 62 -5 - 8 -cut - 10 -481.5232526704263 - 20 -180.75000000000003 - 30 -0.0 - 11 -482.52325267042636 - 21 -180.75000000000003 - 31 -0.0 - 0 -LINE - 62 -5 - 8 -cut - 10 -482.52325267042636 - 20 -180.75000000000003 - 30 -0.0 - 11 -482.52325267042636 - 21 -181.75 - 31 -0.0 - 0 -LINE - 62 -5 - 8 -cut - 10 -482.52325267042636 - 20 -181.75 - 30 -0.0 - 11 -481.5232526704263 - 21 -181.75 - 31 -0.0 - 0 -LINE - 62 -5 - 8 -cut - 10 -501.5232526704263 +377.54650534085283 20 181.75 30 0.0 11 -501.5232526704263 +377.54650534085283 21 180.75000000000003 31 @@ -10923,13 +11169,13 @@ LINE 8 cut 10 -501.5232526704263 +377.54650534085283 20 180.75000000000003 30 0.0 11 -502.5232526704263 +378.54650534085283 21 180.75000000000003 31 @@ -10941,13 +11187,13 @@ LINE 8 cut 10 -502.5232526704263 +378.54650534085283 20 180.75000000000003 30 0.0 11 -502.5232526704263 +378.54650534085283 21 181.75 31 @@ -10959,13 +11205,13 @@ LINE 8 cut 10 -502.5232526704263 +378.54650534085283 20 181.75 30 0.0 11 -501.5232526704263 +377.54650534085283 21 181.75 31 @@ -10977,231 +11223,15 @@ LINE 8 cut 10 -481.5232526704263 - 20 -184.25 - 30 -0.0 - 11 -481.5232526704263 - 21 -183.25000000000003 - 31 -0.0 - 0 -LINE - 62 -5 - 8 -cut - 10 -481.5232526704263 - 20 -183.25000000000003 - 30 -0.0 - 11 -482.52325267042636 - 21 -183.25000000000003 - 31 -0.0 - 0 -LINE - 62 -5 - 8 -cut - 10 -482.52325267042636 - 20 -183.25000000000003 - 30 -0.0 - 11 -482.52325267042636 - 21 -184.25 - 31 -0.0 - 0 -LINE - 62 -5 - 8 -cut - 10 -482.52325267042636 - 20 -184.25 - 30 -0.0 - 11 -481.5232526704263 - 21 -184.25 - 31 -0.0 - 0 -LINE - 62 -5 - 8 -cut - 10 -501.5232526704263 - 20 -184.25 - 30 -0.0 - 11 -501.5232526704263 - 21 -183.25000000000003 - 31 -0.0 - 0 -LINE - 62 -5 - 8 -cut - 10 -501.5232526704263 - 20 -183.25000000000003 - 30 -0.0 - 11 -502.5232526704263 - 21 -183.25000000000003 - 31 -0.0 - 0 -LINE - 62 -5 - 8 -cut - 10 -502.5232526704263 - 20 -183.25000000000003 - 30 -0.0 - 11 -502.5232526704263 - 21 -184.25 - 31 -0.0 - 0 -LINE - 62 -5 - 8 -cut - 10 -502.5232526704263 - 20 -184.25 - 30 -0.0 - 11 -501.5232526704263 - 21 -184.25 - 31 -0.0 - 0 -LINE - 62 -5 - 8 -cut - 10 -481.5232526704263 - 20 -186.75 - 30 -0.0 - 11 -481.5232526704263 - 21 -185.75000000000003 - 31 -0.0 - 0 -LINE - 62 -5 - 8 -cut - 10 -481.5232526704263 - 20 -185.75000000000003 - 30 -0.0 - 11 -482.52325267042636 - 21 -185.75000000000003 - 31 -0.0 - 0 -LINE - 62 -5 - 8 -cut - 10 -482.52325267042636 - 20 -185.75000000000003 - 30 -0.0 - 11 -482.52325267042636 - 21 -186.75 - 31 -0.0 - 0 -LINE - 62 -5 - 8 -cut - 10 -482.52325267042636 - 20 -186.75 - 30 -0.0 - 11 -481.5232526704263 - 21 -186.75 - 31 -0.0 - 0 -LINE - 62 -5 - 8 -cut - 10 -500.5232526704263 +396.54650534085283 20 -187.75000000000003 +182.75000000000003 30 0.0 11 -500.5232526704263 +396.54650534085283 21 -184.75000000000003 +179.75 31 0.0 0 @@ -11211,15 +11241,15 @@ LINE 8 cut 10 -500.5232526704263 +396.54650534085283 20 -184.75000000000003 +179.75 30 0.0 11 -503.5232526704263 +399.5465053408528 21 -184.75000000000003 +179.75 31 0.0 0 @@ -11229,15 +11259,15 @@ LINE 8 cut 10 -503.5232526704263 +399.5465053408528 20 -184.75000000000003 +179.75 30 0.0 11 -503.5232526704263 +399.5465053408528 21 -187.75000000000003 +182.75000000000003 31 0.0 0 @@ -11247,15 +11277,15 @@ LINE 8 cut 10 -503.5232526704263 +399.5465053408528 20 -187.75000000000003 +182.75000000000003 30 0.0 11 -500.5232526704263 +396.54650534085283 21 -187.75000000000003 +182.75000000000003 31 0.0 0 @@ -11265,15 +11295,15 @@ LINE 8 cut 10 -496.27325267042636 +392.29650534085283 20 -144.75000000000003 +139.75000000000003 30 0.0 11 -487.7732526704263 +383.79650534085283 21 -144.75000000000003 +139.75000000000003 31 0.0 0 @@ -11283,15 +11313,15 @@ LINE 8 cut 10 -487.7732526704263 +383.79650534085283 20 -144.75000000000003 +139.75000000000003 30 0.0 11 -487.7732526704263 +383.79650534085283 21 -144.25000000000003 +139.25 31 0.0 0 @@ -11301,15 +11331,15 @@ LINE 8 cut 10 -487.7732526704263 +383.79650534085283 20 -144.25000000000003 +139.25 30 0.0 11 -496.27325267042636 +392.29650534085283 21 -144.25000000000003 +139.25 31 0.0 0 @@ -11319,15 +11349,15 @@ LINE 8 cut 10 -496.27325267042636 +392.29650534085283 20 -144.25000000000003 +139.25 30 0.0 11 -496.27325267042636 +392.29650534085283 21 -144.75000000000003 +139.75000000000003 31 0.0 0 @@ -11337,15 +11367,15 @@ LINE 8 cut 10 -487.7732526704263 +383.79650534085283 20 -192.50000000000003 +187.50000000000003 30 0.0 11 -496.27325267042636 +392.29650534085283 21 -192.50000000000003 +187.50000000000003 31 0.0 0 @@ -11355,15 +11385,15 @@ LINE 8 cut 10 -496.27325267042636 +392.29650534085283 20 -192.50000000000003 +187.50000000000003 30 0.0 11 -496.27325267042636 +392.29650534085283 21 -193.00000000000003 +188.00000000000003 31 0.0 0 @@ -11373,15 +11403,15 @@ LINE 8 cut 10 -496.27325267042636 +392.29650534085283 20 -193.00000000000003 +188.00000000000003 30 0.0 11 -487.7732526704263 +383.79650534085283 21 -193.00000000000003 +188.00000000000003 31 0.0 0 @@ -11391,15 +11421,15 @@ LINE 8 cut 10 -487.7732526704263 +383.79650534085283 20 -193.00000000000003 +188.00000000000003 30 0.0 11 -487.7732526704263 +383.79650534085283 21 -192.50000000000003 +187.50000000000003 31 0.0 0 @@ -11409,15 +11439,15 @@ LINE 8 cut 10 -472.5232526704263 +368.54650534085283 20 -148.09090909090912 +143.09090909090912 30 0.0 11 -477.5232526704263 +373.54650534085283 21 -148.09090909090912 +143.09090909090912 31 0.0 0 @@ -11427,15 +11457,15 @@ LINE 8 cut 10 -477.5232526704263 +373.54650534085283 20 -148.09090909090912 +143.09090909090912 30 0.0 11 -477.5232526704263 +373.54650534085283 21 -159.1818181818182 +154.1818181818182 31 0.0 0 @@ -11445,15 +11475,15 @@ LINE 8 cut 10 -477.5232526704263 +373.54650534085283 20 -159.1818181818182 +154.1818181818182 30 0.0 11 -472.5232526704263 +368.54650534085283 21 -159.1818181818182 +154.1818181818182 31 0.0 0 @@ -11463,15 +11493,15 @@ LINE 8 cut 10 -472.5232526704263 +368.54650534085283 20 -175.81818181818184 +170.8181818181818 30 0.0 11 -477.5232526704263 +373.54650534085283 21 -175.81818181818184 +170.8181818181818 31 0.0 0 @@ -11481,15 +11511,15 @@ LINE 8 cut 10 -477.5232526704263 +373.54650534085283 20 -175.81818181818184 +170.8181818181818 30 0.0 11 -477.5232526704263 +373.54650534085283 21 -186.90909090909093 +181.90909090909093 31 0.0 0 @@ -11499,15 +11529,15 @@ LINE 8 cut 10 -477.5232526704263 +373.54650534085283 20 -186.90909090909093 +181.90909090909093 30 0.0 11 -472.5232526704263 +368.54650534085283 21 -186.90909090909093 +181.90909090909093 31 0.0 0 @@ -11517,15 +11547,15 @@ LINE 8 cut 10 -497.7732526704263 +393.79650534085283 20 -121.00000000000001 +116.0 30 0.0 11 -501.2732526704263 +397.29650534085283 21 -121.00000000000001 +116.0 31 0.0 0 @@ -11535,15 +11565,15 @@ LINE 8 cut 10 -501.2732526704263 +397.29650534085283 20 -121.00000000000001 +116.0 30 0.0 11 -501.2732526704263 +397.29650534085283 21 -129.0 +124.00000000000003 31 0.0 0 @@ -11553,15 +11583,15 @@ LINE 8 cut 10 -501.2732526704263 +397.29650534085283 20 -129.0 +124.00000000000003 30 0.0 11 -497.7732526704263 +393.79650534085283 21 -129.0 +124.00000000000003 31 0.0 0 diff --git a/rocolib/output/BoatWithServoMountAndStack/graph-autofold-graph.dxf b/rocolib/output/BoatWithServoMountAndStack/graph-autofold-graph.dxf index 6441502866b92aa4aeca9bb125218b38f73df4ab..1cc5f0379e5491a53a6dd119541ad15022e5957d 100644 --- a/rocolib/output/BoatWithServoMountAndStack/graph-autofold-graph.dxf +++ b/rocolib/output/BoatWithServoMountAndStack/graph-autofold-graph.dxf @@ -943,15 +943,15 @@ LINE 8 0 10 -329.02325267042613 +209.0232526704265 20 -125.00000000000001 +120.00000000000001 30 0.0 11 -210.02325267042616 +190.0232526704265 21 -125.00000000000001 +120.00000000000001 31 0.0 0 @@ -963,15 +963,15 @@ DOTTED 8 0 10 -329.02325267042613 +209.0232526704265 20 -125.00000000000001 +120.00000000000001 30 0.0 11 -390.0232526704262 +270.02325267042653 21 -125.00000000000001 +120.00000000000001 31 0.0 0 @@ -981,15 +981,15 @@ LINE 8 0 10 -390.0232526704262 +270.02325267042653 20 -125.00000000000001 +120.00000000000001 30 0.0 11 -390.0232526704262 +270.02325267042653 21 -125.00000000000001 +120.00000000000001 31 0.0 0 @@ -999,15 +999,15 @@ LINE 8 0 10 -210.02325267042616 +190.0232526704265 20 -125.00000000000001 +120.00000000000001 30 0.0 11 -210.02325267042616 +190.0232526704265 21 -125.00000000000001 +120.00000000000001 31 0.0 0 @@ -1019,15 +1019,15 @@ DOTTED 8 0 10 -329.02325267042613 +209.0232526704265 20 -88.86137800081471 +83.8613780008147 30 0.0 11 -390.0232526704262 +270.02325267042653 21 -88.86137800081471 +83.8613780008147 31 0.0 0 @@ -1037,15 +1037,15 @@ LINE 8 0 10 -390.0232526704262 +270.02325267042653 20 -125.00000000000001 +120.00000000000001 30 0.0 11 -390.0232526704262 +270.02325267042653 21 -88.86137800081471 +83.8613780008147 31 0.0 0 @@ -1055,15 +1055,15 @@ LINE 8 0 10 -329.02325267042613 +209.0232526704265 20 -88.86137800081471 +83.8613780008147 30 0.0 11 -329.02325267042613 +209.0232526704265 21 -125.00000000000001 +120.00000000000001 31 0.0 0 @@ -1075,15 +1075,15 @@ DOTTED 8 0 10 -390.0232526704262 +270.02325267042653 20 -64.86137800081471 +59.8613780008147 30 0.0 11 -329.02325267042613 +209.0232526704265 21 -64.86137800081471 +59.8613780008147 31 0.0 0 @@ -1095,15 +1095,15 @@ DOTTED 8 0 10 -390.0232526704262 +270.02325267042653 20 -64.86137800081471 +59.8613780008147 30 0.0 11 -390.0232526704262 +270.02325267042653 21 -88.86137800081471 +83.8613780008147 31 0.0 0 @@ -1113,15 +1113,15 @@ LINE 8 0 10 -329.02325267042613 +209.0232526704265 20 -28.722756001629396 +23.722756001629396 30 0.0 11 -329.02325267042613 +209.0232526704265 21 -64.86137800081472 +59.86137800081471 31 0.0 0 @@ -1131,15 +1131,15 @@ LINE 8 0 10 -390.0232526704262 +270.02325267042653 20 -28.722756001629396 +23.722756001629396 30 0.0 11 -329.02325267042613 +209.0232526704265 21 -28.722756001629396 +23.722756001629396 31 0.0 0 @@ -1149,15 +1149,15 @@ LINE 8 0 10 -390.0232526704262 +270.02325267042653 20 -64.86137800081472 +59.86137800081471 30 0.0 11 -390.0232526704262 +270.02325267042653 21 -28.722756001629396 +23.722756001629396 31 0.0 0 @@ -1167,15 +1167,15 @@ LINE 8 0 10 -400.0232526704262 +280.02325267042653 20 -64.86137800081471 +59.8613780008147 30 0.0 11 -390.0232526704262 +270.02325267042653 21 -64.86137800081471 +59.8613780008147 31 0.0 0 @@ -1185,15 +1185,15 @@ LINE 8 0 10 -400.0232526704262 +280.02325267042653 20 -88.86137800081471 +83.8613780008147 30 0.0 11 -400.0232526704262 +280.02325267042653 21 -64.86137800081471 +59.8613780008147 31 0.0 0 @@ -1203,15 +1203,15 @@ LINE 8 0 10 -390.0232526704262 +270.02325267042653 20 -88.86137800081471 +83.8613780008147 30 0.0 11 -400.0232526704262 +280.02325267042653 21 -88.86137800081471 +83.8613780008147 31 0.0 0 @@ -1221,15 +1221,15 @@ LINE 8 0 10 -319.02325267042613 +199.0232526704265 20 -88.86137800081471 +83.8613780008147 30 0.0 11 -329.02325267042613 +209.0232526704265 21 -88.86137800081471 +83.8613780008147 31 0.0 0 @@ -1239,15 +1239,15 @@ LINE 8 0 10 -319.02325267042613 +199.0232526704265 20 -64.86137800081471 +59.8613780008147 30 0.0 11 -319.02325267042613 +199.0232526704265 21 -88.86137800081471 +83.8613780008147 31 0.0 0 @@ -1257,15 +1257,15 @@ LINE 8 0 10 -329.02325267042613 +209.0232526704265 20 -64.86137800081471 +59.8613780008147 30 0.0 11 -319.02325267042613 +199.0232526704265 21 -64.86137800081471 +59.8613780008147 31 0.0 0 @@ -1275,15 +1275,15 @@ LINE 8 0 10 -186.0232526704262 +166.0232526704265 20 -125.00000000000001 +120.00000000000001 30 0.0 11 -86.02325267042616 +86.02325267042649 21 -125.00000000000001 +120.00000000000001 31 0.0 0 @@ -1295,15 +1295,15 @@ DOTTED 8 0 10 -186.0232526704262 +166.0232526704265 20 -125.00000000000001 +120.00000000000001 30 0.0 11 -210.02325267042616 +190.0232526704265 21 -125.00000000000001 +120.00000000000001 31 0.0 0 @@ -1313,15 +1313,15 @@ LINE 8 0 10 -390.0232526704262 +270.02325267042653 20 -125.00000000000001 +120.00000000000001 30 0.0 11 -390.0232526704262 +270.02325267042653 21 -125.00000000000001 +120.00000000000001 31 0.0 0 @@ -1331,15 +1331,15 @@ LINE 8 0 10 -86.02325267042616 +86.02325267042649 20 -125.00000000000001 +120.00000000000001 30 0.0 11 -86.02325267042616 +86.02325267042649 21 -125.00000000000001 +120.00000000000001 31 0.0 0 @@ -1349,15 +1349,15 @@ LINE 8 0 10 -210.02325267042616 +190.0232526704265 20 -125.00000000000001 +120.00000000000001 30 0.0 11 -210.02325267042616 +190.0232526704265 21 -91.0 +86.00000000000001 31 0.0 0 @@ -1369,15 +1369,15 @@ DOTTED 8 0 10 -186.0232526704262 +166.0232526704265 20 -91.0 +86.00000000000001 30 0.0 11 -186.0232526704262 +166.0232526704265 21 -125.00000000000001 +120.00000000000001 31 0.0 0 @@ -1387,15 +1387,15 @@ LINE 8 0 10 -186.0232526704262 +166.0232526704265 20 -55.00000000000001 +50.0 30 0.0 11 -186.0232526704262 +166.0232526704265 21 -91.0 +86.00000000000001 31 0.0 0 @@ -1407,15 +1407,15 @@ DOTTED 8 0 10 -186.0232526704262 +166.0232526704265 20 -55.00000000000001 +50.0 30 0.0 11 -210.02325267042616 +190.0232526704265 21 -55.00000000000001 +50.0 31 0.0 0 @@ -1425,15 +1425,15 @@ LINE 8 0 10 -210.02325267042616 +190.0232526704265 20 -91.0 +86.00000000000001 30 0.0 11 -210.02325267042616 +190.0232526704265 21 -55.00000000000001 +50.0 31 0.0 0 @@ -1443,13 +1443,13 @@ LINE 8 0 10 -210.02325267042616 +190.0232526704265 20 -55.00000000000001 +50.0 30 0.0 11 -210.02325267042616 +190.0232526704265 21 5.000000000000001 31 @@ -1461,15 +1461,15 @@ LINE 8 0 10 -186.0232526704262 +166.0232526704265 20 5.000000000000001 30 0.0 11 -186.0232526704262 +166.0232526704265 21 -55.00000000000001 +50.0 31 0.0 0 @@ -1479,13 +1479,13 @@ LINE 8 0 10 -186.0232526704262 +166.0232526704265 20 0.0 30 0.0 11 -186.0232526704262 +166.0232526704265 21 5.000000000000001 31 @@ -1497,13 +1497,13 @@ LINE 8 0 10 -210.02325267042616 +190.0232526704265 20 0.0 30 0.0 11 -186.0232526704262 +166.0232526704265 21 0.0 31 @@ -1515,13 +1515,13 @@ LINE 8 0 10 -210.02325267042616 +190.0232526704265 20 5.000000000000001 30 0.0 11 -210.02325267042616 +190.0232526704265 21 0.0 31 @@ -1533,15 +1533,15 @@ LINE 8 0 10 -186.0232526704262 +166.0232526704265 20 -91.0 +86.00000000000001 30 0.0 11 -166.0232526704262 +146.0232526704265 21 -91.0 +86.00000000000001 31 0.0 0 @@ -1551,15 +1551,15 @@ LINE 8 0 10 -166.0232526704262 +146.0232526704265 20 -125.00000000000001 +120.00000000000001 30 0.0 11 -186.0232526704262 +166.0232526704265 21 -125.00000000000001 +120.00000000000001 31 0.0 0 @@ -1571,15 +1571,15 @@ DOTTED 8 0 10 -166.0232526704262 +146.0232526704265 20 -91.0 +86.00000000000001 30 0.0 11 -166.0232526704262 +146.0232526704265 21 -125.00000000000001 +120.00000000000001 31 0.0 0 @@ -1589,15 +1589,15 @@ LINE 8 0 10 -166.0232526704262 +146.0232526704265 20 -91.0 +86.00000000000001 30 0.0 11 -142.02325267042616 +122.02325267042649 21 -91.0 +86.00000000000001 31 0.0 0 @@ -1607,15 +1607,15 @@ LINE 8 0 10 -142.02325267042616 +122.02325267042649 20 -125.00000000000001 +120.00000000000001 30 0.0 11 -166.0232526704262 +146.0232526704265 21 -125.00000000000001 +120.00000000000001 31 0.0 0 @@ -1627,15 +1627,15 @@ DOTTED 8 0 10 -142.02325267042616 +122.02325267042649 20 -91.0 +86.00000000000001 30 0.0 11 -142.02325267042616 +122.02325267042649 21 -125.00000000000001 +120.00000000000001 31 0.0 0 @@ -1645,15 +1645,15 @@ LINE 8 0 10 -142.02325267042616 +122.02325267042649 20 -91.0 +86.00000000000001 30 0.0 11 -122.02325267042617 +102.02325267042649 21 -91.0 +86.00000000000001 31 0.0 0 @@ -1663,15 +1663,15 @@ LINE 8 0 10 -122.02325267042617 +102.02325267042649 20 -125.00000000000001 +120.00000000000001 30 0.0 11 -142.02325267042616 +122.02325267042649 21 -125.00000000000001 +120.00000000000001 31 0.0 0 @@ -1683,15 +1683,15 @@ DOTTED 8 0 10 -122.02325267042617 +102.02325267042649 20 -125.00000000000001 +120.00000000000001 30 0.0 11 -122.02325267042617 +102.02325267042649 21 -91.0 +86.00000000000001 31 0.0 0 @@ -1701,15 +1701,15 @@ LINE 8 0 10 -112.02325267042617 +92.02325267042649 20 -125.00000000000001 +120.00000000000001 30 0.0 11 -122.02325267042617 +102.02325267042649 21 -125.00000000000001 +120.00000000000001 31 0.0 0 @@ -1719,15 +1719,15 @@ LINE 8 0 10 -112.02325267042617 +92.02325267042649 20 -91.0 +86.00000000000001 30 0.0 11 -112.02325267042617 +92.02325267042649 21 -125.00000000000001 +120.00000000000001 31 0.0 0 @@ -1737,15 +1737,15 @@ LINE 8 0 10 -122.02325267042617 +102.02325267042649 20 -91.0 +86.00000000000001 30 0.0 11 -112.02325267042617 +92.02325267042649 21 -91.0 +86.00000000000001 31 0.0 0 @@ -1757,15 +1757,15 @@ DOTTED 8 0 10 -390.0232526704262 +270.02325267042653 20 -195.00000000000003 +190.00000000000003 30 0.0 11 -86.02325267042616 +86.02325267042649 21 -195.00000000000003 +190.00000000000003 31 0.0 0 @@ -1777,15 +1777,15 @@ DOTTED 8 0 10 -390.0232526704262 +270.02325267042653 20 -195.00000000000003 +190.00000000000003 30 0.0 11 -390.0232526704262 +270.02325267042653 21 -125.00000000000001 +120.00000000000001 31 0.0 0 @@ -1797,15 +1797,15 @@ DOTTED 8 0 10 -390.0232526704262 +270.02325267042653 20 -125.00000000000001 +120.00000000000001 30 0.0 11 -460.0232526704262 +322.53762348858805 21 -125.00000000000001 +120.00000000000001 31 0.0 0 @@ -1817,15 +1817,15 @@ DOTTED 8 0 10 -390.0232526704262 +270.02325267042653 20 -195.00000000000003 +190.00000000000003 30 0.0 11 -460.0232526704262 +322.53762348858805 21 -125.00000000000001 +120.00000000000001 31 0.0 0 @@ -1835,15 +1835,15 @@ LINE 8 0 10 -390.0232526704262 +270.02325267042653 20 -101.66666666666669 +102.49520972727949 30 0.0 11 -390.0232526704262 +270.02325267042653 21 -125.00000000000001 +120.00000000000001 31 0.0 0 @@ -1853,15 +1853,15 @@ LINE 8 0 10 -460.0232526704262 +322.53762348858805 20 -101.66666666666669 +102.49520972727949 30 0.0 11 -390.0232526704262 +270.02325267042653 21 -101.66666666666669 +102.49520972727949 31 0.0 0 @@ -1871,15 +1871,15 @@ LINE 8 0 10 -460.0232526704262 +322.53762348858805 20 -125.00000000000001 +120.00000000000001 30 0.0 11 -460.0232526704262 +322.53762348858805 21 -101.66666666666669 +102.49520972727949 31 0.0 0 @@ -1891,15 +1891,15 @@ DOTTED 8 0 10 -390.02325267042625 +270.02325267042653 20 -195.00000000000003 +190.00000000000003 30 0.0 11 -460.0232526704262 +337.22840034432573 21 -195.00000000000003 +170.4176577976636 31 0.0 0 @@ -1909,15 +1909,15 @@ LINE 8 0 10 -460.0232526704262 +337.22840034432573 20 -195.00000000000003 +170.4176577976636 30 0.0 11 -460.0232526704262 +322.53762348858805 21 -125.00000000000001 +120.00000000000001 31 0.0 0 @@ -1927,15 +1927,15 @@ LINE 8 0 10 -460.02325267042625 +351.91917720006325 20 -265.00000000000006 +220.83531559532716 30 0.0 11 -460.0232526704262 +337.22840034432573 21 -195.0 +170.4176577976636 31 0.0 0 @@ -1945,15 +1945,55 @@ LINE 8 0 10 -460.0232526704262 +356.04650534085283 + 20 +235.00000000000003 + 30 +0.0 + 11 +351.91917720006325 + 21 +220.83531559532716 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +356.04650534085283 + 20 +235.00000000000003 + 30 +0.0 + 11 +270.02325267042653 + 21 +190.00000000000003 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +270.02325267042653 20 -245.0 +235.00000000000003 30 0.0 11 -460.02325267042625 +270.02325267042653 21 -265.00000000000006 +190.00000000000003 31 0.0 0 @@ -1965,15 +2005,15 @@ DOTTED 8 0 10 -390.0232526704263 +270.02325267042653 20 -245.00000000000003 +280.00000000000006 30 0.0 11 -390.02325267042625 +270.02325267042653 21 -195.00000000000006 +235.00000000000006 31 0.0 0 @@ -1985,15 +2025,15 @@ DOTTED 8 0 10 -390.0232526704263 +356.04650534085283 20 -295.0 +235.00000000000003 30 0.0 11 -390.0232526704263 +270.02325267042653 21 -245.00000000000003 +280.0000000000001 31 0.0 0 @@ -2005,15 +2045,15 @@ DOTTED 8 0 10 -460.02325267042625 +337.22840034432573 20 -295.0 +299.5823422023365 30 0.0 11 -390.0232526704263 +270.02325267042653 21 -295.0 +280.0000000000001 31 0.0 0 @@ -2023,15 +2063,15 @@ LINE 8 0 10 -460.02325267042625 +351.91917720006325 20 -225.00000000000003 +249.16468440467293 30 0.0 11 -460.02325267042625 +356.04650534085283 21 -245.00000000000003 +235.00000000000003 31 0.0 0 @@ -2041,15 +2081,15 @@ LINE 8 0 10 -460.02325267042625 +337.22840034432573 20 -295.0 +299.5823422023365 30 0.0 11 -460.02325267042625 +351.91917720006325 21 -225.00000000000003 +249.16468440467293 31 0.0 0 @@ -2059,15 +2099,15 @@ LINE 8 0 10 -460.02325267042625 +322.53762348858817 20 -365.0 +350.0 30 0.0 11 -460.02325267042625 +337.22840034432573 21 -295.0 +299.58234220233646 31 0.0 0 @@ -2079,15 +2119,15 @@ DOTTED 8 0 10 -460.02325267042625 +322.53762348858817 20 -365.0 +350.0 30 0.0 11 -390.0232526704263 +270.02325267042653 21 -295.0 +280.0000000000001 31 0.0 0 @@ -2099,15 +2139,15 @@ DOTTED 8 0 10 -390.0232526704263 +270.0232526704266 20 -365.00000000000006 +350.00000000000006 30 0.0 11 -390.0232526704263 +270.02325267042653 21 -295.0 +280.00000000000006 31 0.0 0 @@ -2119,15 +2159,15 @@ DOTTED 8 0 10 -460.02325267042625 +322.53762348858817 20 -365.0 +350.0 30 0.0 11 -390.0232526704263 +270.0232526704266 21 -365.00000000000006 +350.00000000000006 31 0.0 0 @@ -2139,15 +2179,15 @@ DOTTED 8 0 10 -390.0232526704263 +270.02325267042653 20 -295.0 +280.00000000000006 30 0.0 11 -86.02325267042634 +86.02325267042643 21 -295.0000000000001 +280.0000000000002 31 0.0 0 @@ -2159,15 +2199,15 @@ DOTTED 8 0 10 -210.02325267042633 +190.02325267042653 20 -365.0000000000001 +350.0000000000001 30 0.0 11 -186.02325267042636 +166.02325267042656 21 -365.00000000000017 +350.0000000000001 31 0.0 0 @@ -2177,15 +2217,15 @@ LINE 8 0 10 -86.02325267042634 +86.0232526704265 20 -365.00000000000017 +350.0000000000002 30 0.0 11 -186.02325267042636 +166.02325267042656 21 -365.00000000000017 +350.0000000000001 31 0.0 0 @@ -2195,15 +2235,15 @@ LINE 8 0 10 -86.02325267042634 +86.0232526704265 20 -365.00000000000017 +350.0000000000002 30 0.0 11 -86.02325267042634 +86.0232526704265 21 -365.00000000000017 +350.0000000000002 31 0.0 0 @@ -2213,15 +2253,15 @@ LINE 8 0 10 -390.0232526704263 +270.0232526704266 20 -365.00000000000006 +350.00000000000006 30 0.0 11 -390.0232526704263 +270.0232526704266 21 -365.00000000000006 +350.00000000000006 31 0.0 0 @@ -2231,15 +2271,15 @@ LINE 8 0 10 -210.02325267042633 +190.02325267042653 20 -365.0000000000001 +350.0000000000001 30 0.0 11 -329.02325267042636 +209.02325267042656 21 -365.00000000000006 +350.0000000000001 31 0.0 0 @@ -2249,15 +2289,15 @@ LINE 8 0 10 -210.02325267042633 +190.02325267042653 20 -365.0000000000001 +350.0000000000001 30 0.0 11 -210.02325267042633 +190.02325267042653 21 -365.0000000000001 +350.0000000000001 31 0.0 0 @@ -2267,15 +2307,15 @@ LINE 8 0 10 -390.0232526704263 +270.0232526704266 20 -365.00000000000006 +350.00000000000006 30 0.0 11 -390.0232526704263 +270.0232526704266 21 -365.00000000000006 +350.00000000000006 31 0.0 0 @@ -2285,15 +2325,15 @@ LINE 8 0 10 -390.0232526704263 +270.0232526704266 20 -375.00000000000006 +360.0000000000001 30 0.0 11 -390.0232526704263 +270.0232526704266 21 -365.00000000000006 +350.00000000000006 31 0.0 0 @@ -2303,15 +2343,15 @@ LINE 8 0 10 -329.02325267042636 +209.0232526704266 20 -375.00000000000006 +360.00000000000017 30 0.0 11 -390.0232526704263 +270.0232526704266 21 -375.00000000000006 +360.0000000000001 31 0.0 0 @@ -2321,15 +2361,15 @@ LINE 8 0 10 -329.02325267042636 +209.02325267042656 20 -365.00000000000006 +350.0000000000001 30 0.0 11 -329.02325267042636 +209.0232526704266 21 -375.00000000000006 +360.00000000000017 31 0.0 0 @@ -2339,15 +2379,15 @@ LINE 8 0 10 -210.02325267042636 +190.0232526704266 20 -399.0000000000001 +384.00000000000017 30 0.0 11 -210.02325267042633 +190.02325267042653 21 -365.0000000000001 +350.0000000000001 31 0.0 0 @@ -2359,15 +2399,15 @@ DOTTED 8 0 10 -186.02325267042633 +166.02325267042656 20 -365.0000000000001 +350.0000000000001 30 0.0 11 -186.02325267042636 +166.0232526704266 21 -399.0000000000001 +384.00000000000017 31 0.0 0 @@ -2377,15 +2417,15 @@ LINE 8 0 10 -210.02325267042636 +190.02325267042664 20 -435.0000000000001 +420.00000000000017 30 0.0 11 -210.02325267042636 +190.0232526704266 21 -399.0000000000001 +384.00000000000017 31 0.0 0 @@ -2397,15 +2437,15 @@ DOTTED 8 0 10 -210.02325267042636 +190.02325267042664 20 -435.0000000000001 +420.00000000000017 30 0.0 11 -186.0232526704264 +166.02325267042661 21 -435.0000000000001 +420.00000000000017 31 0.0 0 @@ -2415,15 +2455,15 @@ LINE 8 0 10 -186.02325267042636 +166.0232526704266 20 -399.0000000000001 +384.00000000000017 30 0.0 11 -186.0232526704264 +166.02325267042661 21 -435.0000000000001 +420.00000000000017 31 0.0 0 @@ -2433,15 +2473,15 @@ LINE 8 0 10 -186.0232526704264 +166.02325267042661 20 -435.0000000000001 +420.00000000000017 30 0.0 11 -186.0232526704264 +166.02325267042667 21 -485.0000000000001 +465.00000000000017 31 0.0 0 @@ -2451,15 +2491,15 @@ LINE 8 0 10 -210.0232526704264 +190.02325267042667 20 -485.0000000000001 +465.00000000000017 30 0.0 11 -210.02325267042636 +190.02325267042664 21 -435.0000000000001 +420.00000000000017 31 0.0 0 @@ -2469,15 +2509,15 @@ LINE 8 0 10 -186.0232526704264 +166.02325267042667 20 -485.0000000000001 +465.00000000000017 30 0.0 11 -210.0232526704264 +190.02325267042667 21 -485.0000000000001 +465.00000000000017 31 0.0 0 @@ -2487,15 +2527,15 @@ LINE 8 0 10 -186.02325267042633 +166.02325267042656 20 -365.0000000000001 +350.0000000000001 30 0.0 11 -166.0232526704263 +146.02325267042656 21 -365.0000000000001 +350.0000000000001 31 0.0 0 @@ -2505,15 +2545,15 @@ LINE 8 0 10 -166.02325267042633 +146.0232526704266 20 -399.0000000000001 +384.00000000000017 30 0.0 11 -186.02325267042636 +166.0232526704266 21 -399.0000000000001 +384.00000000000017 31 0.0 0 @@ -2525,15 +2565,15 @@ DOTTED 8 0 10 -166.0232526704263 +146.02325267042656 20 -365.0000000000001 +350.0000000000001 30 0.0 11 -166.02325267042633 +146.0232526704266 21 -399.0000000000001 +384.00000000000017 31 0.0 0 @@ -2543,15 +2583,15 @@ LINE 8 0 10 -166.0232526704263 +146.02325267042656 20 -365.0000000000001 +350.0000000000001 30 0.0 11 -142.02325267042633 +122.02325267042653 21 -365.0000000000001 +350.0000000000001 31 0.0 0 @@ -2561,15 +2601,15 @@ LINE 8 0 10 -142.02325267042636 +122.02325267042656 20 -399.0000000000001 +384.00000000000017 30 0.0 11 -166.02325267042633 +146.0232526704266 21 -399.0000000000001 +384.00000000000017 31 0.0 0 @@ -2581,15 +2621,15 @@ DOTTED 8 0 10 -142.02325267042633 +122.02325267042653 20 -365.0000000000001 +350.0000000000001 30 0.0 11 -142.02325267042636 +122.02325267042656 21 -399.0000000000001 +384.00000000000017 31 0.0 0 @@ -2599,15 +2639,15 @@ LINE 8 0 10 -142.02325267042633 +122.02325267042653 20 -365.0000000000001 +350.0000000000001 30 0.0 11 -122.02325267042634 +102.02325267042653 21 -365.0000000000001 +350.0000000000001 31 0.0 0 @@ -2617,15 +2657,15 @@ LINE 8 0 10 -122.02325267042636 +102.02325267042656 20 -399.0000000000001 +384.00000000000017 30 0.0 11 -142.02325267042636 +122.02325267042656 21 -399.0000000000001 +384.00000000000017 31 0.0 0 @@ -2637,15 +2677,15 @@ DOTTED 8 0 10 -122.02325267042636 +102.02325267042656 20 -399.0000000000001 +384.00000000000017 30 0.0 11 -122.02325267042634 +102.02325267042653 21 -365.0000000000001 +350.0000000000001 31 0.0 0 @@ -2655,15 +2695,15 @@ LINE 8 0 10 -112.02325267042634 +92.02325267042654 20 -399.0000000000001 +384.00000000000017 30 0.0 11 -122.02325267042634 +102.02325267042654 21 -399.0000000000001 +384.00000000000017 31 0.0 0 @@ -2673,15 +2713,15 @@ LINE 8 0 10 -112.02325267042633 +92.02325267042652 20 -365.0000000000001 +350.0000000000001 30 0.0 11 -112.02325267042634 +92.02325267042654 21 -399.0000000000001 +384.00000000000017 31 0.0 0 @@ -2691,15 +2731,15 @@ LINE 8 0 10 -122.02325267042633 +102.02325267042652 20 -365.0000000000001 +350.0000000000001 30 0.0 11 -112.02325267042633 +92.02325267042652 21 -365.0000000000001 +350.0000000000001 31 0.0 0 @@ -2711,15 +2751,15 @@ DOTTED 8 0 10 -86.0232526704263 +86.02325267042642 20 -295.00000000000017 +280.0000000000003 30 0.0 11 -86.02325267042634 +86.0232526704265 21 -365.00000000000017 +350.0000000000002 31 0.0 0 @@ -2731,15 +2771,15 @@ DOTTED 8 0 10 -86.02325267042634 +86.0232526704265 20 -365.00000000000017 +350.0000000000002 30 0.0 11 -32.42924173922606 +33.5088818522649 21 -365.0000000000002 +350.00000000000034 31 0.0 0 @@ -2751,15 +2791,15 @@ DOTTED 8 0 10 -86.02325267042632 +86.02325267042642 20 -295.00000000000017 +280.0000000000003 30 0.0 11 -32.42924173922606 +33.5088818522649 21 -365.0000000000002 +350.00000000000034 31 0.0 0 @@ -2769,15 +2809,15 @@ LINE 8 0 10 -86.02325267042634 +86.02325267042652 20 -382.8646703104003 +367.50479027272075 30 0.0 11 -86.02325267042634 +86.0232526704265 21 -365.00000000000017 +350.0000000000002 31 0.0 0 @@ -2787,15 +2827,15 @@ LINE 8 0 10 -32.42924173922606 +33.50888185226492 20 -382.8646703104003 +367.5047902727208 30 0.0 11 -86.02325267042634 +86.02325267042652 21 -382.8646703104003 +367.50479027272075 31 0.0 0 @@ -2805,15 +2845,15 @@ LINE 8 0 10 -32.42924173922606 +33.5088818522649 20 -365.0000000000002 +350.00000000000034 30 0.0 11 -32.42924173922606 +33.50888185226492 21 -382.8646703104003 +367.5047902727208 31 0.0 0 @@ -2825,15 +2865,15 @@ DOTTED 8 0 10 -86.02325267042632 +86.02325267042643 20 -295.00000000000017 +280.0000000000002 30 0.0 11 -18.447362619882885 +18.81810499652727 21 -313.2619572849372 +299.5823422023367 31 0.0 0 @@ -2843,15 +2883,15 @@ LINE 8 0 10 -18.447362619882885 +18.81810499652727 20 -313.2619572849372 +299.5823422023367 30 0.0 11 -32.42924173922606 +33.5088818522649 21 -365.0000000000002 +350.0000000000002 31 0.0 0 @@ -2861,15 +2901,15 @@ LINE 8 0 10 -4.465483500539649 +4.127328140789616 20 -261.5239145698741 +249.16468440467318 30 0.0 11 -18.447362619882853 +18.81810499652724 21 -313.2619572849372 +299.5823422023367 31 0.0 0 @@ -2879,15 +2919,15 @@ LINE 8 0 10 -0.0 +2.8421709430404014e-14 20 -245.00000000000028 +235.0000000000003 30 0.0 11 -4.465483500539649 +4.127328140789616 21 -261.5239145698741 +249.16468440467318 31 0.0 0 @@ -2899,15 +2939,15 @@ DOTTED 8 0 10 -0.0 +2.8421709430404014e-14 20 -245.00000000000028 +235.0000000000003 30 0.0 11 -86.0232526704263 +86.02325267042642 21 -295.0000000000001 +280.0000000000003 31 0.0 0 @@ -2919,15 +2959,15 @@ DOTTED 8 0 10 -86.02325267042627 +86.02325267042637 20 -245.0000000000002 +235.0000000000002 30 0.0 11 -86.02325267042632 +86.02325267042642 21 -295.0000000000001 +280.0000000000003 31 0.0 0 @@ -2939,15 +2979,15 @@ DOTTED 8 0 10 -86.02325267042623 +86.0232526704263 20 -195.00000000000017 +190.0000000000002 30 0.0 11 -86.02325267042627 +86.02325267042636 21 -245.0000000000002 +235.0000000000002 31 0.0 0 @@ -2959,15 +2999,15 @@ DOTTED 8 0 10 -0.0 +2.8421709430404014e-14 20 -245.00000000000026 +235.0000000000003 30 0.0 11 -86.02325267042623 +86.0232526704263 21 -195.00000000000017 +190.0000000000002 31 0.0 0 @@ -2979,15 +3019,15 @@ DOTTED 8 0 10 -18.447362619882743 +18.818104996527016 20 -176.73804271506336 +170.41765779766385 30 0.0 11 -86.02325267042623 +86.02325267042627 21 -195.00000000000017 +190.0000000000002 31 0.0 0 @@ -2997,15 +3037,15 @@ LINE 8 0 10 -4.465483500539619 +4.127328140789531 20 -228.47608543012643 +220.83531559532747 30 0.0 11 0.0 21 -245.00000000000026 +235.0000000000003 31 0.0 0 @@ -3015,15 +3055,15 @@ LINE 8 0 10 -18.447362619882743 +18.818104996527016 20 -176.73804271506336 +170.41765779766385 30 0.0 11 -4.465483500539619 +4.127328140789531 21 -228.47608543012643 +220.83531559532747 31 0.0 0 @@ -3033,15 +3073,15 @@ LINE 8 0 10 -32.42924173922586 +33.50888185226453 20 -125.00000000000027 +120.00000000000027 30 0.0 11 -18.447362619882743 +18.818104996527044 21 -176.73804271506336 +170.41765779766388 31 0.0 0 @@ -3053,15 +3093,15 @@ DOTTED 8 0 10 -32.42924173922586 +33.50888185226453 20 -125.00000000000027 +120.00000000000027 30 0.0 11 -86.02325267042623 +86.02325267042629 21 -195.00000000000017 +190.0000000000002 31 0.0 0 @@ -3075,13 +3115,13 @@ DOTTED 10 86.02325267042613 20 -125.00000000000021 +120.00000000000016 30 0.0 11 -86.0232526704262 +86.0232526704263 21 -195.00000000000017 +190.0000000000002 31 0.0 0 @@ -3093,15 +3133,15 @@ DOTTED 8 0 10 -32.42924173922586 +33.50888185226453 20 -125.00000000000027 +120.00000000000027 30 0.0 11 86.02325267042613 21 -125.00000000000021 +120.00000000000016 31 0.0 0 @@ -3111,15 +3151,15 @@ LINE 8 0 10 -32.42924173922584 +33.5088818522645 20 -107.13532968960016 +102.49520972727973 30 0.0 11 -32.42924173922586 +33.50888185226453 21 -125.00000000000027 +120.00000000000027 31 0.0 0 @@ -3131,13 +3171,13 @@ LINE 10 86.02325267042612 20 -107.13532968960011 +102.49520972727963 30 0.0 11 -32.42924173922584 +33.5088818522645 21 -107.13532968960016 +102.49520972727973 31 0.0 0 @@ -3149,13 +3189,13 @@ LINE 10 86.02325267042613 20 -125.00000000000021 +120.00000000000016 30 0.0 11 86.02325267042612 21 -107.13532968960011 +102.49520972727963 31 0.0 0 @@ -3165,15 +3205,15 @@ LINE 8 0 10 -460.02325267042625 +322.5376234885882 20 -388.3333333333333 +367.5047902727206 30 0.0 11 -460.02325267042625 +322.53762348858817 21 -365.0 +350.0 31 0.0 0 @@ -3183,15 +3223,15 @@ LINE 8 0 10 -390.0232526704263 +270.0232526704266 20 -388.33333333333337 +367.50479027272064 30 0.0 11 -460.02325267042625 +322.5376234885882 21 -388.3333333333333 +367.5047902727206 31 0.0 0 @@ -3201,15 +3241,15 @@ LINE 8 0 10 -390.0232526704263 +270.0232526704266 20 -365.00000000000006 +350.00000000000006 30 0.0 11 -390.0232526704263 +270.0232526704266 21 -388.33333333333337 +367.50479027272064 31 0.0 0 @@ -3219,15 +3259,15 @@ LINE 8 0 10 -347.02325267042613 +227.0232526704265 20 -70.3613780008147 +65.3613780008147 30 0.0 11 -358.0232526704262 +238.0232526704265 21 -70.3613780008147 +65.3613780008147 31 0.0 0 @@ -3237,15 +3277,15 @@ LINE 8 0 10 -358.0232526704262 +238.0232526704265 20 -70.3613780008147 +65.3613780008147 30 0.0 11 -358.0232526704262 +238.0232526704265 21 -83.36137800081471 +78.3613780008147 31 0.0 0 @@ -3255,15 +3295,15 @@ LINE 8 0 10 -358.0232526704262 +238.0232526704265 20 -83.36137800081471 +78.3613780008147 30 0.0 11 -347.02325267042613 +227.0232526704265 21 -83.36137800081471 +78.3613780008147 31 0.0 0 @@ -3273,15 +3313,15 @@ LINE 8 0 10 -347.02325267042613 +227.0232526704265 20 -83.36137800081471 +78.3613780008147 30 0.0 11 -347.02325267042613 +227.0232526704265 21 -70.3613780008147 +65.3613780008147 31 0.0 0 @@ -3291,15 +3331,15 @@ LINE 8 0 10 -378.52325267042613 +258.52325267042653 20 -71.86137800081471 +66.8613780008147 30 0.0 11 -384.5232526704262 +264.52325267042653 21 -71.86137800081471 +66.8613780008147 31 0.0 0 @@ -3309,15 +3349,15 @@ LINE 8 0 10 -384.5232526704262 +264.52325267042653 20 -71.86137800081471 +66.8613780008147 30 0.0 11 -384.5232526704262 +264.52325267042653 21 -81.86137800081471 +76.8613780008147 31 0.0 0 @@ -3327,15 +3367,15 @@ LINE 8 0 10 -384.5232526704262 +264.52325267042653 20 -81.86137800081471 +76.8613780008147 30 0.0 11 -378.52325267042613 +258.52325267042653 21 -81.86137800081471 +76.8613780008147 31 0.0 0 @@ -3345,15 +3385,15 @@ LINE 8 0 10 -378.52325267042613 +258.52325267042653 20 -81.86137800081471 +76.8613780008147 30 0.0 11 -378.52325267042613 +258.52325267042653 21 -71.86137800081471 +66.8613780008147 31 0.0 0 @@ -3363,15 +3403,15 @@ LINE 8 0 10 -351.45507085224443 +231.4550708522447 20 -36.47275600162939 +31.472756001629396 30 0.0 11 -339.8641617613353 +219.8641617613356 21 -36.47275600162939 +31.472756001629396 31 0.0 0 @@ -3381,15 +3421,15 @@ LINE 8 0 10 -339.8641617613353 +219.8641617613356 20 -36.47275600162939 +31.472756001629396 30 0.0 11 -339.8641617613353 +219.8641617613356 21 -35.9727560016294 +30.9727560016294 31 0.0 0 @@ -3399,15 +3439,15 @@ LINE 8 0 10 -339.8641617613353 +219.8641617613356 20 -35.9727560016294 +30.9727560016294 30 0.0 11 -351.45507085224443 +231.4550708522447 21 -35.9727560016294 +30.9727560016294 31 0.0 0 @@ -3417,15 +3457,15 @@ LINE 8 0 10 -351.45507085224443 +231.4550708522447 20 -35.9727560016294 +30.9727560016294 30 0.0 11 -351.45507085224443 +231.4550708522447 21 -36.47275600162939 +31.472756001629396 31 0.0 0 @@ -3435,15 +3475,15 @@ LINE 8 0 10 -379.18234357951707 +259.1823435795174 20 -36.47275600162939 +31.472756001629396 30 0.0 11 -367.591434488608 +247.59143448860831 21 -36.47275600162939 +31.472756001629396 31 0.0 0 @@ -3453,15 +3493,15 @@ LINE 8 0 10 -367.591434488608 +247.59143448860831 20 -36.47275600162939 +31.472756001629396 30 0.0 11 -367.591434488608 +247.59143448860831 21 -35.9727560016294 +30.9727560016294 31 0.0 0 @@ -3471,15 +3511,15 @@ LINE 8 0 10 -367.591434488608 +247.59143448860831 20 -35.9727560016294 +30.9727560016294 30 0.0 11 -379.18234357951707 +259.1823435795174 21 -35.9727560016294 +30.9727560016294 31 0.0 0 @@ -3489,15 +3529,15 @@ LINE 8 0 10 -379.18234357951707 +259.1823435795174 20 -35.9727560016294 +30.9727560016294 30 0.0 11 -379.18234357951707 +259.1823435795174 21 -36.47275600162939 +31.472756001629396 31 0.0 0 @@ -3507,15 +3547,15 @@ LINE 8 0 10 -397.5232526704262 +277.5232526704265 20 -80.86137800081471 +75.8613780008147 30 0.0 11 -392.52325267042613 +272.5232526704265 21 -80.86137800081471 +75.8613780008147 31 0.0 0 @@ -3525,15 +3565,15 @@ LINE 8 0 10 -392.52325267042613 +272.5232526704265 20 -80.86137800081471 +75.8613780008147 30 0.0 11 -392.52325267042613 +272.5232526704265 21 -72.86137800081471 +67.8613780008147 31 0.0 0 @@ -3543,15 +3583,15 @@ LINE 8 0 10 -392.52325267042613 +272.5232526704265 20 -72.86137800081471 +67.8613780008147 30 0.0 11 -397.5232526704262 +277.5232526704265 21 -72.86137800081471 +67.8613780008147 31 0.0 0 @@ -3561,15 +3601,15 @@ LINE 8 0 10 -321.5232526704262 +201.5232526704265 20 -72.86137800081471 +67.8613780008147 30 0.0 11 -326.5232526704262 +206.5232526704265 21 -72.86137800081471 +67.8613780008147 31 0.0 0 @@ -3579,15 +3619,15 @@ LINE 8 0 10 -326.5232526704262 +206.5232526704265 20 -72.86137800081471 +67.8613780008147 30 0.0 11 -326.5232526704262 +206.5232526704265 21 -80.86137800081471 +75.8613780008147 31 0.0 0 @@ -3597,15 +3637,15 @@ LINE 8 0 10 -326.5232526704262 +206.5232526704265 20 -80.86137800081471 +75.8613780008147 30 0.0 11 -321.5232526704262 +201.5232526704265 21 -80.86137800081471 +75.8613780008147 31 0.0 0 @@ -3615,15 +3655,15 @@ LINE 8 0 10 -202.2732526704262 +182.2732526704265 20 -113.91666666666669 +108.91666666666669 30 0.0 11 -202.2732526704262 +182.2732526704265 21 -102.08333333333336 +97.08333333333336 31 0.0 0 @@ -3633,15 +3673,15 @@ LINE 8 0 10 -202.2732526704262 +182.2732526704265 20 -102.08333333333336 +97.08333333333336 30 0.0 11 -202.7732526704262 +182.7732526704265 21 -102.08333333333336 +97.08333333333336 31 0.0 0 @@ -3651,15 +3691,15 @@ LINE 8 0 10 -202.7732526704262 +182.7732526704265 20 -102.08333333333336 +97.08333333333336 30 0.0 11 -202.7732526704262 +182.7732526704265 21 -113.91666666666669 +108.91666666666669 31 0.0 0 @@ -3669,15 +3709,15 @@ LINE 8 0 10 -202.7732526704262 +182.7732526704265 20 -113.91666666666669 +108.91666666666669 30 0.0 11 -202.2732526704262 +182.2732526704265 21 -113.91666666666669 +108.91666666666669 31 0.0 0 @@ -3687,13 +3727,13 @@ LINE 8 0 10 -202.0232526704262 +182.0232526704265 20 1.2500000000000002 30 0.0 11 -204.5232526704262 +184.5232526704265 21 1.2500000000000002 31 @@ -3705,13 +3745,13 @@ LINE 8 0 10 -204.5232526704262 +184.5232526704265 20 1.2500000000000002 30 0.0 11 -202.0232526704262 +182.0232526704265 21 3.7500000000000004 31 @@ -3723,13 +3763,13 @@ LINE 8 0 10 -202.0232526704262 +182.0232526704265 20 3.7500000000000004 30 0.0 11 -194.02325267042616 +174.0232526704265 21 3.7500000000000004 31 @@ -3741,13 +3781,13 @@ LINE 8 0 10 -194.02325267042616 +174.0232526704265 20 3.7500000000000004 30 0.0 11 -191.52325267042616 +171.5232526704265 21 1.2500000000000002 31 @@ -3759,13 +3799,13 @@ LINE 8 0 10 -191.52325267042616 +171.5232526704265 20 1.2500000000000002 30 0.0 11 -194.02325267042616 +174.0232526704265 21 1.2500000000000002 31 @@ -3777,15 +3817,15 @@ LINE 8 0 10 -167.02325267042616 +147.02325267042647 20 -102.00000000000001 +97.00000000000001 30 0.0 11 -171.02325267042616 +151.0232526704265 21 -102.00000000000001 +97.00000000000001 31 0.0 0 @@ -3795,15 +3835,15 @@ LINE 8 0 10 -171.02325267042616 +151.0232526704265 20 -102.00000000000001 +97.00000000000001 30 0.0 11 -171.02325267042616 +151.0232526704265 21 -114.00000000000001 +109.00000000000001 31 0.0 0 @@ -3813,15 +3853,15 @@ LINE 8 0 10 -171.02325267042616 +151.0232526704265 20 -114.00000000000001 +109.00000000000001 30 0.0 11 -167.02325267042616 +147.02325267042647 21 -114.00000000000001 +109.00000000000001 31 0.0 0 @@ -3831,15 +3871,15 @@ LINE 8 0 10 -167.02325267042616 +147.02325267042647 20 -114.00000000000001 +109.00000000000001 30 0.0 11 -167.02325267042616 +147.02325267042647 21 -102.00000000000001 +97.00000000000001 31 0.0 0 @@ -3849,15 +3889,15 @@ LINE 8 0 10 -179.0232526704262 +159.0232526704265 20 -103.5 +98.50000000000001 30 0.0 11 -183.0232526704262 +163.02325267042647 21 -103.5 +98.50000000000001 31 0.0 0 @@ -3867,15 +3907,15 @@ LINE 8 0 10 -183.0232526704262 +163.02325267042647 20 -103.5 +98.50000000000001 30 0.0 11 -183.0232526704262 +163.02325267042647 21 -112.50000000000001 +107.50000000000001 31 0.0 0 @@ -3885,15 +3925,15 @@ LINE 8 0 10 -183.0232526704262 +163.02325267042647 20 -112.50000000000001 +107.50000000000001 30 0.0 11 -179.0232526704262 +159.0232526704265 21 -112.50000000000001 +107.50000000000001 31 0.0 0 @@ -3903,15 +3943,15 @@ LINE 8 0 10 -179.0232526704262 +159.0232526704265 20 -112.50000000000001 +107.50000000000001 30 0.0 11 -179.0232526704262 +159.0232526704265 21 -103.5 +98.50000000000001 31 0.0 0 @@ -3921,15 +3961,15 @@ LINE 8 0 10 -142.5232526704262 +122.52325267042649 20 -102.00000000000001 +97.00000000000001 30 0.0 11 -165.5232526704262 +145.5232526704265 21 -102.00000000000001 +97.00000000000001 31 0.0 0 @@ -3939,15 +3979,15 @@ LINE 8 0 10 -165.5232526704262 +145.5232526704265 20 -102.00000000000001 +97.00000000000001 30 0.0 11 -165.5232526704262 +145.5232526704265 21 -114.00000000000001 +109.00000000000001 31 0.0 0 @@ -3957,15 +3997,15 @@ LINE 8 0 10 -165.5232526704262 +145.5232526704265 20 -114.00000000000001 +109.00000000000001 30 0.0 11 -142.5232526704262 +122.52325267042649 21 -114.00000000000001 +109.00000000000001 31 0.0 0 @@ -3975,15 +4015,15 @@ LINE 8 0 10 -142.5232526704262 +122.52325267042649 20 -114.00000000000001 +109.00000000000001 30 0.0 11 -142.5232526704262 +122.52325267042649 21 -102.00000000000001 +97.00000000000001 31 0.0 0 @@ -3993,15 +4033,15 @@ LINE 8 0 10 -137.02325267042616 +117.02325267042649 20 -102.00000000000001 +97.00000000000001 30 0.0 11 -141.0232526704262 +121.02325267042649 21 -102.00000000000001 +97.00000000000001 31 0.0 0 @@ -4011,15 +4051,15 @@ LINE 8 0 10 -141.0232526704262 +121.02325267042649 20 -102.00000000000001 +97.00000000000001 30 0.0 11 -141.0232526704262 +121.02325267042649 21 -114.00000000000001 +109.00000000000001 31 0.0 0 @@ -4029,15 +4069,15 @@ LINE 8 0 10 -141.0232526704262 +121.02325267042649 20 -114.00000000000001 +109.00000000000001 30 0.0 11 -137.02325267042616 +117.02325267042649 21 -114.00000000000001 +109.00000000000001 31 0.0 0 @@ -4047,15 +4087,15 @@ LINE 8 0 10 -137.02325267042616 +117.02325267042649 20 -114.00000000000001 +109.00000000000001 30 0.0 11 -137.02325267042616 +117.02325267042649 21 -102.00000000000001 +97.00000000000001 31 0.0 0 @@ -4065,15 +4105,15 @@ LINE 8 0 10 -114.52325267042617 +94.52325267042649 20 -102.33333333333334 +97.33333333333336 30 0.0 11 -119.52325267042617 +99.52325267042649 21 -102.33333333333334 +97.33333333333336 31 0.0 0 @@ -4083,15 +4123,15 @@ LINE 8 0 10 -119.52325267042617 +99.52325267042649 20 -102.33333333333334 +97.33333333333336 30 0.0 11 -119.52325267042617 +99.52325267042649 21 -113.66666666666669 +108.66666666666669 31 0.0 0 @@ -4101,15 +4141,15 @@ LINE 8 0 10 -119.52325267042617 +99.52325267042649 20 -113.66666666666669 +108.66666666666669 30 0.0 11 -114.52325267042617 +94.52325267042649 21 -113.66666666666669 +108.66666666666669 31 0.0 0 @@ -4119,15 +4159,15 @@ LINE 8 0 10 -436.68991933709293 +305.0328332158675 20 -107.50000000000001 +106.87140729545962 30 0.0 11 -436.68991933709293 +305.0328332158675 21 -119.16666666666669 +115.62380243181988 31 0.0 0 @@ -4137,15 +4177,15 @@ LINE 8 0 10 -436.68991933709293 +305.0328332158675 20 -119.16666666666669 +115.62380243181988 30 0.0 11 -413.35658600375956 +287.52804294314706 21 -119.16666666666669 +115.62380243181988 31 0.0 0 @@ -4155,15 +4195,15 @@ LINE 8 0 10 -413.35658600375956 +287.52804294314706 20 -119.16666666666669 +115.62380243181988 30 0.0 11 -413.35658600375956 +287.52804294314706 21 -107.50000000000001 +106.87140729545962 31 0.0 0 @@ -4173,15 +4213,15 @@ LINE 8 0 10 -442.27325267042625 +334.2477556839554 20 -241.91666666666666 +208.0120791976936 30 0.0 11 -442.27325267042625 +329.21095619250247 21 -218.08333333333334 +190.7261564960398 31 0.0 0 @@ -4191,15 +4231,15 @@ LINE 8 0 10 -442.27325267042625 +329.21095619250247 20 -218.08333333333334 +190.7261564960398 30 0.0 11 -442.77325267042625 +329.6909929616017 21 -218.08333333333334 +190.5862826231659 31 0.0 0 @@ -4209,15 +4249,15 @@ LINE 8 0 10 -442.77325267042625 +329.6909929616017 20 -218.08333333333334 +190.5862826231659 30 0.0 11 -442.77325267042625 +334.72779245305475 21 -241.91666666666666 +207.87220532481976 31 0.0 0 @@ -4227,15 +4267,15 @@ LINE 8 0 10 -442.77325267042625 +334.72779245305475 20 -241.91666666666666 +207.87220532481976 30 0.0 11 -442.27325267042625 +334.2477556839554 21 -241.91666666666666 +208.0120791976936 31 0.0 0 @@ -4245,15 +4285,15 @@ LINE 8 0 10 -442.2732526704263 +329.21095619250247 20 -271.9166666666667 +279.27384350396034 30 0.0 11 -442.2732526704263 +334.24775568395546 21 -248.08333333333337 +261.98792080230646 31 0.0 0 @@ -4263,15 +4303,15 @@ LINE 8 0 10 -442.2732526704263 +334.24775568395546 20 -248.08333333333337 +261.98792080230646 30 0.0 11 -442.7732526704263 +334.72779245305475 21 -248.08333333333337 +262.12779467518027 31 0.0 0 @@ -4281,15 +4321,15 @@ LINE 8 0 10 -442.7732526704263 +334.72779245305475 20 -248.08333333333337 +262.12779467518027 30 0.0 11 -442.7732526704263 +329.69099296160175 21 -271.9166666666667 +279.41371737683414 31 0.0 0 @@ -4299,15 +4339,15 @@ LINE 8 0 10 -442.7732526704263 +329.69099296160175 20 -271.9166666666667 +279.41371737683414 30 0.0 11 -442.2732526704263 +329.21095619250247 21 -271.9166666666667 +279.27384350396034 31 0.0 0 @@ -4317,15 +4357,15 @@ LINE 8 0 10 -340.11416176133537 +220.11416176133568 20 -372.50000000000006 +357.50000000000017 30 0.0 11 -340.11416176133537 +220.11416176133568 21 -367.50000000000006 +352.50000000000017 31 0.0 0 @@ -4335,15 +4375,15 @@ LINE 8 0 10 -340.11416176133537 +220.11416176133568 20 -367.50000000000006 +352.50000000000017 30 0.0 11 -351.20507085224455 +231.20507085224477 21 -367.50000000000006 +352.50000000000017 31 0.0 0 @@ -4353,15 +4393,15 @@ LINE 8 0 10 -351.20507085224455 +231.20507085224477 20 -367.50000000000006 +352.50000000000017 30 0.0 11 -351.20507085224455 +231.20507085224477 21 -372.50000000000006 +357.50000000000017 31 0.0 0 @@ -4371,15 +4411,15 @@ LINE 8 0 10 -367.8414344886082 +247.84143448860843 20 -372.50000000000006 +357.50000000000017 30 0.0 11 -367.8414344886082 +247.84143448860843 21 -367.50000000000006 +352.50000000000017 31 0.0 0 @@ -4389,15 +4429,15 @@ LINE 8 0 10 -367.8414344886082 +247.84143448860843 20 -367.50000000000006 +352.50000000000017 30 0.0 11 -378.9323435795172 +258.9323435795175 21 -367.50000000000006 +352.5000000000001 31 0.0 0 @@ -4407,15 +4447,15 @@ LINE 8 0 10 -378.9323435795172 +258.9323435795175 20 -367.50000000000006 +352.5000000000001 30 0.0 11 -378.9323435795172 +258.9323435795175 21 -372.50000000000006 +357.5000000000001 31 0.0 0 @@ -4425,15 +4465,15 @@ LINE 8 0 10 -202.27325267042633 +182.2732526704266 20 -387.9166666666668 +372.91666666666674 30 0.0 11 -202.27325267042633 +182.2732526704266 21 -376.0833333333334 +361.08333333333354 31 0.0 0 @@ -4443,15 +4483,15 @@ LINE 8 0 10 -202.27325267042633 +182.2732526704266 20 -376.0833333333334 +361.08333333333354 30 0.0 11 -202.77325267042633 +182.7732526704266 21 -376.0833333333334 +361.08333333333354 31 0.0 0 @@ -4461,15 +4501,15 @@ LINE 8 0 10 -202.77325267042633 +182.7732526704266 20 -376.0833333333334 +361.08333333333354 30 0.0 11 -202.77325267042636 +182.7732526704266 21 -387.9166666666668 +372.91666666666674 31 0.0 0 @@ -4479,15 +4519,15 @@ LINE 8 0 10 -202.77325267042636 +182.7732526704266 20 -387.9166666666668 +372.91666666666674 30 0.0 11 -202.27325267042633 +182.2732526704266 21 -387.9166666666668 +372.91666666666674 31 0.0 0 @@ -4497,15 +4537,15 @@ LINE 8 0 10 -193.7732526704264 +173.77325267042664 20 -481.0000000000001 +461.00000000000017 30 0.0 11 -202.27325267042636 +182.27325267042667 21 -481.0000000000001 +461.00000000000017 31 0.0 0 @@ -4515,15 +4555,15 @@ LINE 8 0 10 -202.27325267042636 +182.27325267042667 20 -481.0000000000001 +461.00000000000017 30 0.0 11 -202.27325267042636 +182.27325267042667 21 -481.5000000000001 +461.50000000000017 31 0.0 0 @@ -4533,15 +4573,15 @@ LINE 8 0 10 -202.27325267042636 +182.27325267042667 20 -481.5000000000001 +461.50000000000017 30 0.0 11 -193.7732526704264 +173.77325267042664 21 -481.5000000000001 +461.50000000000017 31 0.0 0 @@ -4551,15 +4591,15 @@ LINE 8 0 10 -193.7732526704264 +173.77325267042664 20 -481.5000000000001 +461.50000000000017 30 0.0 11 -193.7732526704264 +173.77325267042664 21 -481.0000000000001 +461.00000000000017 31 0.0 0 @@ -4569,15 +4609,15 @@ LINE 8 0 10 -167.02325267042633 +147.02325267042653 20 -376.0000000000001 +361.00000000000017 30 0.0 11 -171.02325267042633 +151.02325267042653 21 -376.0000000000001 +361.00000000000017 31 0.0 0 @@ -4587,15 +4627,15 @@ LINE 8 0 10 -171.02325267042633 +151.02325267042653 20 -376.0000000000001 +361.00000000000017 30 0.0 11 -171.02325267042633 +151.02325267042656 21 -388.0000000000001 +373.0000000000001 31 0.0 0 @@ -4605,15 +4645,15 @@ LINE 8 0 10 -171.02325267042633 +151.02325267042656 20 -388.0000000000001 +373.0000000000001 30 0.0 11 -167.02325267042633 +147.02325267042653 21 -388.0000000000001 +373.0000000000001 31 0.0 0 @@ -4623,15 +4663,15 @@ LINE 8 0 10 -167.02325267042633 +147.02325267042653 20 -388.0000000000001 +373.0000000000001 30 0.0 11 -167.02325267042633 +147.02325267042653 21 -376.0000000000001 +361.00000000000017 31 0.0 0 @@ -4641,15 +4681,15 @@ LINE 8 0 10 -179.02325267042633 +159.02325267042656 20 -377.50000000000006 +362.50000000000017 30 0.0 11 -183.02325267042633 +163.02325267042653 21 -377.50000000000006 +362.50000000000017 31 0.0 0 @@ -4659,15 +4699,15 @@ LINE 8 0 10 -183.02325267042633 +163.02325267042653 20 -377.50000000000006 +362.50000000000017 30 0.0 11 -183.02325267042633 +163.02325267042656 21 -386.50000000000006 +371.50000000000017 31 0.0 0 @@ -4677,15 +4717,15 @@ LINE 8 0 10 -183.02325267042633 +163.02325267042656 20 -386.50000000000006 +371.50000000000017 30 0.0 11 -179.02325267042633 +159.0232526704266 21 -386.50000000000006 +371.50000000000017 31 0.0 0 @@ -4695,15 +4735,15 @@ LINE 8 0 10 -179.02325267042633 +159.0232526704266 20 -386.50000000000006 +371.50000000000017 30 0.0 11 -179.02325267042633 +159.02325267042656 21 -377.50000000000006 +362.50000000000017 31 0.0 0 @@ -4713,15 +4753,15 @@ LINE 8 0 10 -142.52325267042636 +122.52325267042654 20 -376.0000000000001 +361.00000000000017 30 0.0 11 -165.52325267042636 +145.52325267042656 21 -376.0000000000001 +361.00000000000017 31 0.0 0 @@ -4731,15 +4771,15 @@ LINE 8 0 10 -165.52325267042636 +145.52325267042656 20 -376.0000000000001 +361.00000000000017 30 0.0 11 -165.52325267042636 +145.5232526704266 21 -388.0000000000001 +373.0000000000001 31 0.0 0 @@ -4749,15 +4789,15 @@ LINE 8 0 10 -165.52325267042636 +145.5232526704266 20 -388.0000000000001 +373.0000000000001 30 0.0 11 -142.52325267042636 +122.52325267042656 21 -388.0000000000001 +373.0000000000001 31 0.0 0 @@ -4767,15 +4807,15 @@ LINE 8 0 10 -142.52325267042636 +122.52325267042656 20 -388.0000000000001 +373.0000000000001 30 0.0 11 -142.52325267042636 +122.52325267042654 21 -376.0000000000001 +361.00000000000017 31 0.0 0 @@ -4785,15 +4825,15 @@ LINE 8 0 10 -137.02325267042636 +117.02325267042654 20 -376.0000000000001 +361.00000000000017 30 0.0 11 -141.02325267042633 +121.02325267042654 21 -376.0000000000001 +361.00000000000017 31 0.0 0 @@ -4803,15 +4843,15 @@ LINE 8 0 10 -141.02325267042633 +121.02325267042654 20 -376.0000000000001 +361.00000000000017 30 0.0 11 -141.02325267042633 +121.02325267042654 21 -388.0000000000001 +373.0000000000001 31 0.0 0 @@ -4821,15 +4861,15 @@ LINE 8 0 10 -141.02325267042633 +121.02325267042654 20 -388.0000000000001 +373.0000000000001 30 0.0 11 -137.02325267042636 +117.02325267042654 21 -388.0000000000001 +373.0000000000001 31 0.0 0 @@ -4839,15 +4879,15 @@ LINE 8 0 10 -137.02325267042636 +117.02325267042654 20 -388.0000000000001 +373.0000000000001 30 0.0 11 -137.02325267042636 +117.02325267042654 21 -376.0000000000001 +361.00000000000017 31 0.0 0 @@ -4857,15 +4897,15 @@ LINE 8 0 10 -114.52325267042633 +94.52325267042652 20 -376.3333333333334 +361.33333333333354 30 0.0 11 -119.52325267042633 +99.52325267042653 21 -376.3333333333334 +361.33333333333354 31 0.0 0 @@ -4875,15 +4915,15 @@ LINE 8 0 10 -119.52325267042633 +99.52325267042653 20 -376.3333333333334 +361.33333333333354 30 0.0 11 -119.52325267042634 +99.52325267042654 21 -387.6666666666668 +372.6666666666668 31 0.0 0 @@ -4893,15 +4933,15 @@ LINE 8 0 10 -119.52325267042634 +99.52325267042654 20 -387.6666666666668 +372.6666666666668 30 0.0 11 -114.52325267042634 +94.52325267042653 21 -387.6666666666668 +372.6666666666668 31 0.0 0 @@ -4911,15 +4951,15 @@ LINE 8 0 10 -50.293912049626165 +51.013672124985426 20 -378.3985027328003 +363.1285927045407 30 0.0 11 -50.293912049626165 +51.013672124985426 21 -369.46616757760023 +354.37619756818043 31 0.0 0 @@ -4929,15 +4969,15 @@ LINE 8 0 10 -50.293912049626165 +51.013672124985426 20 -369.46616757760023 +354.37619756818043 30 0.0 11 -68.15858236002626 +68.51846239770595 21 -369.46616757760023 +354.37619756818043 31 0.0 0 @@ -4947,15 +4987,15 @@ LINE 8 0 10 -68.15858236002626 +68.51846239770595 20 -369.46616757760023 +354.37619756818043 30 0.0 11 -68.15858236002626 +68.51846239770595 21 -378.3985027328003 +363.1285927045407 31 0.0 0 @@ -4965,15 +5005,15 @@ LINE 8 0 10 -22.23674174086841 +21.79874965689743 20 -274.96789528790873 +261.98792080230675 30 0.0 11 -27.02781066601807 +26.83554914835048 21 -292.6965944551955 +279.27384350396056 31 0.0 0 @@ -4983,15 +5023,15 @@ LINE 8 0 10 -27.02781066601807 +26.83554914835048 20 -292.6965944551955 +279.27384350396056 30 0.0 11 -26.545125737085613 +26.3555123792512 21 -292.82703700723084 +279.4137173768344 31 0.0 0 @@ -5001,15 +5041,15 @@ LINE 8 0 10 -26.545125737085613 +26.3555123792512 20 -292.82703700723084 +279.4137173768344 30 0.0 11 -21.754056811935953 +21.318712887798146 21 -275.098337839944 +262.1277946751806 31 0.0 0 @@ -5019,15 +5059,15 @@ LINE 8 0 10 -21.754056811935953 +21.318712887798146 20 -275.098337839944 +262.1277946751806 30 0.0 11 -22.23674174086841 +21.79874965689743 21 -274.96789528790873 +261.98792080230675 31 0.0 0 @@ -5037,15 +5077,15 @@ LINE 8 0 10 -27.027810666018013 +26.835549148350314 20 -197.30340554480492 +190.72615649604003 30 0.0 11 -22.236741740868357 +21.798749656897318 21 -215.0321047120917 +208.01207919769385 31 0.0 0 @@ -5055,15 +5095,15 @@ LINE 8 0 10 -22.236741740868357 +21.798749656897318 20 -215.0321047120917 +208.01207919769385 30 0.0 11 -21.7540568119359 +21.31871288779803 21 -214.90166216005642 +207.87220532482004 31 0.0 0 @@ -5073,15 +5113,15 @@ LINE 8 0 10 -21.7540568119359 +21.31871288779803 20 -214.90166216005642 +207.87220532482004 30 0.0 11 -26.54512573708556 +26.355512379251028 21 -197.17296299276964 +190.58628262316623 31 0.0 0 @@ -5091,15 +5131,15 @@ LINE 8 0 10 -26.54512573708556 +26.355512379251028 20 -197.17296299276964 +190.58628262316623 30 0.0 11 -27.027810666018013 +26.835549148350314 21 -197.30340554480492 +190.72615649604003 31 0.0 0 @@ -5109,15 +5149,15 @@ LINE 8 0 10 -68.15858236002603 +68.51846239770558 20 -111.60149726720016 +106.87140729545979 30 0.0 11 -68.15858236002603 +68.51846239770559 21 -120.5338324224002 +115.62380243182007 31 0.0 0 @@ -5127,15 +5167,15 @@ LINE 8 0 10 -68.15858236002603 +68.51846239770559 20 -120.5338324224002 +115.62380243182007 30 0.0 11 -50.293912049625966 +51.01367212498506 21 -120.53383242240022 +115.6238024318201 31 0.0 0 @@ -5145,15 +5185,15 @@ LINE 8 0 10 -50.293912049625966 +51.01367212498506 20 -120.53383242240022 +115.6238024318201 30 0.0 11 -50.29391204962594 +51.01367212498503 21 -111.60149726720017 +106.87140729545983 31 0.0 0 @@ -5163,15 +5203,15 @@ LINE 8 0 10 -413.3565860037597 +287.52804294314717 20 -382.49999999999994 +363.12859270454044 30 0.0 11 -413.3565860037597 +287.52804294314717 21 -370.83333333333337 +354.3761975681802 31 0.0 0 @@ -5181,15 +5221,15 @@ LINE 8 0 10 -413.3565860037597 +287.52804294314717 20 -370.83333333333337 +354.3761975681802 30 0.0 11 -436.68991933709293 +305.0328332158677 21 -370.8333333333333 +354.3761975681802 31 0.0 0 @@ -5199,15 +5239,15 @@ LINE 8 0 10 -436.68991933709293 +305.0328332158677 20 -370.8333333333333 +354.3761975681802 30 0.0 11 -436.68991933709293 +305.0328332158677 21 -382.49999999999994 +363.12859270454044 31 0.0 0 @@ -5219,15 +5259,15 @@ DOTTED 8 0 10 -503.0232526704263 +399.04650534085283 20 -113.00000000000001 +108.00000000000001 30 0.0 11 -564.0232526704264 +460.04650534085283 21 -113.00000000000001 +108.00000000000001 31 0.0 0 @@ -5239,15 +5279,15 @@ DOTTED 8 0 10 -564.0232526704264 +460.04650534085283 20 -113.00000000000001 +108.00000000000001 30 0.0 11 -564.0232526704264 +460.04650534085283 21 -137.00000000000003 +132.0 31 0.0 0 @@ -5259,15 +5299,15 @@ DOTTED 8 0 10 -564.0232526704264 +460.04650534085283 20 -137.00000000000003 +132.0 30 0.0 11 -503.0232526704263 +399.04650534085283 21 -137.00000000000003 +132.0 31 0.0 0 @@ -5279,15 +5319,15 @@ DOTTED 8 0 10 -503.0232526704263 +399.04650534085283 20 -137.00000000000003 +132.0 30 0.0 11 -503.0232526704263 +399.04650534085283 21 -113.00000000000001 +108.00000000000001 31 0.0 0 @@ -5297,15 +5337,15 @@ LINE 8 0 10 -503.0232526704263 +399.04650534085283 20 -106.00000000000001 +101.00000000000001 30 0.0 11 -503.0232526704263 +399.04650534085283 21 -113.00000000000001 +108.00000000000001 31 0.0 0 @@ -5315,15 +5355,15 @@ LINE 8 0 10 -563.0232526704264 +459.0465053408528 20 -106.00000000000001 +101.00000000000001 30 0.0 11 -503.0232526704263 +399.04650534085283 21 -106.00000000000001 +101.00000000000001 31 0.0 0 @@ -5333,15 +5373,15 @@ LINE 8 0 10 -563.0232526704264 +459.0465053408528 20 -113.00000000000001 +108.00000000000001 30 0.0 11 -563.0232526704264 +459.0465053408528 21 -106.00000000000001 +101.00000000000001 31 0.0 0 @@ -5351,15 +5391,15 @@ LINE 8 0 10 -571.0232526704264 +467.04650534085283 20 -113.00000000000001 +108.00000000000001 30 0.0 11 -564.0232526704264 +460.04650534085283 21 -113.00000000000001 +108.00000000000001 31 0.0 0 @@ -5369,15 +5409,15 @@ LINE 8 0 10 -571.0232526704264 +467.04650534085283 20 -137.00000000000003 +132.0 30 0.0 11 -571.0232526704264 +467.04650534085283 21 -113.00000000000001 +108.00000000000001 31 0.0 0 @@ -5387,15 +5427,15 @@ LINE 8 0 10 -564.0232526704264 +460.04650534085283 20 -137.00000000000003 +132.0 30 0.0 11 -571.0232526704264 +467.04650534085283 21 -137.00000000000003 +132.0 31 0.0 0 @@ -5407,15 +5447,15 @@ DOTTED 8 0 10 -564.0232526704264 +460.04650534085283 20 -137.00000000000003 +132.0 30 0.0 11 -564.0232526704264 +460.04650534085283 21 -198.0 +193.00000000000003 31 0.0 0 @@ -5425,15 +5465,15 @@ LINE 8 0 10 -504.0232526704263 +400.0465053408528 20 -198.0 +193.00000000000003 30 0.0 11 -564.0232526704264 +460.04650534085283 21 -198.0 +193.00000000000003 31 0.0 0 @@ -5445,15 +5485,15 @@ DOTTED 8 0 10 -504.0232526704263 +400.0465053408528 20 -137.00000000000003 +132.0 30 0.0 11 -504.0232526704263 +400.0465053408528 21 -198.0 +193.00000000000003 31 0.0 0 @@ -5463,15 +5503,15 @@ LINE 8 0 10 -588.0232526704262 +484.04650534085283 20 -137.00000000000003 +132.0 30 0.0 11 -564.0232526704264 +460.04650534085283 21 -137.00000000000003 +132.0 31 0.0 0 @@ -5483,15 +5523,15 @@ DOTTED 8 0 10 -588.0232526704262 +484.04650534085283 20 -137.00000000000003 +132.0 30 0.0 11 -588.0232526704262 +484.04650534085283 21 -198.0 +193.00000000000003 31 0.0 0 @@ -5501,15 +5541,15 @@ LINE 8 0 10 -564.0232526704264 +460.04650534085283 20 -198.0 +193.00000000000003 30 0.0 11 -588.0232526704262 +484.04650534085283 21 -198.0 +193.00000000000003 31 0.0 0 @@ -5519,15 +5559,15 @@ LINE 8 0 10 -648.0232526704264 +544.0465053408527 20 -137.00000000000003 +132.0 30 0.0 11 -588.0232526704262 +484.04650534085283 21 -137.00000000000003 +132.0 31 0.0 0 @@ -5537,15 +5577,15 @@ LINE 8 0 10 -648.0232526704264 +544.0465053408527 20 -198.0 +193.00000000000003 30 0.0 11 -648.0232526704264 +544.0465053408527 21 -137.00000000000003 +132.0 31 0.0 0 @@ -5555,15 +5595,15 @@ LINE 8 0 10 -588.0232526704262 +484.04650534085283 20 -198.0 +193.00000000000003 30 0.0 11 -648.0232526704264 +544.0465053408527 21 -198.0 +193.00000000000003 31 0.0 0 @@ -5573,15 +5613,15 @@ LINE 8 0 10 -504.0232526704263 +400.0465053408528 20 -137.00000000000003 +132.0 30 0.0 11 -480.0232526704263 +376.04650534085283 21 -137.00000000000003 +132.0 31 0.0 0 @@ -5591,15 +5631,15 @@ LINE 8 0 10 -480.0232526704263 +376.04650534085283 20 -198.0 +193.00000000000003 30 0.0 11 -504.0232526704263 +400.0465053408528 21 -198.0 +193.00000000000003 31 0.0 0 @@ -5611,15 +5651,15 @@ DOTTED 8 0 10 -480.0232526704263 +376.04650534085283 20 -198.0 +193.00000000000003 30 0.0 11 -480.0232526704263 +376.04650534085283 21 -137.00000000000003 +132.0 31 0.0 0 @@ -5629,15 +5669,15 @@ LINE 8 0 10 -470.0232526704263 +366.04650534085283 20 -198.0 +193.00000000000003 30 0.0 11 -480.0232526704263 +376.04650534085283 21 -198.0 +193.00000000000003 31 0.0 0 @@ -5647,15 +5687,15 @@ LINE 8 0 10 -470.0232526704263 +366.04650534085283 20 -137.00000000000003 +132.0 30 0.0 11 -470.0232526704263 +366.04650534085283 21 -198.0 +193.00000000000003 31 0.0 0 @@ -5665,15 +5705,15 @@ LINE 8 0 10 -480.0232526704263 +376.04650534085283 20 -137.00000000000003 +132.0 30 0.0 11 -470.0232526704263 +366.04650534085283 21 -137.00000000000003 +132.0 31 0.0 0 @@ -5683,15 +5723,15 @@ LINE 8 0 10 -496.0232526704263 +392.04650534085283 20 -137.00000000000003 +132.0 30 0.0 11 -503.0232526704263 +399.04650534085283 21 -137.00000000000003 +132.0 31 0.0 0 @@ -5701,15 +5741,15 @@ LINE 8 0 10 -496.0232526704263 +392.04650534085283 20 -113.00000000000001 +108.00000000000001 30 0.0 11 -496.0232526704263 +392.04650534085283 21 -137.00000000000003 +132.0 31 0.0 0 @@ -5719,15 +5759,15 @@ LINE 8 0 10 -503.0232526704263 +399.04650534085283 20 -113.00000000000001 +108.00000000000001 30 0.0 11 -496.0232526704263 +392.04650534085283 21 -113.00000000000001 +108.00000000000001 31 0.0 0 @@ -5737,15 +5777,15 @@ LINE 8 0 10 -552.1141617613354 +448.1374144317619 20 -107.75000000000001 +102.75000000000001 30 0.0 11 -555.6141617613354 +451.6374144317619 21 -107.75000000000001 +102.75000000000001 31 0.0 0 @@ -5755,15 +5795,15 @@ LINE 8 0 10 -555.6141617613354 +451.6374144317619 20 -107.75000000000001 +102.75000000000001 30 0.0 11 -552.1141617613354 +448.1374144317619 21 -111.25000000000001 +106.25000000000001 31 0.0 0 @@ -5773,15 +5813,15 @@ LINE 8 0 10 -552.1141617613354 +448.1374144317619 20 -111.25000000000001 +106.25000000000001 30 0.0 11 -541.2050708522444 +437.228323522671 21 -111.25000000000001 +106.25000000000001 31 0.0 0 @@ -5791,15 +5831,15 @@ LINE 8 0 10 -541.2050708522444 +437.228323522671 20 -111.25000000000001 +106.25000000000001 30 0.0 11 -537.7050708522446 +433.72832352267096 21 -107.75000000000001 +102.75000000000001 31 0.0 0 @@ -5809,15 +5849,15 @@ LINE 8 0 10 -537.7050708522446 +433.72832352267096 20 -107.75000000000001 +102.75000000000001 30 0.0 11 -541.2050708522444 +437.228323522671 21 -107.75000000000001 +102.75000000000001 31 0.0 0 @@ -5827,15 +5867,15 @@ LINE 8 0 10 -524.8414344886082 +420.86468715903464 20 -107.75000000000001 +102.75000000000001 30 0.0 11 -528.3414344886082 +424.36468715903464 21 -107.75000000000001 +102.75000000000001 31 0.0 0 @@ -5845,15 +5885,15 @@ LINE 8 0 10 -528.3414344886082 +424.36468715903464 20 -107.75000000000001 +102.75000000000001 30 0.0 11 -524.8414344886082 +420.86468715903464 21 -111.25000000000001 +106.25000000000001 31 0.0 0 @@ -5863,15 +5903,15 @@ LINE 8 0 10 -524.8414344886082 +420.86468715903464 20 -111.25000000000001 +106.25000000000001 30 0.0 11 -513.9323435795172 +409.9555962499437 21 -111.25000000000001 +106.25000000000001 31 0.0 0 @@ -5881,15 +5921,15 @@ LINE 8 0 10 -513.9323435795172 +409.9555962499437 20 -111.25000000000001 +106.25000000000001 30 0.0 11 -510.43234357951724 +406.45559624994377 21 -107.75000000000001 +102.75000000000001 31 0.0 0 @@ -5899,15 +5939,15 @@ LINE 8 0 10 -510.43234357951724 +406.45559624994377 20 -107.75000000000001 +102.75000000000001 30 0.0 11 -513.9323435795172 +409.9555962499437 21 -107.75000000000001 +102.75000000000001 31 0.0 0 @@ -5917,15 +5957,15 @@ LINE 8 0 10 -569.2732526704264 +465.29650534085283 20 -129.0 +124.00000000000003 30 0.0 11 -565.7732526704262 +461.79650534085283 21 -129.0 +124.00000000000003 31 0.0 0 @@ -5935,15 +5975,15 @@ LINE 8 0 10 -565.7732526704262 +461.79650534085283 20 -129.0 +124.00000000000003 30 0.0 11 -565.7732526704262 +461.79650534085283 21 -121.00000000000001 +116.0 31 0.0 0 @@ -5953,15 +5993,15 @@ LINE 8 0 10 -565.7732526704262 +461.79650534085283 20 -121.00000000000001 +116.0 30 0.0 11 -569.2732526704264 +465.29650534085283 21 -121.00000000000001 +116.0 31 0.0 0 @@ -5971,15 +6011,15 @@ LINE 8 0 10 -511.5232526704263 +407.54650534085283 20 -188.50000000000003 +183.50000000000003 30 0.0 11 -511.5232526704263 +407.54650534085283 21 -170.5 +165.50000000000003 31 0.0 0 @@ -5989,15 +6029,15 @@ LINE 8 0 10 -511.5232526704263 +407.54650534085283 20 -170.5 +165.50000000000003 30 0.0 11 -546.5232526704264 +442.54650534085283 21 -170.5 +165.50000000000003 31 0.0 0 @@ -6007,15 +6047,15 @@ LINE 8 0 10 -546.5232526704264 +442.54650534085283 20 -170.5 +165.50000000000003 30 0.0 11 -546.5232526704264 +442.54650534085283 21 -188.50000000000003 +183.50000000000003 31 0.0 0 @@ -6025,15 +6065,15 @@ LINE 8 0 10 -546.5232526704264 +442.54650534085283 20 -188.50000000000003 +183.50000000000003 30 0.0 11 -511.5232526704263 +407.54650534085283 21 -188.50000000000003 +183.50000000000003 31 0.0 0 @@ -6043,15 +6083,15 @@ LINE 8 0 10 -564.5232526704264 +460.54650534085283 20 -150.25 +145.25 30 0.0 11 -564.5232526704264 +460.54650534085283 21 -147.25000000000003 +142.25000000000003 31 0.0 0 @@ -6061,15 +6101,15 @@ LINE 8 0 10 -564.5232526704264 +460.54650534085283 20 -147.25000000000003 +142.25000000000003 30 0.0 11 -567.5232526704262 +463.5465053408528 21 -147.25000000000003 +142.25000000000003 31 0.0 0 @@ -6079,15 +6119,15 @@ LINE 8 0 10 -567.5232526704262 +463.5465053408528 20 -147.25000000000003 +142.25000000000003 30 0.0 11 -567.5232526704262 +463.5465053408528 21 -150.25 +145.25 31 0.0 0 @@ -6097,15 +6137,15 @@ LINE 8 0 10 -567.5232526704262 +463.5465053408528 20 -150.25 +145.25 30 0.0 11 -564.5232526704264 +460.54650534085283 21 -150.25 +145.25 31 0.0 0 @@ -6115,15 +6155,15 @@ LINE 8 0 10 -585.5232526704262 +481.5465053408529 20 -149.25000000000003 +144.25000000000003 30 0.0 11 -585.5232526704262 +481.5465053408529 21 -148.25 +143.25 31 0.0 0 @@ -6133,15 +6173,15 @@ LINE 8 0 10 -585.5232526704262 +481.5465053408529 20 -148.25 +143.25 30 0.0 11 -586.5232526704262 +482.54650534085283 21 -148.25 +143.25 31 0.0 0 @@ -6151,15 +6191,15 @@ LINE 8 0 10 -586.5232526704262 +482.54650534085283 20 -148.25 +143.25 30 0.0 11 -586.5232526704262 +482.54650534085283 21 -149.25000000000003 +144.25000000000003 31 0.0 0 @@ -6169,15 +6209,15 @@ LINE 8 0 10 -586.5232526704262 +482.54650534085283 20 -149.25000000000003 +144.25000000000003 30 0.0 11 -585.5232526704262 +481.5465053408529 21 -149.25000000000003 +144.25000000000003 31 0.0 0 @@ -6187,15 +6227,15 @@ LINE 8 0 10 -565.5232526704264 +461.54650534085283 20 -151.75000000000003 +146.75000000000003 30 0.0 11 -565.5232526704264 +461.54650534085283 21 -150.75000000000003 +145.75 31 0.0 0 @@ -6205,15 +6245,15 @@ LINE 8 0 10 -565.5232526704264 +461.54650534085283 20 -150.75000000000003 +145.75 30 0.0 11 -566.5232526704264 +462.54650534085283 21 -150.75000000000003 +145.75 31 0.0 0 @@ -6223,15 +6263,15 @@ LINE 8 0 10 -566.5232526704264 +462.54650534085283 20 -150.75000000000003 +145.75 30 0.0 11 -566.5232526704264 +462.54650534085283 21 -151.75000000000003 +146.75000000000003 31 0.0 0 @@ -6241,15 +6281,15 @@ LINE 8 0 10 -566.5232526704264 +462.54650534085283 20 -151.75000000000003 +146.75000000000003 30 0.0 11 -565.5232526704264 +461.54650534085283 21 -151.75000000000003 +146.75000000000003 31 0.0 0 @@ -6259,15 +6299,15 @@ LINE 8 0 10 -585.5232526704262 +481.5465053408529 20 -151.75000000000003 +146.75000000000003 30 0.0 11 -585.5232526704262 +481.5465053408529 21 -150.75000000000003 +145.75 31 0.0 0 @@ -6277,15 +6317,15 @@ LINE 8 0 10 -585.5232526704262 +481.5465053408529 20 -150.75000000000003 +145.75 30 0.0 11 -586.5232526704262 +482.54650534085283 21 -150.75000000000003 +145.75 31 0.0 0 @@ -6295,15 +6335,15 @@ LINE 8 0 10 -586.5232526704262 +482.54650534085283 20 -150.75000000000003 +145.75 30 0.0 11 -586.5232526704262 +482.54650534085283 21 -151.75000000000003 +146.75000000000003 31 0.0 0 @@ -6313,15 +6353,15 @@ LINE 8 0 10 -586.5232526704262 +482.54650534085283 20 -151.75000000000003 +146.75000000000003 30 0.0 11 -585.5232526704262 +481.5465053408529 21 -151.75000000000003 +146.75000000000003 31 0.0 0 @@ -6331,15 +6371,15 @@ LINE 8 0 10 -565.5232526704264 +461.54650534085283 20 -154.25000000000003 +149.25000000000003 30 0.0 11 -565.5232526704264 +461.54650534085283 21 -153.25000000000003 +148.25 31 0.0 0 @@ -6349,15 +6389,15 @@ LINE 8 0 10 -565.5232526704264 +461.54650534085283 20 -153.25000000000003 +148.25 30 0.0 11 -566.5232526704264 +462.54650534085283 21 -153.25000000000003 +148.25 31 0.0 0 @@ -6367,15 +6407,15 @@ LINE 8 0 10 -566.5232526704264 +462.54650534085283 20 -153.25000000000003 +148.25 30 0.0 11 -566.5232526704264 +462.54650534085283 21 -154.25000000000003 +149.25000000000003 31 0.0 0 @@ -6385,15 +6425,15 @@ LINE 8 0 10 -566.5232526704264 +462.54650534085283 20 -154.25000000000003 +149.25000000000003 30 0.0 11 -565.5232526704264 +461.54650534085283 21 -154.25000000000003 +149.25000000000003 31 0.0 0 @@ -6403,15 +6443,15 @@ LINE 8 0 10 -585.5232526704262 +481.5465053408529 20 -154.25000000000003 +149.25000000000003 30 0.0 11 -585.5232526704262 +481.5465053408529 21 -153.25000000000003 +148.25 31 0.0 0 @@ -6421,15 +6461,15 @@ LINE 8 0 10 -585.5232526704262 +481.5465053408529 20 -153.25000000000003 +148.25 30 0.0 11 -586.5232526704262 +482.54650534085283 21 -153.25000000000003 +148.25 31 0.0 0 @@ -6439,15 +6479,15 @@ LINE 8 0 10 -586.5232526704262 +482.54650534085283 20 -153.25000000000003 +148.25 30 0.0 11 -586.5232526704262 +482.54650534085283 21 -154.25000000000003 +149.25000000000003 31 0.0 0 @@ -6457,15 +6497,15 @@ LINE 8 0 10 -586.5232526704262 +482.54650534085283 20 -154.25000000000003 +149.25000000000003 30 0.0 11 -585.5232526704262 +481.5465053408529 21 -154.25000000000003 +149.25000000000003 31 0.0 0 @@ -6475,15 +6515,15 @@ LINE 8 0 10 -565.5232526704264 +461.54650534085283 20 -156.75 +151.75000000000003 30 0.0 11 -565.5232526704264 +461.54650534085283 21 -155.75000000000003 +150.75000000000003 31 0.0 0 @@ -6493,15 +6533,15 @@ LINE 8 0 10 -565.5232526704264 +461.54650534085283 20 -155.75000000000003 +150.75000000000003 30 0.0 11 -566.5232526704264 +462.54650534085283 21 -155.75000000000003 +150.75000000000003 31 0.0 0 @@ -6511,15 +6551,15 @@ LINE 8 0 10 -566.5232526704264 +462.54650534085283 20 -155.75000000000003 +150.75000000000003 30 0.0 11 -566.5232526704264 +462.54650534085283 21 -156.75 +151.75000000000003 31 0.0 0 @@ -6529,15 +6569,15 @@ LINE 8 0 10 -566.5232526704264 +462.54650534085283 20 -156.75 +151.75000000000003 30 0.0 11 -565.5232526704264 +461.54650534085283 21 -156.75 +151.75000000000003 31 0.0 0 @@ -6547,15 +6587,15 @@ LINE 8 0 10 -585.5232526704262 +481.5465053408529 20 -156.75 +151.75000000000003 30 0.0 11 -585.5232526704262 +481.5465053408529 21 -155.75000000000003 +150.75000000000003 31 0.0 0 @@ -6565,15 +6605,15 @@ LINE 8 0 10 -585.5232526704262 +481.5465053408529 20 -155.75000000000003 +150.75000000000003 30 0.0 11 -586.5232526704262 +482.54650534085283 21 -155.75000000000003 +150.75000000000003 31 0.0 0 @@ -6583,15 +6623,15 @@ LINE 8 0 10 -586.5232526704262 +482.54650534085283 20 -155.75000000000003 +150.75000000000003 30 0.0 11 -586.5232526704262 +482.54650534085283 21 -156.75 +151.75000000000003 31 0.0 0 @@ -6601,15 +6641,15 @@ LINE 8 0 10 -586.5232526704262 +482.54650534085283 20 -156.75 +151.75000000000003 30 0.0 11 -585.5232526704262 +481.5465053408529 21 -156.75 +151.75000000000003 31 0.0 0 @@ -6619,15 +6659,15 @@ LINE 8 0 10 -565.5232526704264 +461.54650534085283 20 -159.25 +154.25000000000003 30 0.0 11 -565.5232526704264 +461.54650534085283 21 -158.25000000000003 +153.25000000000003 31 0.0 0 @@ -6637,15 +6677,15 @@ LINE 8 0 10 -565.5232526704264 +461.54650534085283 20 -158.25000000000003 +153.25000000000003 30 0.0 11 -566.5232526704264 +462.54650534085283 21 -158.25000000000003 +153.25000000000003 31 0.0 0 @@ -6655,15 +6695,15 @@ LINE 8 0 10 -566.5232526704264 +462.54650534085283 20 -158.25000000000003 +153.25000000000003 30 0.0 11 -566.5232526704264 +462.54650534085283 21 -159.25 +154.25000000000003 31 0.0 0 @@ -6673,15 +6713,15 @@ LINE 8 0 10 -566.5232526704264 +462.54650534085283 20 -159.25 +154.25000000000003 30 0.0 11 -565.5232526704264 +461.54650534085283 21 -159.25 +154.25000000000003 31 0.0 0 @@ -6691,15 +6731,15 @@ LINE 8 0 10 -585.5232526704262 +481.5465053408529 20 -159.25 +154.25000000000003 30 0.0 11 -585.5232526704262 +481.5465053408529 21 -158.25000000000003 +153.25000000000003 31 0.0 0 @@ -6709,15 +6749,15 @@ LINE 8 0 10 -585.5232526704262 +481.5465053408529 20 -158.25000000000003 +153.25000000000003 30 0.0 11 -586.5232526704262 +482.54650534085283 21 -158.25000000000003 +153.25000000000003 31 0.0 0 @@ -6727,15 +6767,15 @@ LINE 8 0 10 -586.5232526704262 +482.54650534085283 20 -158.25000000000003 +153.25000000000003 30 0.0 11 -586.5232526704262 +482.54650534085283 21 -159.25 +154.25000000000003 31 0.0 0 @@ -6745,15 +6785,15 @@ LINE 8 0 10 -586.5232526704262 +482.54650534085283 20 -159.25 +154.25000000000003 30 0.0 11 -585.5232526704262 +481.5465053408529 21 -159.25 +154.25000000000003 31 0.0 0 @@ -6763,15 +6803,15 @@ LINE 8 0 10 -565.5232526704264 +461.54650534085283 20 -161.75 +156.75 30 0.0 11 -565.5232526704264 +461.54650534085283 21 -160.75000000000003 +155.75000000000003 31 0.0 0 @@ -6781,15 +6821,15 @@ LINE 8 0 10 -565.5232526704264 +461.54650534085283 20 -160.75000000000003 +155.75000000000003 30 0.0 11 -566.5232526704264 +462.54650534085283 21 -160.75000000000003 +155.75000000000003 31 0.0 0 @@ -6799,15 +6839,15 @@ LINE 8 0 10 -566.5232526704264 +462.54650534085283 20 -160.75000000000003 +155.75000000000003 30 0.0 11 -566.5232526704264 +462.54650534085283 21 -161.75 +156.75 31 0.0 0 @@ -6817,15 +6857,15 @@ LINE 8 0 10 -566.5232526704264 +462.54650534085283 20 -161.75 +156.75 30 0.0 11 -565.5232526704264 +461.54650534085283 21 -161.75 +156.75 31 0.0 0 @@ -6835,15 +6875,15 @@ LINE 8 0 10 -585.5232526704262 +481.5465053408529 20 -161.75 +156.75 30 0.0 11 -585.5232526704262 +481.5465053408529 21 -160.75000000000003 +155.75000000000003 31 0.0 0 @@ -6853,15 +6893,15 @@ LINE 8 0 10 -585.5232526704262 +481.5465053408529 20 -160.75000000000003 +155.75000000000003 30 0.0 11 -586.5232526704262 +482.54650534085283 21 -160.75000000000003 +155.75000000000003 31 0.0 0 @@ -6871,15 +6911,15 @@ LINE 8 0 10 -586.5232526704262 +482.54650534085283 20 -160.75000000000003 +155.75000000000003 30 0.0 11 -586.5232526704262 +482.54650534085283 21 -161.75 +156.75 31 0.0 0 @@ -6889,15 +6929,15 @@ LINE 8 0 10 -586.5232526704262 +482.54650534085283 20 -161.75 +156.75 30 0.0 11 -585.5232526704262 +481.5465053408529 21 -161.75 +156.75 31 0.0 0 @@ -6907,15 +6947,15 @@ LINE 8 0 10 -565.5232526704264 +461.54650534085283 20 -164.25000000000003 +159.25 30 0.0 11 -565.5232526704264 +461.54650534085283 21 -163.25000000000003 +158.25000000000003 31 0.0 0 @@ -6925,13 +6965,301 @@ LINE 8 0 10 -565.5232526704264 +461.54650534085283 20 -163.25000000000003 +158.25000000000003 + 30 +0.0 + 11 +462.54650534085283 + 21 +158.25000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +462.54650534085283 + 20 +158.25000000000003 + 30 +0.0 + 11 +462.54650534085283 + 21 +159.25 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +462.54650534085283 + 20 +159.25 + 30 +0.0 + 11 +461.54650534085283 + 21 +159.25 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +481.5465053408529 + 20 +159.25 + 30 +0.0 + 11 +481.5465053408529 + 21 +158.25000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +481.5465053408529 + 20 +158.25000000000003 + 30 +0.0 + 11 +482.54650534085283 + 21 +158.25000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +482.54650534085283 + 20 +158.25000000000003 + 30 +0.0 + 11 +482.54650534085283 + 21 +159.25 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +482.54650534085283 + 20 +159.25 + 30 +0.0 + 11 +481.5465053408529 + 21 +159.25 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +461.54650534085283 + 20 +161.75 + 30 +0.0 + 11 +461.54650534085283 + 21 +160.75000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +461.54650534085283 + 20 +160.75000000000003 + 30 +0.0 + 11 +462.54650534085283 + 21 +160.75000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +462.54650534085283 + 20 +160.75000000000003 30 0.0 11 -566.5232526704264 +462.54650534085283 + 21 +161.75 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +462.54650534085283 + 20 +161.75 + 30 +0.0 + 11 +461.54650534085283 + 21 +161.75 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +481.5465053408529 + 20 +161.75 + 30 +0.0 + 11 +481.5465053408529 + 21 +160.75000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +481.5465053408529 + 20 +160.75000000000003 + 30 +0.0 + 11 +482.54650534085283 + 21 +160.75000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +482.54650534085283 + 20 +160.75000000000003 + 30 +0.0 + 11 +482.54650534085283 + 21 +161.75 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +482.54650534085283 + 20 +161.75 + 30 +0.0 + 11 +481.5465053408529 + 21 +161.75 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +461.54650534085283 + 20 +164.25000000000003 + 30 +0.0 + 11 +461.54650534085283 + 21 +163.25000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +461.54650534085283 + 20 +163.25000000000003 + 30 +0.0 + 11 +462.54650534085283 21 163.25000000000003 31 @@ -6943,13 +7271,13 @@ LINE 8 0 10 -566.5232526704264 +462.54650534085283 20 163.25000000000003 30 0.0 11 -566.5232526704264 +462.54650534085283 21 164.25000000000003 31 @@ -6961,13 +7289,13 @@ LINE 8 0 10 -566.5232526704264 +462.54650534085283 20 164.25000000000003 30 0.0 11 -565.5232526704264 +461.54650534085283 21 164.25000000000003 31 @@ -6979,13 +7307,13 @@ LINE 8 0 10 -585.5232526704262 +481.5465053408529 20 164.25000000000003 30 0.0 11 -585.5232526704262 +481.5465053408529 21 163.25000000000003 31 @@ -6997,13 +7325,13 @@ LINE 8 0 10 -585.5232526704262 +481.5465053408529 20 163.25000000000003 30 0.0 11 -586.5232526704262 +482.54650534085283 21 163.25000000000003 31 @@ -7015,13 +7343,13 @@ LINE 8 0 10 -586.5232526704262 +482.54650534085283 20 163.25000000000003 30 0.0 11 -586.5232526704262 +482.54650534085283 21 164.25000000000003 31 @@ -7033,13 +7361,13 @@ LINE 8 0 10 -586.5232526704262 +482.54650534085283 20 164.25000000000003 30 0.0 11 -585.5232526704262 +481.5465053408529 21 164.25000000000003 31 @@ -7051,13 +7379,13 @@ LINE 8 0 10 -565.5232526704264 +461.54650534085283 20 166.75000000000003 30 0.0 11 -565.5232526704264 +461.54650534085283 21 165.75 31 @@ -7069,13 +7397,13 @@ LINE 8 0 10 -565.5232526704264 +461.54650534085283 20 165.75 30 0.0 11 -566.5232526704264 +462.54650534085283 21 165.75 31 @@ -7087,13 +7415,13 @@ LINE 8 0 10 -566.5232526704264 +462.54650534085283 20 165.75 30 0.0 11 -566.5232526704264 +462.54650534085283 21 166.75000000000003 31 @@ -7105,13 +7433,13 @@ LINE 8 0 10 -566.5232526704264 +462.54650534085283 20 166.75000000000003 30 0.0 11 -565.5232526704264 +461.54650534085283 21 166.75000000000003 31 @@ -7123,13 +7451,13 @@ LINE 8 0 10 -585.5232526704262 +481.5465053408529 20 166.75000000000003 30 0.0 11 -585.5232526704262 +481.5465053408529 21 165.75 31 @@ -7141,13 +7469,13 @@ LINE 8 0 10 -585.5232526704262 +481.5465053408529 20 165.75 30 0.0 11 -586.5232526704262 +482.54650534085283 21 165.75 31 @@ -7159,13 +7487,13 @@ LINE 8 0 10 -586.5232526704262 +482.54650534085283 20 165.75 30 0.0 11 -586.5232526704262 +482.54650534085283 21 166.75000000000003 31 @@ -7177,13 +7505,13 @@ LINE 8 0 10 -586.5232526704262 +482.54650534085283 20 166.75000000000003 30 0.0 11 -585.5232526704262 +481.5465053408529 21 166.75000000000003 31 @@ -7195,13 +7523,13 @@ LINE 8 0 10 -565.5232526704264 +461.54650534085283 20 169.25000000000003 30 0.0 11 -565.5232526704264 +461.54650534085283 21 168.25 31 @@ -7213,13 +7541,13 @@ LINE 8 0 10 -565.5232526704264 +461.54650534085283 20 168.25 30 0.0 11 -566.5232526704264 +462.54650534085283 21 168.25 31 @@ -7231,13 +7559,13 @@ LINE 8 0 10 -566.5232526704264 +462.54650534085283 20 168.25 30 0.0 11 -566.5232526704264 +462.54650534085283 21 169.25000000000003 31 @@ -7249,13 +7577,13 @@ LINE 8 0 10 -566.5232526704264 +462.54650534085283 20 169.25000000000003 30 0.0 11 -565.5232526704264 +461.54650534085283 21 169.25000000000003 31 @@ -7267,13 +7595,13 @@ LINE 8 0 10 -585.5232526704262 +481.5465053408529 20 169.25000000000003 30 0.0 11 -585.5232526704262 +481.5465053408529 21 168.25 31 @@ -7285,13 +7613,13 @@ LINE 8 0 10 -585.5232526704262 +481.5465053408529 20 168.25 30 0.0 11 -586.5232526704262 +482.54650534085283 21 168.25 31 @@ -7303,13 +7631,13 @@ LINE 8 0 10 -586.5232526704262 +482.54650534085283 20 168.25 30 0.0 11 -586.5232526704262 +482.54650534085283 21 169.25000000000003 31 @@ -7321,13 +7649,13 @@ LINE 8 0 10 -586.5232526704262 +482.54650534085283 20 169.25000000000003 30 0.0 11 -585.5232526704262 +481.5465053408529 21 169.25000000000003 31 @@ -7339,13 +7667,13 @@ LINE 8 0 10 -565.5232526704264 +461.54650534085283 20 171.75000000000003 30 0.0 11 -565.5232526704264 +461.54650534085283 21 170.75 31 @@ -7357,13 +7685,13 @@ LINE 8 0 10 -565.5232526704264 +461.54650534085283 20 170.75 30 0.0 11 -566.5232526704264 +462.54650534085283 21 170.75 31 @@ -7375,13 +7703,13 @@ LINE 8 0 10 -566.5232526704264 +462.54650534085283 20 170.75 30 0.0 11 -566.5232526704264 +462.54650534085283 21 171.75000000000003 31 @@ -7393,13 +7721,13 @@ LINE 8 0 10 -566.5232526704264 +462.54650534085283 20 171.75000000000003 30 0.0 11 -565.5232526704264 +461.54650534085283 21 171.75000000000003 31 @@ -7411,13 +7739,13 @@ LINE 8 0 10 -585.5232526704262 +481.5465053408529 20 171.75000000000003 30 0.0 11 -585.5232526704262 +481.5465053408529 21 170.75 31 @@ -7429,13 +7757,13 @@ LINE 8 0 10 -585.5232526704262 +481.5465053408529 20 170.75 30 0.0 11 -586.5232526704262 +482.54650534085283 21 170.75 31 @@ -7447,13 +7775,13 @@ LINE 8 0 10 -586.5232526704262 +482.54650534085283 20 170.75 30 0.0 11 -586.5232526704262 +482.54650534085283 21 171.75000000000003 31 @@ -7465,13 +7793,13 @@ LINE 8 0 10 -586.5232526704262 +482.54650534085283 20 171.75000000000003 30 0.0 11 -585.5232526704262 +481.5465053408529 21 171.75000000000003 31 @@ -7483,13 +7811,13 @@ LINE 8 0 10 -565.5232526704264 +461.54650534085283 20 174.25000000000003 30 0.0 11 -565.5232526704264 +461.54650534085283 21 173.25000000000003 31 @@ -7501,13 +7829,13 @@ LINE 8 0 10 -565.5232526704264 +461.54650534085283 20 173.25000000000003 30 0.0 11 -566.5232526704264 +462.54650534085283 21 173.25000000000003 31 @@ -7519,13 +7847,13 @@ LINE 8 0 10 -566.5232526704264 +462.54650534085283 20 173.25000000000003 30 0.0 11 -566.5232526704264 +462.54650534085283 21 174.25000000000003 31 @@ -7537,13 +7865,13 @@ LINE 8 0 10 -566.5232526704264 +462.54650534085283 20 174.25000000000003 30 0.0 11 -565.5232526704264 +461.54650534085283 21 174.25000000000003 31 @@ -7555,13 +7883,13 @@ LINE 8 0 10 -585.5232526704262 +481.5465053408529 20 174.25000000000003 30 0.0 11 -585.5232526704262 +481.5465053408529 21 173.25000000000003 31 @@ -7573,13 +7901,13 @@ LINE 8 0 10 -585.5232526704262 +481.5465053408529 20 173.25000000000003 30 0.0 11 -586.5232526704262 +482.54650534085283 21 173.25000000000003 31 @@ -7591,13 +7919,13 @@ LINE 8 0 10 -586.5232526704262 +482.54650534085283 20 173.25000000000003 30 0.0 11 -586.5232526704262 +482.54650534085283 21 174.25000000000003 31 @@ -7609,13 +7937,13 @@ LINE 8 0 10 -586.5232526704262 +482.54650534085283 20 174.25000000000003 30 0.0 11 -585.5232526704262 +481.5465053408529 21 174.25000000000003 31 @@ -7627,13 +7955,13 @@ LINE 8 0 10 -565.5232526704264 +461.54650534085283 20 176.75000000000003 30 0.0 11 -565.5232526704264 +461.54650534085283 21 175.75000000000003 31 @@ -7645,13 +7973,13 @@ LINE 8 0 10 -565.5232526704264 +461.54650534085283 20 175.75000000000003 30 0.0 11 -566.5232526704264 +462.54650534085283 21 175.75000000000003 31 @@ -7663,13 +7991,13 @@ LINE 8 0 10 -566.5232526704264 +462.54650534085283 20 175.75000000000003 30 0.0 11 -566.5232526704264 +462.54650534085283 21 176.75000000000003 31 @@ -7681,13 +8009,13 @@ LINE 8 0 10 -566.5232526704264 +462.54650534085283 20 176.75000000000003 30 0.0 11 -565.5232526704264 +461.54650534085283 21 176.75000000000003 31 @@ -7699,13 +8027,13 @@ LINE 8 0 10 -585.5232526704262 +481.5465053408529 20 176.75000000000003 30 0.0 11 -585.5232526704262 +481.5465053408529 21 175.75000000000003 31 @@ -7717,13 +8045,13 @@ LINE 8 0 10 -585.5232526704262 +481.5465053408529 20 175.75000000000003 30 0.0 11 -586.5232526704262 +482.54650534085283 21 175.75000000000003 31 @@ -7735,13 +8063,13 @@ LINE 8 0 10 -586.5232526704262 +482.54650534085283 20 175.75000000000003 30 0.0 11 -586.5232526704262 +482.54650534085283 21 176.75000000000003 31 @@ -7753,13 +8081,13 @@ LINE 8 0 10 -586.5232526704262 +482.54650534085283 20 176.75000000000003 30 0.0 11 -585.5232526704262 +481.5465053408529 21 176.75000000000003 31 @@ -7771,13 +8099,13 @@ LINE 8 0 10 -565.5232526704264 +461.54650534085283 20 179.25000000000003 30 0.0 11 -565.5232526704264 +461.54650534085283 21 178.25000000000003 31 @@ -7789,13 +8117,13 @@ LINE 8 0 10 -565.5232526704264 +461.54650534085283 20 178.25000000000003 30 0.0 11 -566.5232526704264 +462.54650534085283 21 178.25000000000003 31 @@ -7807,13 +8135,13 @@ LINE 8 0 10 -566.5232526704264 +462.54650534085283 20 178.25000000000003 30 0.0 11 -566.5232526704264 +462.54650534085283 21 179.25000000000003 31 @@ -7825,13 +8153,13 @@ LINE 8 0 10 -566.5232526704264 +462.54650534085283 20 179.25000000000003 30 0.0 11 -565.5232526704264 +461.54650534085283 21 179.25000000000003 31 @@ -7843,13 +8171,13 @@ LINE 8 0 10 -585.5232526704262 +481.5465053408529 20 179.25000000000003 30 0.0 11 -585.5232526704262 +481.5465053408529 21 178.25000000000003 31 @@ -7861,13 +8189,13 @@ LINE 8 0 10 -585.5232526704262 +481.5465053408529 20 178.25000000000003 30 0.0 11 -586.5232526704262 +482.54650534085283 21 178.25000000000003 31 @@ -7879,13 +8207,13 @@ LINE 8 0 10 -586.5232526704262 +482.54650534085283 20 178.25000000000003 30 0.0 11 -586.5232526704262 +482.54650534085283 21 179.25000000000003 31 @@ -7897,13 +8225,13 @@ LINE 8 0 10 -586.5232526704262 +482.54650534085283 20 179.25000000000003 30 0.0 11 -585.5232526704262 +481.5465053408529 21 179.25000000000003 31 @@ -7915,13 +8243,13 @@ LINE 8 0 10 -565.5232526704264 +461.54650534085283 20 181.75 30 0.0 11 -565.5232526704264 +461.54650534085283 21 180.75000000000003 31 @@ -7933,13 +8261,13 @@ LINE 8 0 10 -565.5232526704264 +461.54650534085283 20 180.75000000000003 30 0.0 11 -566.5232526704264 +462.54650534085283 21 180.75000000000003 31 @@ -7951,13 +8279,13 @@ LINE 8 0 10 -566.5232526704264 +462.54650534085283 20 180.75000000000003 30 0.0 11 -566.5232526704264 +462.54650534085283 21 181.75 31 @@ -7969,13 +8297,13 @@ LINE 8 0 10 -566.5232526704264 +462.54650534085283 20 181.75 30 0.0 11 -565.5232526704264 +461.54650534085283 21 181.75 31 @@ -7987,15 +8315,15 @@ LINE 8 0 10 -585.5232526704262 +480.54650534085283 20 -181.75 +182.75000000000003 30 0.0 11 -585.5232526704262 +480.54650534085283 21 -180.75000000000003 +179.75 31 0.0 0 @@ -8005,15 +8333,15 @@ LINE 8 0 10 -585.5232526704262 +480.54650534085283 20 -180.75000000000003 +179.75 30 0.0 11 -586.5232526704262 +483.54650534085283 21 -180.75000000000003 +179.75 31 0.0 0 @@ -8023,15 +8351,15 @@ LINE 8 0 10 -586.5232526704262 +483.54650534085283 20 -180.75000000000003 +179.75 30 0.0 11 -586.5232526704262 +483.54650534085283 21 -181.75 +182.75000000000003 31 0.0 0 @@ -8041,15 +8369,15 @@ LINE 8 0 10 -586.5232526704262 +483.54650534085283 20 -181.75 +182.75000000000003 30 0.0 11 -585.5232526704262 +480.54650534085283 21 -181.75 +182.75000000000003 31 0.0 0 @@ -8059,15 +8387,15 @@ LINE 8 0 10 -565.5232526704264 +476.29650534085283 20 -184.25 +139.75000000000003 30 0.0 11 -565.5232526704264 +467.79650534085283 21 -183.25000000000003 +139.75000000000003 31 0.0 0 @@ -8077,15 +8405,15 @@ LINE 8 0 10 -565.5232526704264 +467.79650534085283 20 -183.25000000000003 +139.75000000000003 30 0.0 11 -566.5232526704264 +467.79650534085283 21 -183.25000000000003 +139.25 31 0.0 0 @@ -8095,15 +8423,15 @@ LINE 8 0 10 -566.5232526704264 +467.79650534085283 20 -183.25000000000003 +139.25 30 0.0 11 -566.5232526704264 +476.29650534085283 21 -184.25 +139.25 31 0.0 0 @@ -8113,15 +8441,15 @@ LINE 8 0 10 -566.5232526704264 +476.29650534085283 20 -184.25 +139.25 30 0.0 11 -565.5232526704264 +476.29650534085283 21 -184.25 +139.75000000000003 31 0.0 0 @@ -8131,15 +8459,15 @@ LINE 8 0 10 -585.5232526704262 +467.79650534085283 20 -184.25 +187.50000000000003 30 0.0 11 -585.5232526704262 +476.29650534085283 21 -183.25000000000003 +187.50000000000003 31 0.0 0 @@ -8149,15 +8477,15 @@ LINE 8 0 10 -585.5232526704262 +476.29650534085283 20 -183.25000000000003 +187.50000000000003 30 0.0 11 -586.5232526704262 +476.29650534085283 21 -183.25000000000003 +188.00000000000003 31 0.0 0 @@ -8167,15 +8495,15 @@ LINE 8 0 10 -586.5232526704262 +476.29650534085283 20 -183.25000000000003 +188.00000000000003 30 0.0 11 -586.5232526704262 +467.79650534085283 21 -184.25 +188.00000000000003 31 0.0 0 @@ -8185,15 +8513,15 @@ LINE 8 0 10 -586.5232526704262 +467.79650534085283 20 -184.25 +188.00000000000003 30 0.0 11 -585.5232526704262 +467.79650534085283 21 -184.25 +187.50000000000003 31 0.0 0 @@ -8203,15 +8531,15 @@ LINE 8 0 10 -565.5232526704264 +499.04650534085283 20 -186.75 +183.00000000000003 30 0.0 11 -565.5232526704264 +499.04650534085283 21 -185.75000000000003 +170.00000000000003 31 0.0 0 @@ -8221,15 +8549,15 @@ LINE 8 0 10 -565.5232526704264 +499.04650534085283 20 -185.75000000000003 +170.00000000000003 30 0.0 11 -566.5232526704264 +529.0465053408527 21 -185.75000000000003 +170.00000000000003 31 0.0 0 @@ -8239,15 +8567,15 @@ LINE 8 0 10 -566.5232526704264 +529.0465053408527 20 -185.75000000000003 +170.00000000000003 30 0.0 11 -566.5232526704264 +529.0465053408527 21 -186.75 +183.00000000000003 31 0.0 0 @@ -8257,15 +8585,15 @@ LINE 8 0 10 -566.5232526704264 +529.0465053408527 20 -186.75 +183.00000000000003 30 0.0 11 -565.5232526704264 +499.04650534085283 21 -186.75 +183.00000000000003 31 0.0 0 @@ -8275,15 +8603,15 @@ LINE 8 0 10 -584.5232526704264 +506.11468715903464 20 -187.75000000000003 +137.50000000000003 30 0.0 11 -584.5232526704264 +494.70559624994377 21 -184.75000000000003 +137.50000000000003 31 0.0 0 @@ -8293,15 +8621,15 @@ LINE 8 0 10 -584.5232526704264 +494.70559624994377 20 -184.75000000000003 +137.50000000000003 30 0.0 11 -587.5232526704262 +494.70559624994377 21 -184.75000000000003 +137.00000000000003 31 0.0 0 @@ -8311,15 +8639,15 @@ LINE 8 0 10 -587.5232526704262 +494.70559624994377 20 -184.75000000000003 +137.00000000000003 30 0.0 11 -587.5232526704262 +506.11468715903464 21 -187.75000000000003 +137.00000000000003 31 0.0 0 @@ -8329,15 +8657,15 @@ LINE 8 0 10 -587.5232526704262 +506.11468715903464 20 -187.75000000000003 +137.00000000000003 30 0.0 11 -584.5232526704264 +506.11468715903464 21 -187.75000000000003 +137.50000000000003 31 0.0 0 @@ -8347,15 +8675,15 @@ LINE 8 0 10 -580.2732526704264 +533.387414431762 20 -144.75000000000003 +137.50000000000003 30 0.0 11 -571.7732526704262 +521.978323522671 21 -144.75000000000003 +137.50000000000003 31 0.0 0 @@ -8365,15 +8693,15 @@ LINE 8 0 10 -571.7732526704262 +521.978323522671 20 -144.75000000000003 +137.50000000000003 30 0.0 11 -571.7732526704262 +521.978323522671 21 -144.25000000000003 +137.00000000000003 31 0.0 0 @@ -8383,15 +8711,15 @@ LINE 8 0 10 -571.7732526704262 +521.978323522671 20 -144.25000000000003 +137.00000000000003 30 0.0 11 -580.2732526704264 +533.387414431762 21 -144.25000000000003 +137.00000000000003 31 0.0 0 @@ -8401,15 +8729,15 @@ LINE 8 0 10 -580.2732526704264 +533.387414431762 20 -144.25000000000003 +137.00000000000003 30 0.0 11 -580.2732526704264 +533.387414431762 21 -144.75000000000003 +137.50000000000003 31 0.0 0 @@ -8419,15 +8747,15 @@ LINE 8 0 10 -571.7732526704262 +536.2965053408528 20 -192.50000000000003 +154.4318181818182 30 0.0 11 -580.2732526704264 +536.2965053408528 21 -192.50000000000003 +142.84090909090912 31 0.0 0 @@ -8437,15 +8765,15 @@ LINE 8 0 10 -580.2732526704264 +536.2965053408528 20 -192.50000000000003 +142.84090909090912 30 0.0 11 -580.2732526704264 +536.7965053408527 21 -193.00000000000003 +142.84090909090912 31 0.0 0 @@ -8455,15 +8783,15 @@ LINE 8 0 10 -580.2732526704264 +536.7965053408527 20 -193.00000000000003 +142.84090909090912 30 0.0 11 -571.7732526704262 +536.7965053408527 21 -193.00000000000003 +154.4318181818182 31 0.0 0 @@ -8473,15 +8801,15 @@ LINE 8 0 10 -571.7732526704262 +536.7965053408527 20 -193.00000000000003 +154.4318181818182 30 0.0 11 -571.7732526704262 +536.2965053408528 21 -192.50000000000003 +154.4318181818182 31 0.0 0 @@ -8491,15 +8819,15 @@ LINE 8 0 10 -603.0232526704264 +536.2965053408528 20 -188.00000000000003 +182.15909090909093 30 0.0 11 -603.0232526704264 +536.2965053408528 21 -175.0 +170.5681818181818 31 0.0 0 @@ -8509,15 +8837,15 @@ LINE 8 0 10 -603.0232526704264 +536.2965053408528 20 -175.0 +170.5681818181818 30 0.0 11 -633.0232526704262 +536.7965053408527 21 -175.0 +170.5681818181818 31 0.0 0 @@ -8527,15 +8855,15 @@ LINE 8 0 10 -633.0232526704262 +536.7965053408527 20 -175.0 +170.5681818181818 30 0.0 11 -633.0232526704262 +536.7965053408527 21 -188.00000000000003 +182.15909090909093 31 0.0 0 @@ -8545,15 +8873,15 @@ LINE 8 0 10 -633.0232526704262 +536.7965053408527 20 -188.00000000000003 +182.15909090909093 30 0.0 11 -603.0232526704264 +536.2965053408528 21 -188.00000000000003 +182.15909090909093 31 0.0 0 @@ -8563,15 +8891,15 @@ LINE 8 0 10 -610.0914344886081 +376.5465053408528 20 -142.50000000000003 +145.25 30 0.0 11 -598.6823435795171 +376.5465053408528 21 -142.50000000000003 +142.25000000000003 31 0.0 0 @@ -8581,15 +8909,15 @@ LINE 8 0 10 -598.6823435795171 +376.5465053408528 20 -142.50000000000003 +142.25000000000003 30 0.0 11 -598.6823435795171 +379.54650534085283 21 -142.00000000000003 +142.25000000000003 31 0.0 0 @@ -8599,15 +8927,15 @@ LINE 8 0 10 -598.6823435795171 +379.54650534085283 20 -142.00000000000003 +142.25000000000003 30 0.0 11 -610.0914344886081 +379.54650534085283 21 -142.00000000000003 +145.25 31 0.0 0 @@ -8617,15 +8945,15 @@ LINE 8 0 10 -610.0914344886081 +379.54650534085283 20 -142.00000000000003 +145.25 30 0.0 11 -610.0914344886081 +376.5465053408528 21 -142.50000000000003 +145.25 31 0.0 0 @@ -8635,15 +8963,15 @@ LINE 8 0 10 -637.3641617613355 +397.54650534085283 20 -142.50000000000003 +144.25000000000003 30 0.0 11 -625.9550708522444 +397.54650534085283 21 -142.50000000000003 +143.25 31 0.0 0 @@ -8653,15 +8981,15 @@ LINE 8 0 10 -625.9550708522444 +397.54650534085283 20 -142.50000000000003 +143.25 30 0.0 11 -625.9550708522444 +398.54650534085283 21 -142.00000000000003 +143.25 31 0.0 0 @@ -8671,15 +8999,15 @@ LINE 8 0 10 -625.9550708522444 +398.54650534085283 20 -142.00000000000003 +143.25 30 0.0 11 -637.3641617613355 +398.54650534085283 21 -142.00000000000003 +144.25000000000003 31 0.0 0 @@ -8689,15 +9017,15 @@ LINE 8 0 10 -637.3641617613355 +398.54650534085283 20 -142.00000000000003 +144.25000000000003 30 0.0 11 -637.3641617613355 +397.54650534085283 21 -142.50000000000003 +144.25000000000003 31 0.0 0 @@ -8707,15 +9035,15 @@ LINE 8 0 10 -640.2732526704264 +377.54650534085283 20 -159.43181818181822 +146.75000000000003 30 0.0 11 -640.2732526704264 +377.54650534085283 21 -147.84090909090912 +145.75 31 0.0 0 @@ -8725,15 +9053,15 @@ LINE 8 0 10 -640.2732526704264 +377.54650534085283 20 -147.84090909090912 +145.75 30 0.0 11 -640.7732526704264 +378.54650534085283 21 -147.84090909090912 +145.75 31 0.0 0 @@ -8743,15 +9071,15 @@ LINE 8 0 10 -640.7732526704264 +378.54650534085283 20 -147.84090909090912 +145.75 30 0.0 11 -640.7732526704264 +378.54650534085283 21 -159.43181818181822 +146.75000000000003 31 0.0 0 @@ -8761,15 +9089,15 @@ LINE 8 0 10 -640.7732526704264 +378.54650534085283 20 -159.43181818181822 +146.75000000000003 30 0.0 11 -640.2732526704264 +377.54650534085283 21 -159.43181818181822 +146.75000000000003 31 0.0 0 @@ -8779,15 +9107,15 @@ LINE 8 0 10 -640.2732526704264 +397.54650534085283 20 -187.15909090909093 +146.75000000000003 30 0.0 11 -640.2732526704264 +397.54650534085283 21 -175.5681818181818 +145.75 31 0.0 0 @@ -8797,15 +9125,15 @@ LINE 8 0 10 -640.2732526704264 +397.54650534085283 20 -175.5681818181818 +145.75 30 0.0 11 -640.7732526704264 +398.54650534085283 21 -175.5681818181818 +145.75 31 0.0 0 @@ -8815,15 +9143,15 @@ LINE 8 0 10 -640.7732526704264 +398.54650534085283 20 -175.5681818181818 +145.75 30 0.0 11 -640.7732526704264 +398.54650534085283 21 -187.15909090909093 +146.75000000000003 31 0.0 0 @@ -8833,15 +9161,15 @@ LINE 8 0 10 -640.7732526704264 +398.54650534085283 20 -187.15909090909093 +146.75000000000003 30 0.0 11 -640.2732526704264 +397.54650534085283 21 -187.15909090909093 +146.75000000000003 31 0.0 0 @@ -8851,15 +9179,15 @@ LINE 8 0 10 -480.5232526704263 +377.54650534085283 20 -150.25 +149.25000000000003 30 0.0 11 -480.5232526704263 +377.54650534085283 21 -147.25000000000003 +148.25 31 0.0 0 @@ -8869,15 +9197,15 @@ LINE 8 0 10 -480.5232526704263 +377.54650534085283 20 -147.25000000000003 +148.25 30 0.0 11 -483.5232526704263 +378.54650534085283 21 -147.25000000000003 +148.25 31 0.0 0 @@ -8887,15 +9215,15 @@ LINE 8 0 10 -483.5232526704263 +378.54650534085283 20 -147.25000000000003 +148.25 30 0.0 11 -483.5232526704263 +378.54650534085283 21 -150.25 +149.25000000000003 31 0.0 0 @@ -8905,15 +9233,15 @@ LINE 8 0 10 -483.5232526704263 +378.54650534085283 20 -150.25 +149.25000000000003 30 0.0 11 -480.5232526704263 +377.54650534085283 21 -150.25 +149.25000000000003 31 0.0 0 @@ -8923,13 +9251,13 @@ LINE 8 0 10 -501.5232526704263 +397.54650534085283 20 149.25000000000003 30 0.0 11 -501.5232526704263 +397.54650534085283 21 148.25 31 @@ -8941,13 +9269,13 @@ LINE 8 0 10 -501.5232526704263 +397.54650534085283 20 148.25 30 0.0 11 -502.5232526704263 +398.54650534085283 21 148.25 31 @@ -8959,13 +9287,13 @@ LINE 8 0 10 -502.5232526704263 +398.54650534085283 20 148.25 30 0.0 11 -502.5232526704263 +398.54650534085283 21 149.25000000000003 31 @@ -8977,13 +9305,13 @@ LINE 8 0 10 -502.5232526704263 +398.54650534085283 20 149.25000000000003 30 0.0 11 -501.5232526704263 +397.54650534085283 21 149.25000000000003 31 @@ -8995,13 +9323,13 @@ LINE 8 0 10 -481.5232526704263 +377.54650534085283 20 151.75000000000003 30 0.0 11 -481.5232526704263 +377.54650534085283 21 150.75000000000003 31 @@ -9013,13 +9341,13 @@ LINE 8 0 10 -481.5232526704263 +377.54650534085283 20 150.75000000000003 30 0.0 11 -482.52325267042636 +378.54650534085283 21 150.75000000000003 31 @@ -9031,13 +9359,13 @@ LINE 8 0 10 -482.52325267042636 +378.54650534085283 20 150.75000000000003 30 0.0 11 -482.52325267042636 +378.54650534085283 21 151.75000000000003 31 @@ -9049,13 +9377,13 @@ LINE 8 0 10 -482.52325267042636 +378.54650534085283 20 151.75000000000003 30 0.0 11 -481.5232526704263 +377.54650534085283 21 151.75000000000003 31 @@ -9067,13 +9395,13 @@ LINE 8 0 10 -501.5232526704263 +397.54650534085283 20 151.75000000000003 30 0.0 11 -501.5232526704263 +397.54650534085283 21 150.75000000000003 31 @@ -9085,13 +9413,13 @@ LINE 8 0 10 -501.5232526704263 +397.54650534085283 20 150.75000000000003 30 0.0 11 -502.5232526704263 +398.54650534085283 21 150.75000000000003 31 @@ -9103,13 +9431,13 @@ LINE 8 0 10 -502.5232526704263 +398.54650534085283 20 150.75000000000003 30 0.0 11 -502.5232526704263 +398.54650534085283 21 151.75000000000003 31 @@ -9121,13 +9449,13 @@ LINE 8 0 10 -502.5232526704263 +398.54650534085283 20 151.75000000000003 30 0.0 11 -501.5232526704263 +397.54650534085283 21 151.75000000000003 31 @@ -9139,13 +9467,13 @@ LINE 8 0 10 -481.5232526704263 +377.54650534085283 20 154.25000000000003 30 0.0 11 -481.5232526704263 +377.54650534085283 21 153.25000000000003 31 @@ -9157,13 +9485,13 @@ LINE 8 0 10 -481.5232526704263 +377.54650534085283 20 153.25000000000003 30 0.0 11 -482.52325267042636 +378.54650534085283 21 153.25000000000003 31 @@ -9175,13 +9503,13 @@ LINE 8 0 10 -482.52325267042636 +378.54650534085283 20 153.25000000000003 30 0.0 11 -482.52325267042636 +378.54650534085283 21 154.25000000000003 31 @@ -9193,13 +9521,13 @@ LINE 8 0 10 -482.52325267042636 +378.54650534085283 20 154.25000000000003 30 0.0 11 -481.5232526704263 +377.54650534085283 21 154.25000000000003 31 @@ -9211,13 +9539,13 @@ LINE 8 0 10 -501.5232526704263 +397.54650534085283 20 154.25000000000003 30 0.0 11 -501.5232526704263 +397.54650534085283 21 153.25000000000003 31 @@ -9229,13 +9557,13 @@ LINE 8 0 10 -501.5232526704263 +397.54650534085283 20 153.25000000000003 30 0.0 11 -502.5232526704263 +398.54650534085283 21 153.25000000000003 31 @@ -9247,13 +9575,13 @@ LINE 8 0 10 -502.5232526704263 +398.54650534085283 20 153.25000000000003 30 0.0 11 -502.5232526704263 +398.54650534085283 21 154.25000000000003 31 @@ -9265,13 +9593,13 @@ LINE 8 0 10 -502.5232526704263 +398.54650534085283 20 154.25000000000003 30 0.0 11 -501.5232526704263 +397.54650534085283 21 154.25000000000003 31 @@ -9283,13 +9611,13 @@ LINE 8 0 10 -481.5232526704263 +377.54650534085283 20 156.75 30 0.0 11 -481.5232526704263 +377.54650534085283 21 155.75000000000003 31 @@ -9301,13 +9629,13 @@ LINE 8 0 10 -481.5232526704263 +377.54650534085283 20 155.75000000000003 30 0.0 11 -482.52325267042636 +378.54650534085283 21 155.75000000000003 31 @@ -9319,13 +9647,13 @@ LINE 8 0 10 -482.52325267042636 +378.54650534085283 20 155.75000000000003 30 0.0 11 -482.52325267042636 +378.54650534085283 21 156.75 31 @@ -9337,13 +9665,13 @@ LINE 8 0 10 -482.52325267042636 +378.54650534085283 20 156.75 30 0.0 11 -481.5232526704263 +377.54650534085283 21 156.75 31 @@ -9355,13 +9683,13 @@ LINE 8 0 10 -501.5232526704263 +397.54650534085283 20 156.75 30 0.0 11 -501.5232526704263 +397.54650534085283 21 155.75000000000003 31 @@ -9373,13 +9701,13 @@ LINE 8 0 10 -501.5232526704263 +397.54650534085283 20 155.75000000000003 30 0.0 11 -502.5232526704263 +398.54650534085283 21 155.75000000000003 31 @@ -9391,13 +9719,13 @@ LINE 8 0 10 -502.5232526704263 +398.54650534085283 20 155.75000000000003 30 0.0 11 -502.5232526704263 +398.54650534085283 21 156.75 31 @@ -9409,13 +9737,13 @@ LINE 8 0 10 -502.5232526704263 +398.54650534085283 20 156.75 30 0.0 11 -501.5232526704263 +397.54650534085283 21 156.75 31 @@ -9427,13 +9755,13 @@ LINE 8 0 10 -481.5232526704263 +377.54650534085283 20 159.25 30 0.0 11 -481.5232526704263 +377.54650534085283 21 158.25000000000003 31 @@ -9445,13 +9773,13 @@ LINE 8 0 10 -481.5232526704263 +377.54650534085283 20 158.25000000000003 30 0.0 11 -482.52325267042636 +378.54650534085283 21 158.25000000000003 31 @@ -9463,13 +9791,13 @@ LINE 8 0 10 -482.52325267042636 +378.54650534085283 20 158.25000000000003 30 0.0 11 -482.52325267042636 +378.54650534085283 21 159.25 31 @@ -9481,13 +9809,13 @@ LINE 8 0 10 -482.52325267042636 +378.54650534085283 20 159.25 30 0.0 11 -481.5232526704263 +377.54650534085283 21 159.25 31 @@ -9499,13 +9827,13 @@ LINE 8 0 10 -501.5232526704263 +397.54650534085283 20 159.25 30 0.0 11 -501.5232526704263 +397.54650534085283 21 158.25000000000003 31 @@ -9517,13 +9845,13 @@ LINE 8 0 10 -501.5232526704263 +397.54650534085283 20 158.25000000000003 30 0.0 11 -502.5232526704263 +398.54650534085283 21 158.25000000000003 31 @@ -9535,13 +9863,13 @@ LINE 8 0 10 -502.5232526704263 +398.54650534085283 20 158.25000000000003 30 0.0 11 -502.5232526704263 +398.54650534085283 21 159.25 31 @@ -9553,13 +9881,13 @@ LINE 8 0 10 -502.5232526704263 +398.54650534085283 20 159.25 30 0.0 11 -501.5232526704263 +397.54650534085283 21 159.25 31 @@ -9571,13 +9899,13 @@ LINE 8 0 10 -481.5232526704263 +377.54650534085283 20 161.75 30 0.0 11 -481.5232526704263 +377.54650534085283 21 160.75000000000003 31 @@ -9589,13 +9917,13 @@ LINE 8 0 10 -481.5232526704263 +377.54650534085283 20 160.75000000000003 30 0.0 11 -482.52325267042636 +378.54650534085283 21 160.75000000000003 31 @@ -9607,13 +9935,13 @@ LINE 8 0 10 -482.52325267042636 +378.54650534085283 20 160.75000000000003 30 0.0 11 -482.52325267042636 +378.54650534085283 21 161.75 31 @@ -9625,13 +9953,13 @@ LINE 8 0 10 -482.52325267042636 +378.54650534085283 20 161.75 30 0.0 11 -481.5232526704263 +377.54650534085283 21 161.75 31 @@ -9643,13 +9971,13 @@ LINE 8 0 10 -501.5232526704263 +397.54650534085283 20 161.75 30 0.0 11 -501.5232526704263 +397.54650534085283 21 160.75000000000003 31 @@ -9661,13 +9989,13 @@ LINE 8 0 10 -501.5232526704263 +397.54650534085283 20 160.75000000000003 30 0.0 11 -502.5232526704263 +398.54650534085283 21 160.75000000000003 31 @@ -9679,13 +10007,13 @@ LINE 8 0 10 -502.5232526704263 +398.54650534085283 20 160.75000000000003 30 0.0 11 -502.5232526704263 +398.54650534085283 21 161.75 31 @@ -9697,13 +10025,13 @@ LINE 8 0 10 -502.5232526704263 +398.54650534085283 20 161.75 30 0.0 11 -501.5232526704263 +397.54650534085283 21 161.75 31 @@ -9715,13 +10043,13 @@ LINE 8 0 10 -481.5232526704263 +377.54650534085283 20 164.25000000000003 30 0.0 11 -481.5232526704263 +377.54650534085283 21 163.25000000000003 31 @@ -9733,13 +10061,13 @@ LINE 8 0 10 -481.5232526704263 +377.54650534085283 20 163.25000000000003 30 0.0 11 -482.52325267042636 +378.54650534085283 21 163.25000000000003 31 @@ -9751,13 +10079,13 @@ LINE 8 0 10 -482.52325267042636 +378.54650534085283 20 163.25000000000003 30 0.0 11 -482.52325267042636 +378.54650534085283 21 164.25000000000003 31 @@ -9769,13 +10097,13 @@ LINE 8 0 10 -482.52325267042636 +378.54650534085283 20 164.25000000000003 30 0.0 11 -481.5232526704263 +377.54650534085283 21 164.25000000000003 31 @@ -9787,13 +10115,13 @@ LINE 8 0 10 -501.5232526704263 +397.54650534085283 20 164.25000000000003 30 0.0 11 -501.5232526704263 +397.54650534085283 21 163.25000000000003 31 @@ -9805,13 +10133,13 @@ LINE 8 0 10 -501.5232526704263 +397.54650534085283 20 163.25000000000003 30 0.0 11 -502.5232526704263 +398.54650534085283 21 163.25000000000003 31 @@ -9823,13 +10151,13 @@ LINE 8 0 10 -502.5232526704263 +398.54650534085283 20 163.25000000000003 30 0.0 11 -502.5232526704263 +398.54650534085283 21 164.25000000000003 31 @@ -9841,13 +10169,13 @@ LINE 8 0 10 -502.5232526704263 +398.54650534085283 20 164.25000000000003 30 0.0 11 -501.5232526704263 +397.54650534085283 21 164.25000000000003 31 @@ -9859,13 +10187,13 @@ LINE 8 0 10 -481.5232526704263 +377.54650534085283 20 166.75000000000003 30 0.0 11 -481.5232526704263 +377.54650534085283 21 165.75 31 @@ -9877,13 +10205,13 @@ LINE 8 0 10 -481.5232526704263 +377.54650534085283 20 165.75 30 0.0 11 -482.52325267042636 +378.54650534085283 21 165.75 31 @@ -9895,13 +10223,13 @@ LINE 8 0 10 -482.52325267042636 +378.54650534085283 20 165.75 30 0.0 11 -482.52325267042636 +378.54650534085283 21 166.75000000000003 31 @@ -9913,13 +10241,13 @@ LINE 8 0 10 -482.52325267042636 +378.54650534085283 20 166.75000000000003 30 0.0 11 -481.5232526704263 +377.54650534085283 21 166.75000000000003 31 @@ -9931,13 +10259,13 @@ LINE 8 0 10 -501.5232526704263 +397.54650534085283 20 166.75000000000003 30 0.0 11 -501.5232526704263 +397.54650534085283 21 165.75 31 @@ -9949,13 +10277,13 @@ LINE 8 0 10 -501.5232526704263 +397.54650534085283 20 165.75 30 0.0 11 -502.5232526704263 +398.54650534085283 21 165.75 31 @@ -9967,13 +10295,13 @@ LINE 8 0 10 -502.5232526704263 +398.54650534085283 20 165.75 30 0.0 11 -502.5232526704263 +398.54650534085283 21 166.75000000000003 31 @@ -9985,13 +10313,13 @@ LINE 8 0 10 -502.5232526704263 +398.54650534085283 20 166.75000000000003 30 0.0 11 -501.5232526704263 +397.54650534085283 21 166.75000000000003 31 @@ -10003,13 +10331,13 @@ LINE 8 0 10 -481.5232526704263 +377.54650534085283 20 169.25000000000003 30 0.0 11 -481.5232526704263 +377.54650534085283 21 168.25 31 @@ -10021,13 +10349,13 @@ LINE 8 0 10 -481.5232526704263 +377.54650534085283 20 168.25 30 0.0 11 -482.52325267042636 +378.54650534085283 21 168.25 31 @@ -10039,13 +10367,13 @@ LINE 8 0 10 -482.52325267042636 +378.54650534085283 20 168.25 30 0.0 11 -482.52325267042636 +378.54650534085283 21 169.25000000000003 31 @@ -10057,13 +10385,13 @@ LINE 8 0 10 -482.52325267042636 +378.54650534085283 20 169.25000000000003 30 0.0 11 -481.5232526704263 +377.54650534085283 21 169.25000000000003 31 @@ -10075,13 +10403,13 @@ LINE 8 0 10 -501.5232526704263 +397.54650534085283 20 169.25000000000003 30 0.0 11 -501.5232526704263 +397.54650534085283 21 168.25 31 @@ -10093,13 +10421,13 @@ LINE 8 0 10 -501.5232526704263 +397.54650534085283 20 168.25 30 0.0 11 -502.5232526704263 +398.54650534085283 21 168.25 31 @@ -10111,13 +10439,13 @@ LINE 8 0 10 -502.5232526704263 +398.54650534085283 20 168.25 30 0.0 11 -502.5232526704263 +398.54650534085283 21 169.25000000000003 31 @@ -10129,13 +10457,13 @@ LINE 8 0 10 -502.5232526704263 +398.54650534085283 20 169.25000000000003 30 0.0 11 -501.5232526704263 +397.54650534085283 21 169.25000000000003 31 @@ -10147,13 +10475,13 @@ LINE 8 0 10 -481.5232526704263 +377.54650534085283 20 171.75000000000003 30 0.0 11 -481.5232526704263 +377.54650534085283 21 170.75 31 @@ -10165,13 +10493,13 @@ LINE 8 0 10 -481.5232526704263 +377.54650534085283 20 170.75 30 0.0 11 -482.52325267042636 +378.54650534085283 21 170.75 31 @@ -10183,13 +10511,13 @@ LINE 8 0 10 -482.52325267042636 +378.54650534085283 20 170.75 30 0.0 11 -482.52325267042636 +378.54650534085283 21 171.75000000000003 31 @@ -10201,13 +10529,13 @@ LINE 8 0 10 -482.52325267042636 +378.54650534085283 20 171.75000000000003 30 0.0 11 -481.5232526704263 +377.54650534085283 21 171.75000000000003 31 @@ -10219,13 +10547,13 @@ LINE 8 0 10 -501.5232526704263 +397.54650534085283 20 171.75000000000003 30 0.0 11 -501.5232526704263 +397.54650534085283 21 170.75 31 @@ -10237,13 +10565,13 @@ LINE 8 0 10 -501.5232526704263 +397.54650534085283 20 170.75 30 0.0 11 -502.5232526704263 +398.54650534085283 21 170.75 31 @@ -10255,13 +10583,13 @@ LINE 8 0 10 -502.5232526704263 +398.54650534085283 20 170.75 30 0.0 11 -502.5232526704263 +398.54650534085283 21 171.75000000000003 31 @@ -10273,13 +10601,13 @@ LINE 8 0 10 -502.5232526704263 +398.54650534085283 20 171.75000000000003 30 0.0 11 -501.5232526704263 +397.54650534085283 21 171.75000000000003 31 @@ -10291,13 +10619,13 @@ LINE 8 0 10 -481.5232526704263 +377.54650534085283 20 174.25000000000003 30 0.0 11 -481.5232526704263 +377.54650534085283 21 173.25000000000003 31 @@ -10309,13 +10637,13 @@ LINE 8 0 10 -481.5232526704263 +377.54650534085283 20 173.25000000000003 30 0.0 11 -482.52325267042636 +378.54650534085283 21 173.25000000000003 31 @@ -10327,13 +10655,13 @@ LINE 8 0 10 -482.52325267042636 +378.54650534085283 20 173.25000000000003 30 0.0 11 -482.52325267042636 +378.54650534085283 21 174.25000000000003 31 @@ -10345,13 +10673,13 @@ LINE 8 0 10 -482.52325267042636 +378.54650534085283 20 174.25000000000003 30 0.0 11 -481.5232526704263 +377.54650534085283 21 174.25000000000003 31 @@ -10363,13 +10691,13 @@ LINE 8 0 10 -501.5232526704263 +397.54650534085283 20 174.25000000000003 30 0.0 11 -501.5232526704263 +397.54650534085283 21 173.25000000000003 31 @@ -10381,13 +10709,13 @@ LINE 8 0 10 -501.5232526704263 +397.54650534085283 20 173.25000000000003 30 0.0 11 -502.5232526704263 +398.54650534085283 21 173.25000000000003 31 @@ -10399,13 +10727,13 @@ LINE 8 0 10 -502.5232526704263 +398.54650534085283 20 173.25000000000003 30 0.0 11 -502.5232526704263 +398.54650534085283 21 174.25000000000003 31 @@ -10417,13 +10745,13 @@ LINE 8 0 10 -502.5232526704263 +398.54650534085283 20 174.25000000000003 30 0.0 11 -501.5232526704263 +397.54650534085283 21 174.25000000000003 31 @@ -10435,13 +10763,13 @@ LINE 8 0 10 -481.5232526704263 +377.54650534085283 20 176.75000000000003 30 0.0 11 -481.5232526704263 +377.54650534085283 21 175.75000000000003 31 @@ -10453,13 +10781,13 @@ LINE 8 0 10 -481.5232526704263 +377.54650534085283 20 175.75000000000003 30 0.0 11 -482.52325267042636 +378.54650534085283 21 175.75000000000003 31 @@ -10471,13 +10799,13 @@ LINE 8 0 10 -482.52325267042636 +378.54650534085283 20 175.75000000000003 30 0.0 11 -482.52325267042636 +378.54650534085283 21 176.75000000000003 31 @@ -10489,13 +10817,13 @@ LINE 8 0 10 -482.52325267042636 +378.54650534085283 20 176.75000000000003 30 0.0 11 -481.5232526704263 +377.54650534085283 21 176.75000000000003 31 @@ -10507,13 +10835,13 @@ LINE 8 0 10 -501.5232526704263 +397.54650534085283 20 176.75000000000003 30 0.0 11 -501.5232526704263 +397.54650534085283 21 175.75000000000003 31 @@ -10525,13 +10853,13 @@ LINE 8 0 10 -501.5232526704263 +397.54650534085283 20 175.75000000000003 30 0.0 11 -502.5232526704263 +398.54650534085283 21 175.75000000000003 31 @@ -10543,13 +10871,13 @@ LINE 8 0 10 -502.5232526704263 +398.54650534085283 20 175.75000000000003 30 0.0 11 -502.5232526704263 +398.54650534085283 21 176.75000000000003 31 @@ -10561,13 +10889,13 @@ LINE 8 0 10 -502.5232526704263 +398.54650534085283 20 176.75000000000003 30 0.0 11 -501.5232526704263 +397.54650534085283 21 176.75000000000003 31 @@ -10579,13 +10907,13 @@ LINE 8 0 10 -481.5232526704263 +377.54650534085283 20 179.25000000000003 30 0.0 11 -481.5232526704263 +377.54650534085283 21 178.25000000000003 31 @@ -10597,13 +10925,13 @@ LINE 8 0 10 -481.5232526704263 +377.54650534085283 20 178.25000000000003 30 0.0 11 -482.52325267042636 +378.54650534085283 21 178.25000000000003 31 @@ -10615,13 +10943,13 @@ LINE 8 0 10 -482.52325267042636 +378.54650534085283 20 178.25000000000003 30 0.0 11 -482.52325267042636 +378.54650534085283 21 179.25000000000003 31 @@ -10633,13 +10961,13 @@ LINE 8 0 10 -482.52325267042636 +378.54650534085283 20 179.25000000000003 30 0.0 11 -481.5232526704263 +377.54650534085283 21 179.25000000000003 31 @@ -10651,13 +10979,13 @@ LINE 8 0 10 -501.5232526704263 +397.54650534085283 20 179.25000000000003 30 0.0 11 -501.5232526704263 +397.54650534085283 21 178.25000000000003 31 @@ -10669,13 +10997,13 @@ LINE 8 0 10 -501.5232526704263 +397.54650534085283 20 178.25000000000003 30 0.0 11 -502.5232526704263 +398.54650534085283 21 178.25000000000003 31 @@ -10687,13 +11015,13 @@ LINE 8 0 10 -502.5232526704263 +398.54650534085283 20 178.25000000000003 30 0.0 11 -502.5232526704263 +398.54650534085283 21 179.25000000000003 31 @@ -10705,13 +11033,13 @@ LINE 8 0 10 -502.5232526704263 +398.54650534085283 20 179.25000000000003 30 0.0 11 -501.5232526704263 +397.54650534085283 21 179.25000000000003 31 @@ -10723,85 +11051,13 @@ LINE 8 0 10 -481.5232526704263 - 20 -181.75 - 30 -0.0 - 11 -481.5232526704263 - 21 -180.75000000000003 - 31 -0.0 - 0 -LINE - 62 -5 - 8 -0 - 10 -481.5232526704263 - 20 -180.75000000000003 - 30 -0.0 - 11 -482.52325267042636 - 21 -180.75000000000003 - 31 -0.0 - 0 -LINE - 62 -5 - 8 -0 - 10 -482.52325267042636 - 20 -180.75000000000003 - 30 -0.0 - 11 -482.52325267042636 - 21 -181.75 - 31 -0.0 - 0 -LINE - 62 -5 - 8 -0 - 10 -482.52325267042636 - 20 -181.75 - 30 -0.0 - 11 -481.5232526704263 - 21 -181.75 - 31 -0.0 - 0 -LINE - 62 -5 - 8 -0 - 10 -501.5232526704263 +377.54650534085283 20 181.75 30 0.0 11 -501.5232526704263 +377.54650534085283 21 180.75000000000003 31 @@ -10813,13 +11069,13 @@ LINE 8 0 10 -501.5232526704263 +377.54650534085283 20 180.75000000000003 30 0.0 11 -502.5232526704263 +378.54650534085283 21 180.75000000000003 31 @@ -10831,13 +11087,13 @@ LINE 8 0 10 -502.5232526704263 +378.54650534085283 20 180.75000000000003 30 0.0 11 -502.5232526704263 +378.54650534085283 21 181.75 31 @@ -10849,13 +11105,13 @@ LINE 8 0 10 -502.5232526704263 +378.54650534085283 20 181.75 30 0.0 11 -501.5232526704263 +377.54650534085283 21 181.75 31 @@ -10867,231 +11123,15 @@ LINE 8 0 10 -481.5232526704263 - 20 -184.25 - 30 -0.0 - 11 -481.5232526704263 - 21 -183.25000000000003 - 31 -0.0 - 0 -LINE - 62 -5 - 8 -0 - 10 -481.5232526704263 - 20 -183.25000000000003 - 30 -0.0 - 11 -482.52325267042636 - 21 -183.25000000000003 - 31 -0.0 - 0 -LINE - 62 -5 - 8 -0 - 10 -482.52325267042636 - 20 -183.25000000000003 - 30 -0.0 - 11 -482.52325267042636 - 21 -184.25 - 31 -0.0 - 0 -LINE - 62 -5 - 8 -0 - 10 -482.52325267042636 - 20 -184.25 - 30 -0.0 - 11 -481.5232526704263 - 21 -184.25 - 31 -0.0 - 0 -LINE - 62 -5 - 8 -0 - 10 -501.5232526704263 - 20 -184.25 - 30 -0.0 - 11 -501.5232526704263 - 21 -183.25000000000003 - 31 -0.0 - 0 -LINE - 62 -5 - 8 -0 - 10 -501.5232526704263 - 20 -183.25000000000003 - 30 -0.0 - 11 -502.5232526704263 - 21 -183.25000000000003 - 31 -0.0 - 0 -LINE - 62 -5 - 8 -0 - 10 -502.5232526704263 - 20 -183.25000000000003 - 30 -0.0 - 11 -502.5232526704263 - 21 -184.25 - 31 -0.0 - 0 -LINE - 62 -5 - 8 -0 - 10 -502.5232526704263 - 20 -184.25 - 30 -0.0 - 11 -501.5232526704263 - 21 -184.25 - 31 -0.0 - 0 -LINE - 62 -5 - 8 -0 - 10 -481.5232526704263 - 20 -186.75 - 30 -0.0 - 11 -481.5232526704263 - 21 -185.75000000000003 - 31 -0.0 - 0 -LINE - 62 -5 - 8 -0 - 10 -481.5232526704263 - 20 -185.75000000000003 - 30 -0.0 - 11 -482.52325267042636 - 21 -185.75000000000003 - 31 -0.0 - 0 -LINE - 62 -5 - 8 -0 - 10 -482.52325267042636 - 20 -185.75000000000003 - 30 -0.0 - 11 -482.52325267042636 - 21 -186.75 - 31 -0.0 - 0 -LINE - 62 -5 - 8 -0 - 10 -482.52325267042636 - 20 -186.75 - 30 -0.0 - 11 -481.5232526704263 - 21 -186.75 - 31 -0.0 - 0 -LINE - 62 -5 - 8 -0 - 10 -500.5232526704263 +396.54650534085283 20 -187.75000000000003 +182.75000000000003 30 0.0 11 -500.5232526704263 +396.54650534085283 21 -184.75000000000003 +179.75 31 0.0 0 @@ -11101,15 +11141,15 @@ LINE 8 0 10 -500.5232526704263 +396.54650534085283 20 -184.75000000000003 +179.75 30 0.0 11 -503.5232526704263 +399.5465053408528 21 -184.75000000000003 +179.75 31 0.0 0 @@ -11119,15 +11159,15 @@ LINE 8 0 10 -503.5232526704263 +399.5465053408528 20 -184.75000000000003 +179.75 30 0.0 11 -503.5232526704263 +399.5465053408528 21 -187.75000000000003 +182.75000000000003 31 0.0 0 @@ -11137,15 +11177,15 @@ LINE 8 0 10 -503.5232526704263 +399.5465053408528 20 -187.75000000000003 +182.75000000000003 30 0.0 11 -500.5232526704263 +396.54650534085283 21 -187.75000000000003 +182.75000000000003 31 0.0 0 @@ -11155,15 +11195,15 @@ LINE 8 0 10 -496.27325267042636 +392.29650534085283 20 -144.75000000000003 +139.75000000000003 30 0.0 11 -487.7732526704263 +383.79650534085283 21 -144.75000000000003 +139.75000000000003 31 0.0 0 @@ -11173,15 +11213,15 @@ LINE 8 0 10 -487.7732526704263 +383.79650534085283 20 -144.75000000000003 +139.75000000000003 30 0.0 11 -487.7732526704263 +383.79650534085283 21 -144.25000000000003 +139.25 31 0.0 0 @@ -11191,15 +11231,15 @@ LINE 8 0 10 -487.7732526704263 +383.79650534085283 20 -144.25000000000003 +139.25 30 0.0 11 -496.27325267042636 +392.29650534085283 21 -144.25000000000003 +139.25 31 0.0 0 @@ -11209,15 +11249,15 @@ LINE 8 0 10 -496.27325267042636 +392.29650534085283 20 -144.25000000000003 +139.25 30 0.0 11 -496.27325267042636 +392.29650534085283 21 -144.75000000000003 +139.75000000000003 31 0.0 0 @@ -11227,15 +11267,15 @@ LINE 8 0 10 -487.7732526704263 +383.79650534085283 20 -192.50000000000003 +187.50000000000003 30 0.0 11 -496.27325267042636 +392.29650534085283 21 -192.50000000000003 +187.50000000000003 31 0.0 0 @@ -11245,15 +11285,15 @@ LINE 8 0 10 -496.27325267042636 +392.29650534085283 20 -192.50000000000003 +187.50000000000003 30 0.0 11 -496.27325267042636 +392.29650534085283 21 -193.00000000000003 +188.00000000000003 31 0.0 0 @@ -11263,15 +11303,15 @@ LINE 8 0 10 -496.27325267042636 +392.29650534085283 20 -193.00000000000003 +188.00000000000003 30 0.0 11 -487.7732526704263 +383.79650534085283 21 -193.00000000000003 +188.00000000000003 31 0.0 0 @@ -11281,15 +11321,15 @@ LINE 8 0 10 -487.7732526704263 +383.79650534085283 20 -193.00000000000003 +188.00000000000003 30 0.0 11 -487.7732526704263 +383.79650534085283 21 -192.50000000000003 +187.50000000000003 31 0.0 0 @@ -11299,15 +11339,15 @@ LINE 8 0 10 -472.5232526704263 +368.54650534085283 20 -148.09090909090912 +143.09090909090912 30 0.0 11 -477.5232526704263 +373.54650534085283 21 -148.09090909090912 +143.09090909090912 31 0.0 0 @@ -11317,15 +11357,15 @@ LINE 8 0 10 -477.5232526704263 +373.54650534085283 20 -148.09090909090912 +143.09090909090912 30 0.0 11 -477.5232526704263 +373.54650534085283 21 -159.1818181818182 +154.1818181818182 31 0.0 0 @@ -11335,15 +11375,15 @@ LINE 8 0 10 -477.5232526704263 +373.54650534085283 20 -159.1818181818182 +154.1818181818182 30 0.0 11 -472.5232526704263 +368.54650534085283 21 -159.1818181818182 +154.1818181818182 31 0.0 0 @@ -11353,15 +11393,15 @@ LINE 8 0 10 -472.5232526704263 +368.54650534085283 20 -175.81818181818184 +170.8181818181818 30 0.0 11 -477.5232526704263 +373.54650534085283 21 -175.81818181818184 +170.8181818181818 31 0.0 0 @@ -11371,15 +11411,15 @@ LINE 8 0 10 -477.5232526704263 +373.54650534085283 20 -175.81818181818184 +170.8181818181818 30 0.0 11 -477.5232526704263 +373.54650534085283 21 -186.90909090909093 +181.90909090909093 31 0.0 0 @@ -11389,15 +11429,15 @@ LINE 8 0 10 -477.5232526704263 +373.54650534085283 20 -186.90909090909093 +181.90909090909093 30 0.0 11 -472.5232526704263 +368.54650534085283 21 -186.90909090909093 +181.90909090909093 31 0.0 0 @@ -11407,15 +11447,15 @@ LINE 8 0 10 -497.7732526704263 +393.79650534085283 20 -121.00000000000001 +116.0 30 0.0 11 -501.2732526704263 +397.29650534085283 21 -121.00000000000001 +116.0 31 0.0 0 @@ -11425,15 +11465,15 @@ LINE 8 0 10 -501.2732526704263 +397.29650534085283 20 -121.00000000000001 +116.0 30 0.0 11 -501.2732526704263 +397.29650534085283 21 -129.0 +124.00000000000003 31 0.0 0 @@ -11443,15 +11483,15 @@ LINE 8 0 10 -501.2732526704263 +397.29650534085283 20 -129.0 +124.00000000000003 30 0.0 11 -497.7732526704263 +393.79650534085283 21 -129.0 +124.00000000000003 31 0.0 0 diff --git a/rocolib/output/BoatWithServoMountAndStack/graph-lasercutter.svg b/rocolib/output/BoatWithServoMountAndStack/graph-lasercutter.svg index ce1d5220543d4d57c9418b07b191748d47689318..13c48c31743b985700a570033c175ae67e307be7 100644 --- a/rocolib/output/BoatWithServoMountAndStack/graph-lasercutter.svg +++ b/rocolib/output/BoatWithServoMountAndStack/graph-lasercutter.svg @@ -1,583 +1,585 @@ <?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="485.000000mm" version="1.1" viewBox="0.000000 0.000000 648.023253 485.000000" width="648.023253mm"> +<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="465.000000mm" version="1.1" viewBox="0.000000 0.000000 544.046505 465.000000" width="544.046505mm"> <defs/> - <line stroke="#000000" x1="329.02325267042613" x2="210.02325267042616" y1="125.00000000000001" y2="125.00000000000001"/> - <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="329.02325267042613" x2="390.0232526704262" y1="125.00000000000001" y2="125.00000000000001"/> - <line stroke="#000000" x1="390.0232526704262" x2="390.0232526704262" y1="125.00000000000001" y2="125.00000000000001"/> - <line stroke="#000000" x1="210.02325267042616" x2="210.02325267042616" y1="125.00000000000001" y2="125.00000000000001"/> - <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="329.02325267042613" x2="390.0232526704262" y1="88.86137800081471" y2="88.86137800081471"/> - <line stroke="#000000" x1="390.0232526704262" x2="390.0232526704262" y1="125.00000000000001" y2="88.86137800081471"/> - <line stroke="#000000" x1="329.02325267042613" x2="329.02325267042613" y1="88.86137800081471" y2="125.00000000000001"/> - <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="390.0232526704262" x2="329.02325267042613" y1="64.86137800081471" y2="64.86137800081471"/> - <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="390.0232526704262" x2="390.0232526704262" y1="64.86137800081471" y2="88.86137800081471"/> - <line stroke="#000000" x1="329.02325267042613" x2="329.02325267042613" y1="28.722756001629396" y2="64.86137800081472"/> - <line stroke="#000000" x1="390.0232526704262" x2="329.02325267042613" y1="28.722756001629396" y2="28.722756001629396"/> - <line stroke="#000000" x1="390.0232526704262" x2="390.0232526704262" y1="64.86137800081472" y2="28.722756001629396"/> - <line stroke="#000000" x1="400.0232526704262" x2="390.0232526704262" y1="64.86137800081471" y2="64.86137800081471"/> - <line stroke="#000000" x1="400.0232526704262" x2="400.0232526704262" y1="88.86137800081471" y2="64.86137800081471"/> - <line stroke="#000000" x1="390.0232526704262" x2="400.0232526704262" y1="88.86137800081471" y2="88.86137800081471"/> - <line stroke="#000000" x1="319.02325267042613" x2="329.02325267042613" y1="88.86137800081471" y2="88.86137800081471"/> - <line stroke="#000000" x1="319.02325267042613" x2="319.02325267042613" y1="64.86137800081471" y2="88.86137800081471"/> - <line stroke="#000000" x1="329.02325267042613" x2="319.02325267042613" y1="64.86137800081471" y2="64.86137800081471"/> - <line stroke="#000000" x1="186.0232526704262" x2="86.02325267042616" y1="125.00000000000001" y2="125.00000000000001"/> - <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="186.0232526704262" x2="210.02325267042616" y1="125.00000000000001" y2="125.00000000000001"/> - <line stroke="#000000" x1="390.0232526704262" x2="390.0232526704262" y1="125.00000000000001" y2="125.00000000000001"/> - <line stroke="#000000" x1="86.02325267042616" x2="86.02325267042616" y1="125.00000000000001" y2="125.00000000000001"/> - <line stroke="#000000" x1="210.02325267042616" x2="210.02325267042616" y1="125.00000000000001" y2="91.0"/> - <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="186.0232526704262" x2="186.0232526704262" y1="91.0" y2="125.00000000000001"/> - <line stroke="#000000" x1="186.0232526704262" x2="186.0232526704262" y1="55.00000000000001" y2="91.0"/> - <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="186.0232526704262" x2="210.02325267042616" y1="55.00000000000001" y2="55.00000000000001"/> - <line stroke="#000000" x1="210.02325267042616" x2="210.02325267042616" y1="91.0" y2="55.00000000000001"/> - <line stroke="#000000" x1="210.02325267042616" x2="210.02325267042616" y1="55.00000000000001" y2="5.000000000000001"/> - <line stroke="#000000" x1="186.0232526704262" x2="186.0232526704262" y1="5.000000000000001" y2="55.00000000000001"/> - <line stroke="#000000" x1="186.0232526704262" x2="186.0232526704262" y1="0.0" y2="5.000000000000001"/> - <line stroke="#000000" x1="210.02325267042616" x2="186.0232526704262" y1="0.0" y2="0.0"/> - <line stroke="#000000" x1="210.02325267042616" x2="210.02325267042616" y1="5.000000000000001" y2="0.0"/> - <line stroke="#000000" x1="186.0232526704262" x2="166.0232526704262" y1="91.0" y2="91.0"/> - <line stroke="#000000" x1="166.0232526704262" x2="186.0232526704262" y1="125.00000000000001" y2="125.00000000000001"/> - <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="166.0232526704262" x2="166.0232526704262" y1="91.0" y2="125.00000000000001"/> - <line stroke="#000000" x1="166.0232526704262" x2="142.02325267042616" y1="91.0" y2="91.0"/> - <line stroke="#000000" x1="142.02325267042616" x2="166.0232526704262" y1="125.00000000000001" y2="125.00000000000001"/> - <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="142.02325267042616" x2="142.02325267042616" y1="91.0" y2="125.00000000000001"/> - <line stroke="#000000" x1="142.02325267042616" x2="122.02325267042617" y1="91.0" y2="91.0"/> - <line stroke="#000000" x1="122.02325267042617" x2="142.02325267042616" y1="125.00000000000001" y2="125.00000000000001"/> - <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="122.02325267042617" x2="122.02325267042617" y1="125.00000000000001" y2="91.0"/> - <line stroke="#000000" x1="112.02325267042617" x2="122.02325267042617" y1="125.00000000000001" y2="125.00000000000001"/> - <line stroke="#000000" x1="112.02325267042617" x2="112.02325267042617" y1="91.0" y2="125.00000000000001"/> - <line stroke="#000000" x1="122.02325267042617" x2="112.02325267042617" y1="91.0" y2="91.0"/> - <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="390.0232526704262" x2="86.02325267042616" y1="195.00000000000003" y2="195.00000000000003"/> - <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="390.0232526704262" x2="390.0232526704262" y1="195.00000000000003" y2="125.00000000000001"/> - <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="390.0232526704262" x2="460.0232526704262" y1="125.00000000000001" y2="125.00000000000001"/> - <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="390.0232526704262" x2="460.0232526704262" y1="195.00000000000003" y2="125.00000000000001"/> - <line stroke="#000000" x1="390.0232526704262" x2="390.0232526704262" y1="101.66666666666669" y2="125.00000000000001"/> - <line stroke="#000000" x1="460.0232526704262" x2="390.0232526704262" y1="101.66666666666669" y2="101.66666666666669"/> - <line stroke="#000000" x1="460.0232526704262" x2="460.0232526704262" y1="125.00000000000001" y2="101.66666666666669"/> - <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="390.02325267042625" x2="460.0232526704262" y1="195.00000000000003" y2="195.00000000000003"/> - <line stroke="#000000" x1="460.0232526704262" x2="460.0232526704262" y1="195.00000000000003" y2="125.00000000000001"/> - <line stroke="#000000" x1="460.02325267042625" x2="460.0232526704262" y1="265.00000000000006" y2="195.0"/> - <line stroke="#000000" x1="460.0232526704262" x2="460.02325267042625" y1="245.0" y2="265.00000000000006"/> - <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="390.0232526704263" x2="390.02325267042625" y1="245.00000000000003" y2="195.00000000000006"/> - <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="390.0232526704263" x2="390.0232526704263" y1="295.0" y2="245.00000000000003"/> - <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="460.02325267042625" x2="390.0232526704263" y1="295.0" y2="295.0"/> - <line stroke="#000000" x1="460.02325267042625" x2="460.02325267042625" y1="225.00000000000003" y2="245.00000000000003"/> - <line stroke="#000000" x1="460.02325267042625" x2="460.02325267042625" y1="295.0" y2="225.00000000000003"/> - <line stroke="#000000" x1="460.02325267042625" x2="460.02325267042625" y1="365.0" y2="295.0"/> - <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="460.02325267042625" x2="390.0232526704263" y1="365.0" y2="295.0"/> - <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="390.0232526704263" x2="390.0232526704263" y1="365.00000000000006" y2="295.0"/> - <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="460.02325267042625" x2="390.0232526704263" y1="365.0" y2="365.00000000000006"/> - <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="390.0232526704263" x2="86.02325267042634" y1="295.0" y2="295.0000000000001"/> - <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="210.02325267042633" x2="186.02325267042636" y1="365.0000000000001" y2="365.00000000000017"/> - <line stroke="#000000" x1="86.02325267042634" x2="186.02325267042636" y1="365.00000000000017" y2="365.00000000000017"/> - <line stroke="#000000" x1="86.02325267042634" x2="86.02325267042634" y1="365.00000000000017" y2="365.00000000000017"/> - <line stroke="#000000" x1="390.0232526704263" x2="390.0232526704263" y1="365.00000000000006" y2="365.00000000000006"/> - <line stroke="#000000" x1="210.02325267042633" x2="329.02325267042636" y1="365.0000000000001" y2="365.00000000000006"/> - <line stroke="#000000" x1="210.02325267042633" x2="210.02325267042633" y1="365.0000000000001" y2="365.0000000000001"/> - <line stroke="#000000" x1="390.0232526704263" x2="390.0232526704263" y1="365.00000000000006" y2="365.00000000000006"/> - <line stroke="#000000" x1="390.0232526704263" x2="390.0232526704263" y1="375.00000000000006" y2="365.00000000000006"/> - <line stroke="#000000" x1="329.02325267042636" x2="390.0232526704263" y1="375.00000000000006" y2="375.00000000000006"/> - <line stroke="#000000" x1="329.02325267042636" x2="329.02325267042636" y1="365.00000000000006" y2="375.00000000000006"/> - <line stroke="#000000" x1="210.02325267042636" x2="210.02325267042633" y1="399.0000000000001" y2="365.0000000000001"/> - <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="186.02325267042633" x2="186.02325267042636" y1="365.0000000000001" y2="399.0000000000001"/> - <line stroke="#000000" x1="210.02325267042636" x2="210.02325267042636" y1="435.0000000000001" y2="399.0000000000001"/> - <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="210.02325267042636" x2="186.0232526704264" y1="435.0000000000001" y2="435.0000000000001"/> - <line stroke="#000000" x1="186.02325267042636" x2="186.0232526704264" y1="399.0000000000001" y2="435.0000000000001"/> - <line stroke="#000000" x1="186.0232526704264" x2="186.0232526704264" y1="435.0000000000001" y2="485.0000000000001"/> - <line stroke="#000000" x1="210.0232526704264" x2="210.02325267042636" y1="485.0000000000001" y2="435.0000000000001"/> - <line stroke="#000000" x1="186.0232526704264" x2="210.0232526704264" y1="485.0000000000001" y2="485.0000000000001"/> - <line stroke="#000000" x1="186.02325267042633" x2="166.0232526704263" y1="365.0000000000001" y2="365.0000000000001"/> - <line stroke="#000000" x1="166.02325267042633" x2="186.02325267042636" y1="399.0000000000001" y2="399.0000000000001"/> - <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="166.0232526704263" x2="166.02325267042633" y1="365.0000000000001" y2="399.0000000000001"/> - <line stroke="#000000" x1="166.0232526704263" x2="142.02325267042633" y1="365.0000000000001" y2="365.0000000000001"/> - <line stroke="#000000" x1="142.02325267042636" x2="166.02325267042633" y1="399.0000000000001" y2="399.0000000000001"/> - <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="142.02325267042633" x2="142.02325267042636" y1="365.0000000000001" y2="399.0000000000001"/> - <line stroke="#000000" x1="142.02325267042633" x2="122.02325267042634" y1="365.0000000000001" y2="365.0000000000001"/> - <line stroke="#000000" x1="122.02325267042636" x2="142.02325267042636" y1="399.0000000000001" y2="399.0000000000001"/> - <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="122.02325267042636" x2="122.02325267042634" y1="399.0000000000001" y2="365.0000000000001"/> - <line stroke="#000000" x1="112.02325267042634" x2="122.02325267042634" y1="399.0000000000001" y2="399.0000000000001"/> - <line stroke="#000000" x1="112.02325267042633" x2="112.02325267042634" y1="365.0000000000001" y2="399.0000000000001"/> - <line stroke="#000000" x1="122.02325267042633" x2="112.02325267042633" y1="365.0000000000001" y2="365.0000000000001"/> - <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="86.0232526704263" x2="86.02325267042634" y1="295.00000000000017" y2="365.00000000000017"/> - <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="86.02325267042634" x2="32.42924173922606" y1="365.00000000000017" y2="365.0000000000002"/> - <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="86.02325267042632" x2="32.42924173922606" y1="295.00000000000017" y2="365.0000000000002"/> - <line stroke="#000000" x1="86.02325267042634" x2="86.02325267042634" y1="382.8646703104003" y2="365.00000000000017"/> - <line stroke="#000000" x1="32.42924173922606" x2="86.02325267042634" y1="382.8646703104003" y2="382.8646703104003"/> - <line stroke="#000000" x1="32.42924173922606" x2="32.42924173922606" y1="365.0000000000002" y2="382.8646703104003"/> - <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="86.02325267042632" x2="18.447362619882885" y1="295.00000000000017" y2="313.2619572849372"/> - <line stroke="#000000" x1="18.447362619882885" x2="32.42924173922606" y1="313.2619572849372" y2="365.0000000000002"/> - <line stroke="#000000" x1="4.465483500539649" x2="18.447362619882853" y1="261.5239145698741" y2="313.2619572849372"/> - <line stroke="#000000" x1="0.0" x2="4.465483500539649" y1="245.00000000000028" y2="261.5239145698741"/> - <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="0.0" x2="86.0232526704263" y1="245.00000000000028" y2="295.0000000000001"/> - <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="86.02325267042627" x2="86.02325267042632" y1="245.0000000000002" y2="295.0000000000001"/> - <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="86.02325267042623" x2="86.02325267042627" y1="195.00000000000017" y2="245.0000000000002"/> - <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="0.0" x2="86.02325267042623" y1="245.00000000000026" y2="195.00000000000017"/> - <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="18.447362619882743" x2="86.02325267042623" y1="176.73804271506336" y2="195.00000000000017"/> - <line stroke="#000000" x1="4.465483500539619" x2="0.0" y1="228.47608543012643" y2="245.00000000000026"/> - <line stroke="#000000" x1="18.447362619882743" x2="4.465483500539619" y1="176.73804271506336" y2="228.47608543012643"/> - <line stroke="#000000" x1="32.42924173922586" x2="18.447362619882743" y1="125.00000000000027" y2="176.73804271506336"/> - <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="32.42924173922586" x2="86.02325267042623" y1="125.00000000000027" y2="195.00000000000017"/> - <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="86.02325267042613" x2="86.0232526704262" y1="125.00000000000021" y2="195.00000000000017"/> - <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="32.42924173922586" x2="86.02325267042613" y1="125.00000000000027" y2="125.00000000000021"/> - <line stroke="#000000" x1="32.42924173922584" x2="32.42924173922586" y1="107.13532968960016" y2="125.00000000000027"/> - <line stroke="#000000" x1="86.02325267042612" x2="32.42924173922584" y1="107.13532968960011" y2="107.13532968960016"/> - <line stroke="#000000" x1="86.02325267042613" x2="86.02325267042612" y1="125.00000000000021" y2="107.13532968960011"/> - <line stroke="#000000" x1="460.02325267042625" x2="460.02325267042625" y1="388.3333333333333" y2="365.0"/> - <line stroke="#000000" x1="390.0232526704263" x2="460.02325267042625" y1="388.33333333333337" y2="388.3333333333333"/> - <line stroke="#000000" x1="390.0232526704263" x2="390.0232526704263" y1="365.00000000000006" y2="388.33333333333337"/> - <line stroke="#888888" x1="347.02325267042613" x2="358.0232526704262" y1="70.3613780008147" y2="70.3613780008147"/> - <line stroke="#888888" x1="358.0232526704262" x2="358.0232526704262" y1="70.3613780008147" y2="83.36137800081471"/> - <line stroke="#888888" x1="358.0232526704262" x2="347.02325267042613" y1="83.36137800081471" y2="83.36137800081471"/> - <line stroke="#888888" x1="347.02325267042613" x2="347.02325267042613" y1="83.36137800081471" y2="70.3613780008147"/> - <line stroke="#888888" x1="378.52325267042613" x2="384.5232526704262" y1="71.86137800081471" y2="71.86137800081471"/> - <line stroke="#888888" x1="384.5232526704262" x2="384.5232526704262" y1="71.86137800081471" y2="81.86137800081471"/> - <line stroke="#888888" x1="384.5232526704262" x2="378.52325267042613" y1="81.86137800081471" y2="81.86137800081471"/> - <line stroke="#888888" x1="378.52325267042613" x2="378.52325267042613" y1="81.86137800081471" y2="71.86137800081471"/> - <line stroke="#888888" x1="351.45507085224443" x2="339.8641617613353" y1="36.47275600162939" y2="36.47275600162939"/> - <line stroke="#888888" x1="339.8641617613353" x2="339.8641617613353" y1="36.47275600162939" y2="35.9727560016294"/> - <line stroke="#888888" x1="339.8641617613353" x2="351.45507085224443" y1="35.9727560016294" y2="35.9727560016294"/> - <line stroke="#888888" x1="351.45507085224443" x2="351.45507085224443" y1="35.9727560016294" y2="36.47275600162939"/> - <line stroke="#888888" x1="379.18234357951707" x2="367.591434488608" y1="36.47275600162939" y2="36.47275600162939"/> - <line stroke="#888888" x1="367.591434488608" x2="367.591434488608" y1="36.47275600162939" y2="35.9727560016294"/> - <line stroke="#888888" x1="367.591434488608" x2="379.18234357951707" y1="35.9727560016294" y2="35.9727560016294"/> - <line stroke="#888888" x1="379.18234357951707" x2="379.18234357951707" y1="35.9727560016294" y2="36.47275600162939"/> - <line stroke="#888888" x1="397.5232526704262" x2="392.52325267042613" y1="80.86137800081471" y2="80.86137800081471"/> - <line stroke="#888888" x1="392.52325267042613" x2="392.52325267042613" y1="80.86137800081471" y2="72.86137800081471"/> - <line stroke="#888888" x1="392.52325267042613" x2="397.5232526704262" y1="72.86137800081471" y2="72.86137800081471"/> - <line stroke="#888888" x1="321.5232526704262" x2="326.5232526704262" y1="72.86137800081471" y2="72.86137800081471"/> - <line stroke="#888888" x1="326.5232526704262" x2="326.5232526704262" y1="72.86137800081471" y2="80.86137800081471"/> - <line stroke="#888888" x1="326.5232526704262" x2="321.5232526704262" y1="80.86137800081471" y2="80.86137800081471"/> - <line stroke="#888888" x1="202.2732526704262" x2="202.2732526704262" y1="113.91666666666669" y2="102.08333333333336"/> - <line stroke="#888888" x1="202.2732526704262" x2="202.7732526704262" y1="102.08333333333336" y2="102.08333333333336"/> - <line stroke="#888888" x1="202.7732526704262" x2="202.7732526704262" y1="102.08333333333336" y2="113.91666666666669"/> - <line stroke="#888888" x1="202.7732526704262" x2="202.2732526704262" y1="113.91666666666669" y2="113.91666666666669"/> - <line stroke="#888888" x1="202.0232526704262" x2="204.5232526704262" y1="1.2500000000000002" y2="1.2500000000000002"/> - <line stroke="#888888" x1="204.5232526704262" x2="202.0232526704262" y1="1.2500000000000002" y2="3.7500000000000004"/> - <line stroke="#888888" x1="202.0232526704262" x2="194.02325267042616" y1="3.7500000000000004" y2="3.7500000000000004"/> - <line stroke="#888888" x1="194.02325267042616" x2="191.52325267042616" y1="3.7500000000000004" y2="1.2500000000000002"/> - <line stroke="#888888" x1="191.52325267042616" x2="194.02325267042616" y1="1.2500000000000002" y2="1.2500000000000002"/> - <line stroke="#888888" x1="167.02325267042616" x2="171.02325267042616" y1="102.00000000000001" y2="102.00000000000001"/> - <line stroke="#888888" x1="171.02325267042616" x2="171.02325267042616" y1="102.00000000000001" y2="114.00000000000001"/> - <line stroke="#888888" x1="171.02325267042616" x2="167.02325267042616" y1="114.00000000000001" y2="114.00000000000001"/> - <line stroke="#888888" x1="167.02325267042616" x2="167.02325267042616" y1="114.00000000000001" y2="102.00000000000001"/> - <line stroke="#888888" x1="179.0232526704262" x2="183.0232526704262" y1="103.5" y2="103.5"/> - <line stroke="#888888" x1="183.0232526704262" x2="183.0232526704262" y1="103.5" y2="112.50000000000001"/> - <line stroke="#888888" x1="183.0232526704262" x2="179.0232526704262" y1="112.50000000000001" y2="112.50000000000001"/> - <line stroke="#888888" x1="179.0232526704262" x2="179.0232526704262" y1="112.50000000000001" y2="103.5"/> - <line stroke="#888888" x1="142.5232526704262" x2="165.5232526704262" y1="102.00000000000001" y2="102.00000000000001"/> - <line stroke="#888888" x1="165.5232526704262" x2="165.5232526704262" y1="102.00000000000001" y2="114.00000000000001"/> - <line stroke="#888888" x1="165.5232526704262" x2="142.5232526704262" y1="114.00000000000001" y2="114.00000000000001"/> - <line stroke="#888888" x1="142.5232526704262" x2="142.5232526704262" y1="114.00000000000001" y2="102.00000000000001"/> - <line stroke="#888888" x1="137.02325267042616" x2="141.0232526704262" y1="102.00000000000001" y2="102.00000000000001"/> - <line stroke="#888888" x1="141.0232526704262" x2="141.0232526704262" y1="102.00000000000001" y2="114.00000000000001"/> - <line stroke="#888888" x1="141.0232526704262" x2="137.02325267042616" y1="114.00000000000001" y2="114.00000000000001"/> - <line stroke="#888888" x1="137.02325267042616" x2="137.02325267042616" y1="114.00000000000001" y2="102.00000000000001"/> - <line stroke="#888888" x1="114.52325267042617" x2="119.52325267042617" y1="102.33333333333334" y2="102.33333333333334"/> - <line stroke="#888888" x1="119.52325267042617" x2="119.52325267042617" y1="102.33333333333334" y2="113.66666666666669"/> - <line stroke="#888888" x1="119.52325267042617" x2="114.52325267042617" y1="113.66666666666669" y2="113.66666666666669"/> - <line stroke="#888888" x1="436.68991933709293" x2="436.68991933709293" y1="107.50000000000001" y2="119.16666666666669"/> - <line stroke="#888888" x1="436.68991933709293" x2="413.35658600375956" y1="119.16666666666669" y2="119.16666666666669"/> - <line stroke="#888888" x1="413.35658600375956" x2="413.35658600375956" y1="119.16666666666669" y2="107.50000000000001"/> - <line stroke="#888888" x1="442.27325267042625" x2="442.27325267042625" y1="241.91666666666666" y2="218.08333333333334"/> - <line stroke="#888888" x1="442.27325267042625" x2="442.77325267042625" y1="218.08333333333334" y2="218.08333333333334"/> - <line stroke="#888888" x1="442.77325267042625" x2="442.77325267042625" y1="218.08333333333334" y2="241.91666666666666"/> - <line stroke="#888888" x1="442.77325267042625" x2="442.27325267042625" y1="241.91666666666666" y2="241.91666666666666"/> - <line stroke="#888888" x1="442.2732526704263" x2="442.2732526704263" y1="271.9166666666667" y2="248.08333333333337"/> - <line stroke="#888888" x1="442.2732526704263" x2="442.7732526704263" y1="248.08333333333337" y2="248.08333333333337"/> - <line stroke="#888888" x1="442.7732526704263" x2="442.7732526704263" y1="248.08333333333337" y2="271.9166666666667"/> - <line stroke="#888888" x1="442.7732526704263" x2="442.2732526704263" y1="271.9166666666667" y2="271.9166666666667"/> - <line stroke="#888888" x1="340.11416176133537" x2="340.11416176133537" y1="372.50000000000006" y2="367.50000000000006"/> - <line stroke="#888888" x1="340.11416176133537" x2="351.20507085224455" y1="367.50000000000006" y2="367.50000000000006"/> - <line stroke="#888888" x1="351.20507085224455" x2="351.20507085224455" y1="367.50000000000006" y2="372.50000000000006"/> - <line stroke="#888888" x1="367.8414344886082" x2="367.8414344886082" y1="372.50000000000006" y2="367.50000000000006"/> - <line stroke="#888888" x1="367.8414344886082" x2="378.9323435795172" y1="367.50000000000006" y2="367.50000000000006"/> - <line stroke="#888888" x1="378.9323435795172" x2="378.9323435795172" y1="367.50000000000006" y2="372.50000000000006"/> - <line stroke="#888888" x1="202.27325267042633" x2="202.27325267042633" y1="387.9166666666668" y2="376.0833333333334"/> - <line stroke="#888888" x1="202.27325267042633" x2="202.77325267042633" y1="376.0833333333334" y2="376.0833333333334"/> - <line stroke="#888888" x1="202.77325267042633" x2="202.77325267042636" y1="376.0833333333334" y2="387.9166666666668"/> - <line stroke="#888888" x1="202.77325267042636" x2="202.27325267042633" y1="387.9166666666668" y2="387.9166666666668"/> - <line stroke="#888888" x1="193.7732526704264" x2="202.27325267042636" y1="481.0000000000001" y2="481.0000000000001"/> - <line stroke="#888888" x1="202.27325267042636" x2="202.27325267042636" y1="481.0000000000001" y2="481.5000000000001"/> - <line stroke="#888888" x1="202.27325267042636" x2="193.7732526704264" y1="481.5000000000001" y2="481.5000000000001"/> - <line stroke="#888888" x1="193.7732526704264" x2="193.7732526704264" y1="481.5000000000001" y2="481.0000000000001"/> - <line stroke="#888888" x1="167.02325267042633" x2="171.02325267042633" y1="376.0000000000001" y2="376.0000000000001"/> - <line stroke="#888888" x1="171.02325267042633" x2="171.02325267042633" y1="376.0000000000001" y2="388.0000000000001"/> - <line stroke="#888888" x1="171.02325267042633" x2="167.02325267042633" y1="388.0000000000001" y2="388.0000000000001"/> - <line stroke="#888888" x1="167.02325267042633" x2="167.02325267042633" y1="388.0000000000001" y2="376.0000000000001"/> - <line stroke="#888888" x1="179.02325267042633" x2="183.02325267042633" y1="377.50000000000006" y2="377.50000000000006"/> - <line stroke="#888888" x1="183.02325267042633" x2="183.02325267042633" y1="377.50000000000006" y2="386.50000000000006"/> - <line stroke="#888888" x1="183.02325267042633" x2="179.02325267042633" y1="386.50000000000006" y2="386.50000000000006"/> - <line stroke="#888888" x1="179.02325267042633" x2="179.02325267042633" y1="386.50000000000006" y2="377.50000000000006"/> - <line stroke="#888888" x1="142.52325267042636" x2="165.52325267042636" y1="376.0000000000001" y2="376.0000000000001"/> - <line stroke="#888888" x1="165.52325267042636" x2="165.52325267042636" y1="376.0000000000001" y2="388.0000000000001"/> - <line stroke="#888888" x1="165.52325267042636" x2="142.52325267042636" y1="388.0000000000001" y2="388.0000000000001"/> - <line stroke="#888888" x1="142.52325267042636" x2="142.52325267042636" y1="388.0000000000001" y2="376.0000000000001"/> - <line stroke="#888888" x1="137.02325267042636" x2="141.02325267042633" y1="376.0000000000001" y2="376.0000000000001"/> - <line stroke="#888888" x1="141.02325267042633" x2="141.02325267042633" y1="376.0000000000001" y2="388.0000000000001"/> - <line stroke="#888888" x1="141.02325267042633" x2="137.02325267042636" y1="388.0000000000001" y2="388.0000000000001"/> - <line stroke="#888888" x1="137.02325267042636" x2="137.02325267042636" y1="388.0000000000001" y2="376.0000000000001"/> - <line stroke="#888888" x1="114.52325267042633" x2="119.52325267042633" y1="376.3333333333334" y2="376.3333333333334"/> - <line stroke="#888888" x1="119.52325267042633" x2="119.52325267042634" y1="376.3333333333334" y2="387.6666666666668"/> - <line stroke="#888888" x1="119.52325267042634" x2="114.52325267042634" y1="387.6666666666668" y2="387.6666666666668"/> - <line stroke="#888888" x1="50.293912049626165" x2="50.293912049626165" y1="378.3985027328003" y2="369.46616757760023"/> - <line stroke="#888888" x1="50.293912049626165" x2="68.15858236002626" y1="369.46616757760023" y2="369.46616757760023"/> - <line stroke="#888888" x1="68.15858236002626" x2="68.15858236002626" y1="369.46616757760023" y2="378.3985027328003"/> - <line stroke="#888888" x1="22.23674174086841" x2="27.02781066601807" y1="274.96789528790873" y2="292.6965944551955"/> - <line stroke="#888888" x1="27.02781066601807" x2="26.545125737085613" y1="292.6965944551955" y2="292.82703700723084"/> - <line stroke="#888888" x1="26.545125737085613" x2="21.754056811935953" y1="292.82703700723084" y2="275.098337839944"/> - <line stroke="#888888" x1="21.754056811935953" x2="22.23674174086841" y1="275.098337839944" y2="274.96789528790873"/> - <line stroke="#888888" x1="27.027810666018013" x2="22.236741740868357" y1="197.30340554480492" y2="215.0321047120917"/> - <line stroke="#888888" x1="22.236741740868357" x2="21.7540568119359" y1="215.0321047120917" y2="214.90166216005642"/> - <line stroke="#888888" x1="21.7540568119359" x2="26.54512573708556" y1="214.90166216005642" y2="197.17296299276964"/> - <line stroke="#888888" x1="26.54512573708556" x2="27.027810666018013" y1="197.17296299276964" y2="197.30340554480492"/> - <line stroke="#888888" x1="68.15858236002603" x2="68.15858236002603" y1="111.60149726720016" y2="120.5338324224002"/> - <line stroke="#888888" x1="68.15858236002603" x2="50.293912049625966" y1="120.5338324224002" y2="120.53383242240022"/> - <line stroke="#888888" x1="50.293912049625966" x2="50.29391204962594" y1="120.53383242240022" y2="111.60149726720017"/> - <line stroke="#888888" x1="413.3565860037597" x2="413.3565860037597" y1="382.49999999999994" y2="370.83333333333337"/> - <line stroke="#888888" x1="413.3565860037597" x2="436.68991933709293" y1="370.83333333333337" y2="370.8333333333333"/> - <line stroke="#888888" x1="436.68991933709293" x2="436.68991933709293" y1="370.8333333333333" y2="382.49999999999994"/> - <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="503.0232526704263" x2="564.0232526704264" y1="113.00000000000001" y2="113.00000000000001"/> - <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="564.0232526704264" x2="564.0232526704264" y1="113.00000000000001" y2="137.00000000000003"/> - <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="564.0232526704264" x2="503.0232526704263" y1="137.00000000000003" y2="137.00000000000003"/> - <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="503.0232526704263" x2="503.0232526704263" y1="137.00000000000003" y2="113.00000000000001"/> - <line stroke="#000000" x1="503.0232526704263" x2="503.0232526704263" y1="106.00000000000001" y2="113.00000000000001"/> - <line stroke="#000000" x1="563.0232526704264" x2="503.0232526704263" y1="106.00000000000001" y2="106.00000000000001"/> - <line stroke="#000000" x1="563.0232526704264" x2="563.0232526704264" y1="113.00000000000001" y2="106.00000000000001"/> - <line stroke="#000000" x1="571.0232526704264" x2="564.0232526704264" y1="113.00000000000001" y2="113.00000000000001"/> - <line stroke="#000000" x1="571.0232526704264" x2="571.0232526704264" y1="137.00000000000003" y2="113.00000000000001"/> - <line stroke="#000000" x1="564.0232526704264" x2="571.0232526704264" y1="137.00000000000003" y2="137.00000000000003"/> - <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="564.0232526704264" x2="564.0232526704264" y1="137.00000000000003" y2="198.0"/> - <line stroke="#000000" x1="504.0232526704263" x2="564.0232526704264" y1="198.0" y2="198.0"/> - <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="504.0232526704263" x2="504.0232526704263" y1="137.00000000000003" y2="198.0"/> - <line stroke="#000000" x1="588.0232526704262" x2="564.0232526704264" y1="137.00000000000003" y2="137.00000000000003"/> - <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="588.0232526704262" x2="588.0232526704262" y1="137.00000000000003" y2="198.0"/> - <line stroke="#000000" x1="564.0232526704264" x2="588.0232526704262" y1="198.0" y2="198.0"/> - <line stroke="#000000" x1="648.0232526704264" x2="588.0232526704262" y1="137.00000000000003" y2="137.00000000000003"/> - <line stroke="#000000" x1="648.0232526704264" x2="648.0232526704264" y1="198.0" y2="137.00000000000003"/> - <line stroke="#000000" x1="588.0232526704262" x2="648.0232526704264" y1="198.0" y2="198.0"/> - <line stroke="#000000" x1="504.0232526704263" x2="480.0232526704263" y1="137.00000000000003" y2="137.00000000000003"/> - <line stroke="#000000" x1="480.0232526704263" x2="504.0232526704263" y1="198.0" y2="198.0"/> - <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="480.0232526704263" x2="480.0232526704263" y1="198.0" y2="137.00000000000003"/> - <line stroke="#000000" x1="470.0232526704263" x2="480.0232526704263" y1="198.0" y2="198.0"/> - <line stroke="#000000" x1="470.0232526704263" x2="470.0232526704263" y1="137.00000000000003" y2="198.0"/> - <line stroke="#000000" x1="480.0232526704263" x2="470.0232526704263" y1="137.00000000000003" y2="137.00000000000003"/> - <line stroke="#000000" x1="496.0232526704263" x2="503.0232526704263" y1="137.00000000000003" y2="137.00000000000003"/> - <line stroke="#000000" x1="496.0232526704263" x2="496.0232526704263" y1="113.00000000000001" y2="137.00000000000003"/> - <line stroke="#000000" x1="503.0232526704263" x2="496.0232526704263" y1="113.00000000000001" y2="113.00000000000001"/> - <line stroke="#888888" x1="552.1141617613354" x2="555.6141617613354" y1="107.75000000000001" y2="107.75000000000001"/> - <line stroke="#888888" x1="555.6141617613354" x2="552.1141617613354" y1="107.75000000000001" y2="111.25000000000001"/> - <line stroke="#888888" x1="552.1141617613354" x2="541.2050708522444" y1="111.25000000000001" y2="111.25000000000001"/> - <line stroke="#888888" x1="541.2050708522444" x2="537.7050708522446" y1="111.25000000000001" y2="107.75000000000001"/> - <line stroke="#888888" x1="537.7050708522446" x2="541.2050708522444" y1="107.75000000000001" y2="107.75000000000001"/> - <line stroke="#888888" x1="524.8414344886082" x2="528.3414344886082" y1="107.75000000000001" y2="107.75000000000001"/> - <line stroke="#888888" x1="528.3414344886082" x2="524.8414344886082" y1="107.75000000000001" y2="111.25000000000001"/> - <line stroke="#888888" x1="524.8414344886082" x2="513.9323435795172" y1="111.25000000000001" y2="111.25000000000001"/> - <line stroke="#888888" x1="513.9323435795172" x2="510.43234357951724" y1="111.25000000000001" y2="107.75000000000001"/> - <line stroke="#888888" x1="510.43234357951724" x2="513.9323435795172" y1="107.75000000000001" y2="107.75000000000001"/> - <line stroke="#888888" x1="569.2732526704264" x2="565.7732526704262" y1="129.0" y2="129.0"/> - <line stroke="#888888" x1="565.7732526704262" x2="565.7732526704262" y1="129.0" y2="121.00000000000001"/> - <line stroke="#888888" x1="565.7732526704262" x2="569.2732526704264" y1="121.00000000000001" y2="121.00000000000001"/> - <line stroke="#888888" x1="511.5232526704263" x2="511.5232526704263" y1="188.50000000000003" y2="170.5"/> - <line stroke="#888888" x1="511.5232526704263" x2="546.5232526704264" y1="170.5" y2="170.5"/> - <line stroke="#888888" x1="546.5232526704264" x2="546.5232526704264" y1="170.5" y2="188.50000000000003"/> - <line stroke="#888888" x1="546.5232526704264" x2="511.5232526704263" y1="188.50000000000003" y2="188.50000000000003"/> - <line stroke="#888888" x1="564.5232526704264" x2="564.5232526704264" y1="150.25" y2="147.25000000000003"/> - <line stroke="#888888" x1="564.5232526704264" x2="567.5232526704262" y1="147.25000000000003" y2="147.25000000000003"/> - <line stroke="#888888" x1="567.5232526704262" x2="567.5232526704262" y1="147.25000000000003" y2="150.25"/> - <line stroke="#888888" x1="567.5232526704262" x2="564.5232526704264" y1="150.25" y2="150.25"/> - <line stroke="#888888" x1="585.5232526704262" x2="585.5232526704262" y1="149.25000000000003" y2="148.25"/> - <line stroke="#888888" x1="585.5232526704262" x2="586.5232526704262" y1="148.25" y2="148.25"/> - <line stroke="#888888" x1="586.5232526704262" x2="586.5232526704262" y1="148.25" y2="149.25000000000003"/> - <line stroke="#888888" x1="586.5232526704262" x2="585.5232526704262" y1="149.25000000000003" y2="149.25000000000003"/> - <line stroke="#888888" x1="565.5232526704264" x2="565.5232526704264" y1="151.75000000000003" y2="150.75000000000003"/> - <line stroke="#888888" x1="565.5232526704264" x2="566.5232526704264" y1="150.75000000000003" y2="150.75000000000003"/> - <line stroke="#888888" x1="566.5232526704264" x2="566.5232526704264" y1="150.75000000000003" y2="151.75000000000003"/> - <line stroke="#888888" x1="566.5232526704264" x2="565.5232526704264" y1="151.75000000000003" y2="151.75000000000003"/> - <line stroke="#888888" x1="585.5232526704262" x2="585.5232526704262" y1="151.75000000000003" y2="150.75000000000003"/> - <line stroke="#888888" x1="585.5232526704262" x2="586.5232526704262" y1="150.75000000000003" y2="150.75000000000003"/> - <line stroke="#888888" x1="586.5232526704262" x2="586.5232526704262" y1="150.75000000000003" y2="151.75000000000003"/> - <line stroke="#888888" x1="586.5232526704262" x2="585.5232526704262" y1="151.75000000000003" y2="151.75000000000003"/> - <line stroke="#888888" x1="565.5232526704264" x2="565.5232526704264" y1="154.25000000000003" y2="153.25000000000003"/> - <line stroke="#888888" x1="565.5232526704264" x2="566.5232526704264" y1="153.25000000000003" y2="153.25000000000003"/> - <line stroke="#888888" x1="566.5232526704264" x2="566.5232526704264" y1="153.25000000000003" y2="154.25000000000003"/> - <line stroke="#888888" x1="566.5232526704264" x2="565.5232526704264" y1="154.25000000000003" y2="154.25000000000003"/> - <line stroke="#888888" x1="585.5232526704262" x2="585.5232526704262" y1="154.25000000000003" y2="153.25000000000003"/> - <line stroke="#888888" x1="585.5232526704262" x2="586.5232526704262" y1="153.25000000000003" y2="153.25000000000003"/> - <line stroke="#888888" x1="586.5232526704262" x2="586.5232526704262" y1="153.25000000000003" y2="154.25000000000003"/> - <line stroke="#888888" x1="586.5232526704262" x2="585.5232526704262" y1="154.25000000000003" y2="154.25000000000003"/> - <line stroke="#888888" x1="565.5232526704264" x2="565.5232526704264" y1="156.75" y2="155.75000000000003"/> - <line stroke="#888888" x1="565.5232526704264" x2="566.5232526704264" y1="155.75000000000003" y2="155.75000000000003"/> - <line stroke="#888888" x1="566.5232526704264" x2="566.5232526704264" y1="155.75000000000003" y2="156.75"/> - <line stroke="#888888" x1="566.5232526704264" x2="565.5232526704264" y1="156.75" y2="156.75"/> - <line stroke="#888888" x1="585.5232526704262" x2="585.5232526704262" y1="156.75" y2="155.75000000000003"/> - <line stroke="#888888" x1="585.5232526704262" x2="586.5232526704262" y1="155.75000000000003" y2="155.75000000000003"/> - <line stroke="#888888" x1="586.5232526704262" x2="586.5232526704262" y1="155.75000000000003" y2="156.75"/> - <line stroke="#888888" x1="586.5232526704262" x2="585.5232526704262" y1="156.75" y2="156.75"/> - <line stroke="#888888" x1="565.5232526704264" x2="565.5232526704264" y1="159.25" y2="158.25000000000003"/> - <line stroke="#888888" x1="565.5232526704264" x2="566.5232526704264" y1="158.25000000000003" y2="158.25000000000003"/> - <line stroke="#888888" x1="566.5232526704264" x2="566.5232526704264" y1="158.25000000000003" y2="159.25"/> - <line stroke="#888888" x1="566.5232526704264" x2="565.5232526704264" y1="159.25" y2="159.25"/> - <line stroke="#888888" x1="585.5232526704262" x2="585.5232526704262" y1="159.25" y2="158.25000000000003"/> - <line stroke="#888888" x1="585.5232526704262" x2="586.5232526704262" y1="158.25000000000003" y2="158.25000000000003"/> - <line stroke="#888888" x1="586.5232526704262" x2="586.5232526704262" y1="158.25000000000003" y2="159.25"/> - <line stroke="#888888" x1="586.5232526704262" x2="585.5232526704262" y1="159.25" y2="159.25"/> - <line stroke="#888888" x1="565.5232526704264" x2="565.5232526704264" y1="161.75" y2="160.75000000000003"/> - <line stroke="#888888" x1="565.5232526704264" x2="566.5232526704264" y1="160.75000000000003" y2="160.75000000000003"/> - <line stroke="#888888" x1="566.5232526704264" x2="566.5232526704264" y1="160.75000000000003" y2="161.75"/> - <line stroke="#888888" x1="566.5232526704264" x2="565.5232526704264" y1="161.75" y2="161.75"/> - <line stroke="#888888" x1="585.5232526704262" x2="585.5232526704262" y1="161.75" y2="160.75000000000003"/> - <line stroke="#888888" x1="585.5232526704262" x2="586.5232526704262" y1="160.75000000000003" y2="160.75000000000003"/> - <line stroke="#888888" x1="586.5232526704262" x2="586.5232526704262" y1="160.75000000000003" y2="161.75"/> - <line stroke="#888888" x1="586.5232526704262" x2="585.5232526704262" y1="161.75" y2="161.75"/> - <line stroke="#888888" x1="565.5232526704264" x2="565.5232526704264" y1="164.25000000000003" y2="163.25000000000003"/> - <line stroke="#888888" x1="565.5232526704264" x2="566.5232526704264" y1="163.25000000000003" y2="163.25000000000003"/> - <line stroke="#888888" x1="566.5232526704264" x2="566.5232526704264" y1="163.25000000000003" y2="164.25000000000003"/> - <line stroke="#888888" x1="566.5232526704264" x2="565.5232526704264" y1="164.25000000000003" y2="164.25000000000003"/> - <line stroke="#888888" x1="585.5232526704262" x2="585.5232526704262" y1="164.25000000000003" y2="163.25000000000003"/> - <line stroke="#888888" x1="585.5232526704262" x2="586.5232526704262" y1="163.25000000000003" y2="163.25000000000003"/> - <line stroke="#888888" x1="586.5232526704262" x2="586.5232526704262" y1="163.25000000000003" y2="164.25000000000003"/> - <line stroke="#888888" x1="586.5232526704262" x2="585.5232526704262" y1="164.25000000000003" y2="164.25000000000003"/> - <line stroke="#888888" x1="565.5232526704264" x2="565.5232526704264" y1="166.75000000000003" y2="165.75"/> - <line stroke="#888888" x1="565.5232526704264" x2="566.5232526704264" y1="165.75" y2="165.75"/> - <line stroke="#888888" x1="566.5232526704264" x2="566.5232526704264" y1="165.75" y2="166.75000000000003"/> - <line stroke="#888888" x1="566.5232526704264" x2="565.5232526704264" y1="166.75000000000003" y2="166.75000000000003"/> - <line stroke="#888888" x1="585.5232526704262" x2="585.5232526704262" y1="166.75000000000003" y2="165.75"/> - <line stroke="#888888" x1="585.5232526704262" x2="586.5232526704262" y1="165.75" y2="165.75"/> - <line stroke="#888888" x1="586.5232526704262" x2="586.5232526704262" y1="165.75" y2="166.75000000000003"/> - <line stroke="#888888" x1="586.5232526704262" x2="585.5232526704262" y1="166.75000000000003" y2="166.75000000000003"/> - <line stroke="#888888" x1="565.5232526704264" x2="565.5232526704264" y1="169.25000000000003" y2="168.25"/> - <line stroke="#888888" x1="565.5232526704264" x2="566.5232526704264" y1="168.25" y2="168.25"/> - <line stroke="#888888" x1="566.5232526704264" x2="566.5232526704264" y1="168.25" y2="169.25000000000003"/> - <line stroke="#888888" x1="566.5232526704264" x2="565.5232526704264" y1="169.25000000000003" y2="169.25000000000003"/> - <line stroke="#888888" x1="585.5232526704262" x2="585.5232526704262" y1="169.25000000000003" y2="168.25"/> - <line stroke="#888888" x1="585.5232526704262" x2="586.5232526704262" y1="168.25" y2="168.25"/> - <line stroke="#888888" x1="586.5232526704262" x2="586.5232526704262" y1="168.25" y2="169.25000000000003"/> - <line stroke="#888888" x1="586.5232526704262" x2="585.5232526704262" y1="169.25000000000003" y2="169.25000000000003"/> - <line stroke="#888888" x1="565.5232526704264" x2="565.5232526704264" y1="171.75000000000003" y2="170.75"/> - <line stroke="#888888" x1="565.5232526704264" x2="566.5232526704264" y1="170.75" y2="170.75"/> - <line stroke="#888888" x1="566.5232526704264" x2="566.5232526704264" y1="170.75" y2="171.75000000000003"/> - <line stroke="#888888" x1="566.5232526704264" x2="565.5232526704264" y1="171.75000000000003" y2="171.75000000000003"/> - <line stroke="#888888" x1="585.5232526704262" x2="585.5232526704262" y1="171.75000000000003" y2="170.75"/> - <line stroke="#888888" x1="585.5232526704262" x2="586.5232526704262" y1="170.75" y2="170.75"/> - <line stroke="#888888" x1="586.5232526704262" x2="586.5232526704262" y1="170.75" y2="171.75000000000003"/> - <line stroke="#888888" x1="586.5232526704262" x2="585.5232526704262" y1="171.75000000000003" y2="171.75000000000003"/> - <line stroke="#888888" x1="565.5232526704264" x2="565.5232526704264" y1="174.25000000000003" y2="173.25000000000003"/> - <line stroke="#888888" x1="565.5232526704264" x2="566.5232526704264" y1="173.25000000000003" y2="173.25000000000003"/> - <line stroke="#888888" x1="566.5232526704264" x2="566.5232526704264" y1="173.25000000000003" y2="174.25000000000003"/> - <line stroke="#888888" x1="566.5232526704264" x2="565.5232526704264" y1="174.25000000000003" y2="174.25000000000003"/> - <line stroke="#888888" x1="585.5232526704262" x2="585.5232526704262" y1="174.25000000000003" y2="173.25000000000003"/> - <line stroke="#888888" x1="585.5232526704262" x2="586.5232526704262" y1="173.25000000000003" y2="173.25000000000003"/> - <line stroke="#888888" x1="586.5232526704262" x2="586.5232526704262" y1="173.25000000000003" y2="174.25000000000003"/> - <line stroke="#888888" x1="586.5232526704262" x2="585.5232526704262" y1="174.25000000000003" y2="174.25000000000003"/> - <line stroke="#888888" x1="565.5232526704264" x2="565.5232526704264" y1="176.75000000000003" y2="175.75000000000003"/> - <line stroke="#888888" x1="565.5232526704264" x2="566.5232526704264" y1="175.75000000000003" y2="175.75000000000003"/> - <line stroke="#888888" x1="566.5232526704264" x2="566.5232526704264" y1="175.75000000000003" y2="176.75000000000003"/> - <line stroke="#888888" x1="566.5232526704264" x2="565.5232526704264" y1="176.75000000000003" y2="176.75000000000003"/> - <line stroke="#888888" x1="585.5232526704262" x2="585.5232526704262" y1="176.75000000000003" y2="175.75000000000003"/> - <line stroke="#888888" x1="585.5232526704262" x2="586.5232526704262" y1="175.75000000000003" y2="175.75000000000003"/> - <line stroke="#888888" x1="586.5232526704262" x2="586.5232526704262" y1="175.75000000000003" y2="176.75000000000003"/> - <line stroke="#888888" x1="586.5232526704262" x2="585.5232526704262" y1="176.75000000000003" y2="176.75000000000003"/> - <line stroke="#888888" x1="565.5232526704264" x2="565.5232526704264" y1="179.25000000000003" y2="178.25000000000003"/> - <line stroke="#888888" x1="565.5232526704264" x2="566.5232526704264" y1="178.25000000000003" y2="178.25000000000003"/> - <line stroke="#888888" x1="566.5232526704264" x2="566.5232526704264" y1="178.25000000000003" y2="179.25000000000003"/> - <line stroke="#888888" x1="566.5232526704264" x2="565.5232526704264" y1="179.25000000000003" y2="179.25000000000003"/> - <line stroke="#888888" x1="585.5232526704262" x2="585.5232526704262" y1="179.25000000000003" y2="178.25000000000003"/> - <line stroke="#888888" x1="585.5232526704262" x2="586.5232526704262" y1="178.25000000000003" y2="178.25000000000003"/> - <line stroke="#888888" x1="586.5232526704262" x2="586.5232526704262" y1="178.25000000000003" y2="179.25000000000003"/> - <line stroke="#888888" x1="586.5232526704262" x2="585.5232526704262" y1="179.25000000000003" y2="179.25000000000003"/> - <line stroke="#888888" x1="565.5232526704264" x2="565.5232526704264" y1="181.75" y2="180.75000000000003"/> - <line stroke="#888888" x1="565.5232526704264" x2="566.5232526704264" y1="180.75000000000003" y2="180.75000000000003"/> - <line stroke="#888888" x1="566.5232526704264" x2="566.5232526704264" y1="180.75000000000003" y2="181.75"/> - <line stroke="#888888" x1="566.5232526704264" x2="565.5232526704264" y1="181.75" y2="181.75"/> - <line stroke="#888888" x1="585.5232526704262" x2="585.5232526704262" y1="181.75" y2="180.75000000000003"/> - <line stroke="#888888" x1="585.5232526704262" x2="586.5232526704262" y1="180.75000000000003" y2="180.75000000000003"/> - <line stroke="#888888" x1="586.5232526704262" x2="586.5232526704262" y1="180.75000000000003" y2="181.75"/> - <line stroke="#888888" x1="586.5232526704262" x2="585.5232526704262" y1="181.75" y2="181.75"/> - <line stroke="#888888" x1="565.5232526704264" x2="565.5232526704264" y1="184.25" y2="183.25000000000003"/> - <line stroke="#888888" x1="565.5232526704264" x2="566.5232526704264" y1="183.25000000000003" y2="183.25000000000003"/> - <line stroke="#888888" x1="566.5232526704264" x2="566.5232526704264" y1="183.25000000000003" y2="184.25"/> - <line stroke="#888888" x1="566.5232526704264" x2="565.5232526704264" y1="184.25" y2="184.25"/> - <line stroke="#888888" x1="585.5232526704262" x2="585.5232526704262" y1="184.25" y2="183.25000000000003"/> - <line stroke="#888888" x1="585.5232526704262" x2="586.5232526704262" y1="183.25000000000003" y2="183.25000000000003"/> - <line stroke="#888888" x1="586.5232526704262" x2="586.5232526704262" y1="183.25000000000003" y2="184.25"/> - <line stroke="#888888" x1="586.5232526704262" x2="585.5232526704262" y1="184.25" y2="184.25"/> - <line stroke="#888888" x1="565.5232526704264" x2="565.5232526704264" y1="186.75" y2="185.75000000000003"/> - <line stroke="#888888" x1="565.5232526704264" x2="566.5232526704264" y1="185.75000000000003" y2="185.75000000000003"/> - <line stroke="#888888" x1="566.5232526704264" x2="566.5232526704264" y1="185.75000000000003" y2="186.75"/> - <line stroke="#888888" x1="566.5232526704264" x2="565.5232526704264" y1="186.75" y2="186.75"/> - <line stroke="#888888" x1="584.5232526704264" x2="584.5232526704264" y1="187.75000000000003" y2="184.75000000000003"/> - <line stroke="#888888" x1="584.5232526704264" x2="587.5232526704262" y1="184.75000000000003" y2="184.75000000000003"/> - <line stroke="#888888" x1="587.5232526704262" x2="587.5232526704262" y1="184.75000000000003" y2="187.75000000000003"/> - <line stroke="#888888" x1="587.5232526704262" x2="584.5232526704264" y1="187.75000000000003" y2="187.75000000000003"/> - <line stroke="#888888" x1="580.2732526704264" x2="571.7732526704262" y1="144.75000000000003" y2="144.75000000000003"/> - <line stroke="#888888" x1="571.7732526704262" x2="571.7732526704262" y1="144.75000000000003" y2="144.25000000000003"/> - <line stroke="#888888" x1="571.7732526704262" x2="580.2732526704264" y1="144.25000000000003" y2="144.25000000000003"/> - <line stroke="#888888" x1="580.2732526704264" x2="580.2732526704264" y1="144.25000000000003" y2="144.75000000000003"/> - <line stroke="#888888" x1="571.7732526704262" x2="580.2732526704264" y1="192.50000000000003" y2="192.50000000000003"/> - <line stroke="#888888" x1="580.2732526704264" x2="580.2732526704264" y1="192.50000000000003" y2="193.00000000000003"/> - <line stroke="#888888" x1="580.2732526704264" x2="571.7732526704262" y1="193.00000000000003" y2="193.00000000000003"/> - <line stroke="#888888" x1="571.7732526704262" x2="571.7732526704262" y1="193.00000000000003" y2="192.50000000000003"/> - <line stroke="#888888" x1="603.0232526704264" x2="603.0232526704264" y1="188.00000000000003" y2="175.0"/> - <line stroke="#888888" x1="603.0232526704264" x2="633.0232526704262" y1="175.0" y2="175.0"/> - <line stroke="#888888" x1="633.0232526704262" x2="633.0232526704262" y1="175.0" y2="188.00000000000003"/> - <line stroke="#888888" x1="633.0232526704262" x2="603.0232526704264" y1="188.00000000000003" y2="188.00000000000003"/> - <line stroke="#888888" x1="610.0914344886081" x2="598.6823435795171" y1="142.50000000000003" y2="142.50000000000003"/> - <line stroke="#888888" x1="598.6823435795171" x2="598.6823435795171" y1="142.50000000000003" y2="142.00000000000003"/> - <line stroke="#888888" x1="598.6823435795171" x2="610.0914344886081" y1="142.00000000000003" y2="142.00000000000003"/> - <line stroke="#888888" x1="610.0914344886081" x2="610.0914344886081" y1="142.00000000000003" y2="142.50000000000003"/> - <line stroke="#888888" x1="637.3641617613355" x2="625.9550708522444" y1="142.50000000000003" y2="142.50000000000003"/> - <line stroke="#888888" x1="625.9550708522444" x2="625.9550708522444" y1="142.50000000000003" y2="142.00000000000003"/> - <line stroke="#888888" x1="625.9550708522444" x2="637.3641617613355" y1="142.00000000000003" y2="142.00000000000003"/> - <line stroke="#888888" x1="637.3641617613355" x2="637.3641617613355" y1="142.00000000000003" y2="142.50000000000003"/> - <line stroke="#888888" x1="640.2732526704264" x2="640.2732526704264" y1="159.43181818181822" y2="147.84090909090912"/> - <line stroke="#888888" x1="640.2732526704264" x2="640.7732526704264" y1="147.84090909090912" y2="147.84090909090912"/> - <line stroke="#888888" x1="640.7732526704264" x2="640.7732526704264" y1="147.84090909090912" y2="159.43181818181822"/> - <line stroke="#888888" x1="640.7732526704264" x2="640.2732526704264" y1="159.43181818181822" y2="159.43181818181822"/> - <line stroke="#888888" x1="640.2732526704264" x2="640.2732526704264" y1="187.15909090909093" y2="175.5681818181818"/> - <line stroke="#888888" x1="640.2732526704264" x2="640.7732526704264" y1="175.5681818181818" y2="175.5681818181818"/> - <line stroke="#888888" x1="640.7732526704264" x2="640.7732526704264" y1="175.5681818181818" y2="187.15909090909093"/> - <line stroke="#888888" x1="640.7732526704264" x2="640.2732526704264" y1="187.15909090909093" y2="187.15909090909093"/> - <line stroke="#888888" x1="480.5232526704263" x2="480.5232526704263" y1="150.25" y2="147.25000000000003"/> - <line stroke="#888888" x1="480.5232526704263" x2="483.5232526704263" y1="147.25000000000003" y2="147.25000000000003"/> - <line stroke="#888888" x1="483.5232526704263" x2="483.5232526704263" y1="147.25000000000003" y2="150.25"/> - <line stroke="#888888" x1="483.5232526704263" x2="480.5232526704263" y1="150.25" y2="150.25"/> - <line stroke="#888888" x1="501.5232526704263" x2="501.5232526704263" y1="149.25000000000003" y2="148.25"/> - <line stroke="#888888" x1="501.5232526704263" x2="502.5232526704263" y1="148.25" y2="148.25"/> - <line stroke="#888888" x1="502.5232526704263" x2="502.5232526704263" y1="148.25" y2="149.25000000000003"/> - <line stroke="#888888" x1="502.5232526704263" x2="501.5232526704263" y1="149.25000000000003" y2="149.25000000000003"/> - <line stroke="#888888" x1="481.5232526704263" x2="481.5232526704263" y1="151.75000000000003" y2="150.75000000000003"/> - <line stroke="#888888" x1="481.5232526704263" x2="482.52325267042636" y1="150.75000000000003" y2="150.75000000000003"/> - <line stroke="#888888" x1="482.52325267042636" x2="482.52325267042636" y1="150.75000000000003" y2="151.75000000000003"/> - <line stroke="#888888" x1="482.52325267042636" x2="481.5232526704263" y1="151.75000000000003" y2="151.75000000000003"/> - <line stroke="#888888" x1="501.5232526704263" x2="501.5232526704263" y1="151.75000000000003" y2="150.75000000000003"/> - <line stroke="#888888" x1="501.5232526704263" x2="502.5232526704263" y1="150.75000000000003" y2="150.75000000000003"/> - <line stroke="#888888" x1="502.5232526704263" x2="502.5232526704263" y1="150.75000000000003" y2="151.75000000000003"/> - <line stroke="#888888" x1="502.5232526704263" x2="501.5232526704263" y1="151.75000000000003" y2="151.75000000000003"/> - <line stroke="#888888" x1="481.5232526704263" x2="481.5232526704263" y1="154.25000000000003" y2="153.25000000000003"/> - <line stroke="#888888" x1="481.5232526704263" x2="482.52325267042636" y1="153.25000000000003" y2="153.25000000000003"/> - <line stroke="#888888" x1="482.52325267042636" x2="482.52325267042636" y1="153.25000000000003" y2="154.25000000000003"/> - <line stroke="#888888" x1="482.52325267042636" x2="481.5232526704263" y1="154.25000000000003" y2="154.25000000000003"/> - <line stroke="#888888" x1="501.5232526704263" x2="501.5232526704263" y1="154.25000000000003" y2="153.25000000000003"/> - <line stroke="#888888" x1="501.5232526704263" x2="502.5232526704263" y1="153.25000000000003" y2="153.25000000000003"/> - <line stroke="#888888" x1="502.5232526704263" x2="502.5232526704263" y1="153.25000000000003" y2="154.25000000000003"/> - <line stroke="#888888" x1="502.5232526704263" x2="501.5232526704263" y1="154.25000000000003" y2="154.25000000000003"/> - <line stroke="#888888" x1="481.5232526704263" x2="481.5232526704263" y1="156.75" y2="155.75000000000003"/> - <line stroke="#888888" x1="481.5232526704263" x2="482.52325267042636" y1="155.75000000000003" y2="155.75000000000003"/> - <line stroke="#888888" x1="482.52325267042636" x2="482.52325267042636" y1="155.75000000000003" y2="156.75"/> - <line stroke="#888888" x1="482.52325267042636" x2="481.5232526704263" y1="156.75" y2="156.75"/> - <line stroke="#888888" x1="501.5232526704263" x2="501.5232526704263" y1="156.75" y2="155.75000000000003"/> - <line stroke="#888888" x1="501.5232526704263" x2="502.5232526704263" y1="155.75000000000003" y2="155.75000000000003"/> - <line stroke="#888888" x1="502.5232526704263" x2="502.5232526704263" y1="155.75000000000003" y2="156.75"/> - <line stroke="#888888" x1="502.5232526704263" x2="501.5232526704263" y1="156.75" y2="156.75"/> - <line stroke="#888888" x1="481.5232526704263" x2="481.5232526704263" y1="159.25" y2="158.25000000000003"/> - <line stroke="#888888" x1="481.5232526704263" x2="482.52325267042636" y1="158.25000000000003" y2="158.25000000000003"/> - <line stroke="#888888" x1="482.52325267042636" x2="482.52325267042636" y1="158.25000000000003" y2="159.25"/> - <line stroke="#888888" x1="482.52325267042636" x2="481.5232526704263" y1="159.25" y2="159.25"/> - <line stroke="#888888" x1="501.5232526704263" x2="501.5232526704263" y1="159.25" y2="158.25000000000003"/> - <line stroke="#888888" x1="501.5232526704263" x2="502.5232526704263" y1="158.25000000000003" y2="158.25000000000003"/> - <line stroke="#888888" x1="502.5232526704263" x2="502.5232526704263" y1="158.25000000000003" y2="159.25"/> - <line stroke="#888888" x1="502.5232526704263" x2="501.5232526704263" y1="159.25" y2="159.25"/> - <line stroke="#888888" x1="481.5232526704263" x2="481.5232526704263" y1="161.75" y2="160.75000000000003"/> - <line stroke="#888888" x1="481.5232526704263" x2="482.52325267042636" y1="160.75000000000003" y2="160.75000000000003"/> - <line stroke="#888888" x1="482.52325267042636" x2="482.52325267042636" y1="160.75000000000003" y2="161.75"/> - <line stroke="#888888" x1="482.52325267042636" x2="481.5232526704263" y1="161.75" y2="161.75"/> - <line stroke="#888888" x1="501.5232526704263" x2="501.5232526704263" y1="161.75" y2="160.75000000000003"/> - <line stroke="#888888" x1="501.5232526704263" x2="502.5232526704263" y1="160.75000000000003" y2="160.75000000000003"/> - <line stroke="#888888" x1="502.5232526704263" x2="502.5232526704263" y1="160.75000000000003" y2="161.75"/> - <line stroke="#888888" x1="502.5232526704263" x2="501.5232526704263" y1="161.75" y2="161.75"/> - <line stroke="#888888" x1="481.5232526704263" x2="481.5232526704263" y1="164.25000000000003" y2="163.25000000000003"/> - <line stroke="#888888" x1="481.5232526704263" x2="482.52325267042636" y1="163.25000000000003" y2="163.25000000000003"/> - <line stroke="#888888" x1="482.52325267042636" x2="482.52325267042636" y1="163.25000000000003" y2="164.25000000000003"/> - <line stroke="#888888" x1="482.52325267042636" x2="481.5232526704263" y1="164.25000000000003" y2="164.25000000000003"/> - <line stroke="#888888" x1="501.5232526704263" x2="501.5232526704263" y1="164.25000000000003" y2="163.25000000000003"/> - <line stroke="#888888" x1="501.5232526704263" x2="502.5232526704263" y1="163.25000000000003" y2="163.25000000000003"/> - <line stroke="#888888" x1="502.5232526704263" x2="502.5232526704263" y1="163.25000000000003" y2="164.25000000000003"/> - <line stroke="#888888" x1="502.5232526704263" x2="501.5232526704263" y1="164.25000000000003" y2="164.25000000000003"/> - <line stroke="#888888" x1="481.5232526704263" x2="481.5232526704263" y1="166.75000000000003" y2="165.75"/> - <line stroke="#888888" x1="481.5232526704263" x2="482.52325267042636" y1="165.75" y2="165.75"/> - <line stroke="#888888" x1="482.52325267042636" x2="482.52325267042636" y1="165.75" y2="166.75000000000003"/> - <line stroke="#888888" x1="482.52325267042636" x2="481.5232526704263" y1="166.75000000000003" y2="166.75000000000003"/> - <line stroke="#888888" x1="501.5232526704263" x2="501.5232526704263" y1="166.75000000000003" y2="165.75"/> - <line stroke="#888888" x1="501.5232526704263" x2="502.5232526704263" y1="165.75" y2="165.75"/> - <line stroke="#888888" x1="502.5232526704263" x2="502.5232526704263" y1="165.75" y2="166.75000000000003"/> - <line stroke="#888888" x1="502.5232526704263" x2="501.5232526704263" y1="166.75000000000003" y2="166.75000000000003"/> - <line stroke="#888888" x1="481.5232526704263" x2="481.5232526704263" y1="169.25000000000003" y2="168.25"/> - <line stroke="#888888" x1="481.5232526704263" x2="482.52325267042636" y1="168.25" y2="168.25"/> - <line stroke="#888888" x1="482.52325267042636" x2="482.52325267042636" y1="168.25" y2="169.25000000000003"/> - <line stroke="#888888" x1="482.52325267042636" x2="481.5232526704263" y1="169.25000000000003" y2="169.25000000000003"/> - <line stroke="#888888" x1="501.5232526704263" x2="501.5232526704263" y1="169.25000000000003" y2="168.25"/> - <line stroke="#888888" x1="501.5232526704263" x2="502.5232526704263" y1="168.25" y2="168.25"/> - <line stroke="#888888" x1="502.5232526704263" x2="502.5232526704263" y1="168.25" y2="169.25000000000003"/> - <line stroke="#888888" x1="502.5232526704263" x2="501.5232526704263" y1="169.25000000000003" y2="169.25000000000003"/> - <line stroke="#888888" x1="481.5232526704263" x2="481.5232526704263" y1="171.75000000000003" y2="170.75"/> - <line stroke="#888888" x1="481.5232526704263" x2="482.52325267042636" y1="170.75" y2="170.75"/> - <line stroke="#888888" x1="482.52325267042636" x2="482.52325267042636" y1="170.75" y2="171.75000000000003"/> - <line stroke="#888888" x1="482.52325267042636" x2="481.5232526704263" y1="171.75000000000003" y2="171.75000000000003"/> - <line stroke="#888888" x1="501.5232526704263" x2="501.5232526704263" y1="171.75000000000003" y2="170.75"/> - <line stroke="#888888" x1="501.5232526704263" x2="502.5232526704263" y1="170.75" y2="170.75"/> - <line stroke="#888888" x1="502.5232526704263" x2="502.5232526704263" y1="170.75" y2="171.75000000000003"/> - <line stroke="#888888" x1="502.5232526704263" x2="501.5232526704263" y1="171.75000000000003" y2="171.75000000000003"/> - <line stroke="#888888" x1="481.5232526704263" x2="481.5232526704263" y1="174.25000000000003" y2="173.25000000000003"/> - <line stroke="#888888" x1="481.5232526704263" x2="482.52325267042636" y1="173.25000000000003" y2="173.25000000000003"/> - <line stroke="#888888" x1="482.52325267042636" x2="482.52325267042636" y1="173.25000000000003" y2="174.25000000000003"/> - <line stroke="#888888" x1="482.52325267042636" x2="481.5232526704263" y1="174.25000000000003" y2="174.25000000000003"/> - <line stroke="#888888" x1="501.5232526704263" x2="501.5232526704263" y1="174.25000000000003" y2="173.25000000000003"/> - <line stroke="#888888" x1="501.5232526704263" x2="502.5232526704263" y1="173.25000000000003" y2="173.25000000000003"/> - <line stroke="#888888" x1="502.5232526704263" x2="502.5232526704263" y1="173.25000000000003" y2="174.25000000000003"/> - <line stroke="#888888" x1="502.5232526704263" x2="501.5232526704263" y1="174.25000000000003" y2="174.25000000000003"/> - <line stroke="#888888" x1="481.5232526704263" x2="481.5232526704263" y1="176.75000000000003" y2="175.75000000000003"/> - <line stroke="#888888" x1="481.5232526704263" x2="482.52325267042636" y1="175.75000000000003" y2="175.75000000000003"/> - <line stroke="#888888" x1="482.52325267042636" x2="482.52325267042636" y1="175.75000000000003" y2="176.75000000000003"/> - <line stroke="#888888" x1="482.52325267042636" x2="481.5232526704263" y1="176.75000000000003" y2="176.75000000000003"/> - <line stroke="#888888" x1="501.5232526704263" x2="501.5232526704263" y1="176.75000000000003" y2="175.75000000000003"/> - <line stroke="#888888" x1="501.5232526704263" x2="502.5232526704263" y1="175.75000000000003" y2="175.75000000000003"/> - <line stroke="#888888" x1="502.5232526704263" x2="502.5232526704263" y1="175.75000000000003" y2="176.75000000000003"/> - <line stroke="#888888" x1="502.5232526704263" x2="501.5232526704263" y1="176.75000000000003" y2="176.75000000000003"/> - <line stroke="#888888" x1="481.5232526704263" x2="481.5232526704263" y1="179.25000000000003" y2="178.25000000000003"/> - <line stroke="#888888" x1="481.5232526704263" x2="482.52325267042636" y1="178.25000000000003" y2="178.25000000000003"/> - <line stroke="#888888" x1="482.52325267042636" x2="482.52325267042636" y1="178.25000000000003" y2="179.25000000000003"/> - <line stroke="#888888" x1="482.52325267042636" x2="481.5232526704263" y1="179.25000000000003" y2="179.25000000000003"/> - <line stroke="#888888" x1="501.5232526704263" x2="501.5232526704263" y1="179.25000000000003" y2="178.25000000000003"/> - <line stroke="#888888" x1="501.5232526704263" x2="502.5232526704263" y1="178.25000000000003" y2="178.25000000000003"/> - <line stroke="#888888" x1="502.5232526704263" x2="502.5232526704263" y1="178.25000000000003" y2="179.25000000000003"/> - <line stroke="#888888" x1="502.5232526704263" x2="501.5232526704263" y1="179.25000000000003" y2="179.25000000000003"/> - <line stroke="#888888" x1="481.5232526704263" x2="481.5232526704263" y1="181.75" y2="180.75000000000003"/> - <line stroke="#888888" x1="481.5232526704263" x2="482.52325267042636" y1="180.75000000000003" y2="180.75000000000003"/> - <line stroke="#888888" x1="482.52325267042636" x2="482.52325267042636" y1="180.75000000000003" y2="181.75"/> - <line stroke="#888888" x1="482.52325267042636" x2="481.5232526704263" y1="181.75" y2="181.75"/> - <line stroke="#888888" x1="501.5232526704263" x2="501.5232526704263" y1="181.75" y2="180.75000000000003"/> - <line stroke="#888888" x1="501.5232526704263" x2="502.5232526704263" y1="180.75000000000003" y2="180.75000000000003"/> - <line stroke="#888888" x1="502.5232526704263" x2="502.5232526704263" y1="180.75000000000003" y2="181.75"/> - <line stroke="#888888" x1="502.5232526704263" x2="501.5232526704263" y1="181.75" y2="181.75"/> - <line stroke="#888888" x1="481.5232526704263" x2="481.5232526704263" y1="184.25" y2="183.25000000000003"/> - <line stroke="#888888" x1="481.5232526704263" x2="482.52325267042636" y1="183.25000000000003" y2="183.25000000000003"/> - <line stroke="#888888" x1="482.52325267042636" x2="482.52325267042636" y1="183.25000000000003" y2="184.25"/> - <line stroke="#888888" x1="482.52325267042636" x2="481.5232526704263" y1="184.25" y2="184.25"/> - <line stroke="#888888" x1="501.5232526704263" x2="501.5232526704263" y1="184.25" y2="183.25000000000003"/> - <line stroke="#888888" x1="501.5232526704263" x2="502.5232526704263" y1="183.25000000000003" y2="183.25000000000003"/> - <line stroke="#888888" x1="502.5232526704263" x2="502.5232526704263" y1="183.25000000000003" y2="184.25"/> - <line stroke="#888888" x1="502.5232526704263" x2="501.5232526704263" y1="184.25" y2="184.25"/> - <line stroke="#888888" x1="481.5232526704263" x2="481.5232526704263" y1="186.75" y2="185.75000000000003"/> - <line stroke="#888888" x1="481.5232526704263" x2="482.52325267042636" y1="185.75000000000003" y2="185.75000000000003"/> - <line stroke="#888888" x1="482.52325267042636" x2="482.52325267042636" y1="185.75000000000003" y2="186.75"/> - <line stroke="#888888" x1="482.52325267042636" x2="481.5232526704263" y1="186.75" y2="186.75"/> - <line stroke="#888888" x1="500.5232526704263" x2="500.5232526704263" y1="187.75000000000003" y2="184.75000000000003"/> - <line stroke="#888888" x1="500.5232526704263" x2="503.5232526704263" y1="184.75000000000003" y2="184.75000000000003"/> - <line stroke="#888888" x1="503.5232526704263" x2="503.5232526704263" y1="184.75000000000003" y2="187.75000000000003"/> - <line stroke="#888888" x1="503.5232526704263" x2="500.5232526704263" y1="187.75000000000003" y2="187.75000000000003"/> - <line stroke="#888888" x1="496.27325267042636" x2="487.7732526704263" y1="144.75000000000003" y2="144.75000000000003"/> - <line stroke="#888888" x1="487.7732526704263" x2="487.7732526704263" y1="144.75000000000003" y2="144.25000000000003"/> - <line stroke="#888888" x1="487.7732526704263" x2="496.27325267042636" y1="144.25000000000003" y2="144.25000000000003"/> - <line stroke="#888888" x1="496.27325267042636" x2="496.27325267042636" y1="144.25000000000003" y2="144.75000000000003"/> - <line stroke="#888888" x1="487.7732526704263" x2="496.27325267042636" y1="192.50000000000003" y2="192.50000000000003"/> - <line stroke="#888888" x1="496.27325267042636" x2="496.27325267042636" y1="192.50000000000003" y2="193.00000000000003"/> - <line stroke="#888888" x1="496.27325267042636" x2="487.7732526704263" y1="193.00000000000003" y2="193.00000000000003"/> - <line stroke="#888888" x1="487.7732526704263" x2="487.7732526704263" y1="193.00000000000003" y2="192.50000000000003"/> - <line stroke="#888888" x1="472.5232526704263" x2="477.5232526704263" y1="148.09090909090912" y2="148.09090909090912"/> - <line stroke="#888888" x1="477.5232526704263" x2="477.5232526704263" y1="148.09090909090912" y2="159.1818181818182"/> - <line stroke="#888888" x1="477.5232526704263" x2="472.5232526704263" y1="159.1818181818182" y2="159.1818181818182"/> - <line stroke="#888888" x1="472.5232526704263" x2="477.5232526704263" y1="175.81818181818184" y2="175.81818181818184"/> - <line stroke="#888888" x1="477.5232526704263" x2="477.5232526704263" y1="175.81818181818184" y2="186.90909090909093"/> - <line stroke="#888888" x1="477.5232526704263" x2="472.5232526704263" y1="186.90909090909093" y2="186.90909090909093"/> - <line stroke="#888888" x1="497.7732526704263" x2="501.2732526704263" y1="121.00000000000001" y2="121.00000000000001"/> - <line stroke="#888888" x1="501.2732526704263" x2="501.2732526704263" y1="121.00000000000001" y2="129.0"/> - <line stroke="#888888" x1="501.2732526704263" x2="497.7732526704263" y1="129.0" y2="129.0"/> + <line stroke="#000000" x1="209.0232526704265" x2="190.0232526704265" y1="120.00000000000001" y2="120.00000000000001"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="209.0232526704265" x2="270.02325267042653" y1="120.00000000000001" y2="120.00000000000001"/> + <line stroke="#000000" x1="270.02325267042653" x2="270.02325267042653" y1="120.00000000000001" y2="120.00000000000001"/> + <line stroke="#000000" x1="190.0232526704265" x2="190.0232526704265" y1="120.00000000000001" y2="120.00000000000001"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="209.0232526704265" x2="270.02325267042653" y1="83.8613780008147" y2="83.8613780008147"/> + <line stroke="#000000" x1="270.02325267042653" x2="270.02325267042653" y1="120.00000000000001" y2="83.8613780008147"/> + <line stroke="#000000" x1="209.0232526704265" x2="209.0232526704265" y1="83.8613780008147" y2="120.00000000000001"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="270.02325267042653" x2="209.0232526704265" y1="59.8613780008147" y2="59.8613780008147"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="270.02325267042653" x2="270.02325267042653" y1="59.8613780008147" y2="83.8613780008147"/> + <line stroke="#000000" x1="209.0232526704265" x2="209.0232526704265" y1="23.722756001629396" y2="59.86137800081471"/> + <line stroke="#000000" x1="270.02325267042653" x2="209.0232526704265" y1="23.722756001629396" y2="23.722756001629396"/> + <line stroke="#000000" x1="270.02325267042653" x2="270.02325267042653" y1="59.86137800081471" y2="23.722756001629396"/> + <line stroke="#000000" x1="280.02325267042653" x2="270.02325267042653" y1="59.8613780008147" y2="59.8613780008147"/> + <line stroke="#000000" x1="280.02325267042653" x2="280.02325267042653" y1="83.8613780008147" y2="59.8613780008147"/> + <line stroke="#000000" x1="270.02325267042653" x2="280.02325267042653" y1="83.8613780008147" y2="83.8613780008147"/> + <line stroke="#000000" x1="199.0232526704265" x2="209.0232526704265" y1="83.8613780008147" y2="83.8613780008147"/> + <line stroke="#000000" x1="199.0232526704265" x2="199.0232526704265" y1="59.8613780008147" y2="83.8613780008147"/> + <line stroke="#000000" x1="209.0232526704265" x2="199.0232526704265" y1="59.8613780008147" y2="59.8613780008147"/> + <line stroke="#000000" x1="166.0232526704265" x2="86.02325267042649" y1="120.00000000000001" y2="120.00000000000001"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="166.0232526704265" x2="190.0232526704265" y1="120.00000000000001" y2="120.00000000000001"/> + <line stroke="#000000" x1="270.02325267042653" x2="270.02325267042653" y1="120.00000000000001" y2="120.00000000000001"/> + <line stroke="#000000" x1="86.02325267042649" x2="86.02325267042649" y1="120.00000000000001" y2="120.00000000000001"/> + <line stroke="#000000" x1="190.0232526704265" x2="190.0232526704265" y1="120.00000000000001" y2="86.00000000000001"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="166.0232526704265" x2="166.0232526704265" y1="86.00000000000001" y2="120.00000000000001"/> + <line stroke="#000000" x1="166.0232526704265" x2="166.0232526704265" y1="50.0" y2="86.00000000000001"/> + <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="166.0232526704265" x2="190.0232526704265" y1="50.0" y2="50.0"/> + <line stroke="#000000" x1="190.0232526704265" x2="190.0232526704265" y1="86.00000000000001" y2="50.0"/> + <line stroke="#000000" x1="190.0232526704265" x2="190.0232526704265" y1="50.0" y2="5.000000000000001"/> + <line stroke="#000000" x1="166.0232526704265" x2="166.0232526704265" y1="5.000000000000001" y2="50.0"/> + <line stroke="#000000" x1="166.0232526704265" x2="166.0232526704265" y1="0.0" y2="5.000000000000001"/> + <line stroke="#000000" x1="190.0232526704265" x2="166.0232526704265" y1="0.0" y2="0.0"/> + <line stroke="#000000" x1="190.0232526704265" x2="190.0232526704265" y1="5.000000000000001" y2="0.0"/> + <line stroke="#000000" x1="166.0232526704265" x2="146.0232526704265" y1="86.00000000000001" y2="86.00000000000001"/> + <line stroke="#000000" x1="146.0232526704265" x2="166.0232526704265" y1="120.00000000000001" y2="120.00000000000001"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="146.0232526704265" x2="146.0232526704265" y1="86.00000000000001" y2="120.00000000000001"/> + <line stroke="#000000" x1="146.0232526704265" x2="122.02325267042649" y1="86.00000000000001" y2="86.00000000000001"/> + <line stroke="#000000" x1="122.02325267042649" x2="146.0232526704265" y1="120.00000000000001" y2="120.00000000000001"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="122.02325267042649" x2="122.02325267042649" y1="86.00000000000001" y2="120.00000000000001"/> + <line stroke="#000000" x1="122.02325267042649" x2="102.02325267042649" y1="86.00000000000001" y2="86.00000000000001"/> + <line stroke="#000000" x1="102.02325267042649" x2="122.02325267042649" y1="120.00000000000001" y2="120.00000000000001"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="102.02325267042649" x2="102.02325267042649" y1="120.00000000000001" y2="86.00000000000001"/> + <line stroke="#000000" x1="92.02325267042649" x2="102.02325267042649" y1="120.00000000000001" y2="120.00000000000001"/> + <line stroke="#000000" x1="92.02325267042649" x2="92.02325267042649" y1="86.00000000000001" y2="120.00000000000001"/> + <line stroke="#000000" x1="102.02325267042649" x2="92.02325267042649" y1="86.00000000000001" y2="86.00000000000001"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="270.02325267042653" x2="86.02325267042649" y1="190.00000000000003" y2="190.00000000000003"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="270.02325267042653" x2="270.02325267042653" y1="190.00000000000003" y2="120.00000000000001"/> + <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="270.02325267042653" x2="322.53762348858805" y1="120.00000000000001" y2="120.00000000000001"/> + <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="270.02325267042653" x2="322.53762348858805" y1="190.00000000000003" y2="120.00000000000001"/> + <line stroke="#000000" x1="270.02325267042653" x2="270.02325267042653" y1="102.49520972727949" y2="120.00000000000001"/> + <line stroke="#000000" x1="322.53762348858805" x2="270.02325267042653" y1="102.49520972727949" y2="102.49520972727949"/> + <line stroke="#000000" x1="322.53762348858805" x2="322.53762348858805" y1="120.00000000000001" y2="102.49520972727949"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="270.02325267042653" x2="337.22840034432573" y1="190.00000000000003" y2="170.4176577976636"/> + <line stroke="#000000" x1="337.22840034432573" x2="322.53762348858805" y1="170.4176577976636" y2="120.00000000000001"/> + <line stroke="#000000" x1="351.91917720006325" x2="337.22840034432573" y1="220.83531559532716" y2="170.4176577976636"/> + <line stroke="#000000" x1="356.04650534085283" x2="351.91917720006325" y1="235.00000000000003" y2="220.83531559532716"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="356.04650534085283" x2="270.02325267042653" y1="235.00000000000003" y2="190.00000000000003"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="270.02325267042653" x2="270.02325267042653" y1="235.00000000000003" y2="190.00000000000003"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="270.02325267042653" x2="270.02325267042653" y1="280.00000000000006" y2="235.00000000000006"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="356.04650534085283" x2="270.02325267042653" y1="235.00000000000003" y2="280.0000000000001"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="337.22840034432573" x2="270.02325267042653" y1="299.5823422023365" y2="280.0000000000001"/> + <line stroke="#000000" x1="351.91917720006325" x2="356.04650534085283" y1="249.16468440467293" y2="235.00000000000003"/> + <line stroke="#000000" x1="337.22840034432573" x2="351.91917720006325" y1="299.5823422023365" y2="249.16468440467293"/> + <line stroke="#000000" x1="322.53762348858817" x2="337.22840034432573" y1="350.0" y2="299.58234220233646"/> + <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="322.53762348858817" x2="270.02325267042653" y1="350.0" y2="280.0000000000001"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="270.0232526704266" x2="270.02325267042653" y1="350.00000000000006" y2="280.00000000000006"/> + <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="322.53762348858817" x2="270.0232526704266" y1="350.0" y2="350.00000000000006"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="270.02325267042653" x2="86.02325267042643" y1="280.00000000000006" y2="280.0000000000002"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="190.02325267042653" x2="166.02325267042656" y1="350.0000000000001" y2="350.0000000000001"/> + <line stroke="#000000" x1="86.0232526704265" x2="166.02325267042656" y1="350.0000000000002" y2="350.0000000000001"/> + <line stroke="#000000" x1="86.0232526704265" x2="86.0232526704265" y1="350.0000000000002" y2="350.0000000000002"/> + <line stroke="#000000" x1="270.0232526704266" x2="270.0232526704266" y1="350.00000000000006" y2="350.00000000000006"/> + <line stroke="#000000" x1="190.02325267042653" x2="209.02325267042656" y1="350.0000000000001" y2="350.0000000000001"/> + <line stroke="#000000" x1="190.02325267042653" x2="190.02325267042653" y1="350.0000000000001" y2="350.0000000000001"/> + <line stroke="#000000" x1="270.0232526704266" x2="270.0232526704266" y1="350.00000000000006" y2="350.00000000000006"/> + <line stroke="#000000" x1="270.0232526704266" x2="270.0232526704266" y1="360.0000000000001" y2="350.00000000000006"/> + <line stroke="#000000" x1="209.0232526704266" x2="270.0232526704266" y1="360.00000000000017" y2="360.0000000000001"/> + <line stroke="#000000" x1="209.02325267042656" x2="209.0232526704266" y1="350.0000000000001" y2="360.00000000000017"/> + <line stroke="#000000" x1="190.0232526704266" x2="190.02325267042653" y1="384.00000000000017" y2="350.0000000000001"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="166.02325267042656" x2="166.0232526704266" y1="350.0000000000001" y2="384.00000000000017"/> + <line stroke="#000000" x1="190.02325267042664" x2="190.0232526704266" y1="420.00000000000017" y2="384.00000000000017"/> + <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="190.02325267042664" x2="166.02325267042661" y1="420.00000000000017" y2="420.00000000000017"/> + <line stroke="#000000" x1="166.0232526704266" x2="166.02325267042661" y1="384.00000000000017" y2="420.00000000000017"/> + <line stroke="#000000" x1="166.02325267042661" x2="166.02325267042667" y1="420.00000000000017" y2="465.00000000000017"/> + <line stroke="#000000" x1="190.02325267042667" x2="190.02325267042664" y1="465.00000000000017" y2="420.00000000000017"/> + <line stroke="#000000" x1="166.02325267042667" x2="190.02325267042667" y1="465.00000000000017" y2="465.00000000000017"/> + <line stroke="#000000" x1="166.02325267042656" x2="146.02325267042656" y1="350.0000000000001" y2="350.0000000000001"/> + <line stroke="#000000" x1="146.0232526704266" x2="166.0232526704266" y1="384.00000000000017" y2="384.00000000000017"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="146.02325267042656" x2="146.0232526704266" y1="350.0000000000001" y2="384.00000000000017"/> + <line stroke="#000000" x1="146.02325267042656" x2="122.02325267042653" y1="350.0000000000001" y2="350.0000000000001"/> + <line stroke="#000000" x1="122.02325267042656" x2="146.0232526704266" y1="384.00000000000017" y2="384.00000000000017"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="122.02325267042653" x2="122.02325267042656" y1="350.0000000000001" y2="384.00000000000017"/> + <line stroke="#000000" x1="122.02325267042653" x2="102.02325267042653" y1="350.0000000000001" y2="350.0000000000001"/> + <line stroke="#000000" x1="102.02325267042656" x2="122.02325267042656" y1="384.00000000000017" y2="384.00000000000017"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="102.02325267042656" x2="102.02325267042653" y1="384.00000000000017" y2="350.0000000000001"/> + <line stroke="#000000" x1="92.02325267042654" x2="102.02325267042654" y1="384.00000000000017" y2="384.00000000000017"/> + <line stroke="#000000" x1="92.02325267042652" x2="92.02325267042654" y1="350.0000000000001" y2="384.00000000000017"/> + <line stroke="#000000" x1="102.02325267042652" x2="92.02325267042652" y1="350.0000000000001" y2="350.0000000000001"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="86.02325267042642" x2="86.0232526704265" y1="280.0000000000003" y2="350.0000000000002"/> + <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="86.0232526704265" x2="33.5088818522649" y1="350.0000000000002" y2="350.00000000000034"/> + <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="86.02325267042642" x2="33.5088818522649" y1="280.0000000000003" y2="350.00000000000034"/> + <line stroke="#000000" x1="86.02325267042652" x2="86.0232526704265" y1="367.50479027272075" y2="350.0000000000002"/> + <line stroke="#000000" x1="33.50888185226492" x2="86.02325267042652" y1="367.5047902727208" y2="367.50479027272075"/> + <line stroke="#000000" x1="33.5088818522649" x2="33.50888185226492" y1="350.00000000000034" y2="367.5047902727208"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="86.02325267042643" x2="18.81810499652727" y1="280.0000000000002" y2="299.5823422023367"/> + <line stroke="#000000" x1="18.81810499652727" x2="33.5088818522649" y1="299.5823422023367" y2="350.0000000000002"/> + <line stroke="#000000" x1="4.127328140789616" x2="18.81810499652724" y1="249.16468440467318" y2="299.5823422023367"/> + <line stroke="#000000" x1="2.8421709430404014e-14" x2="4.127328140789616" y1="235.0000000000003" y2="249.16468440467318"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="2.8421709430404014e-14" x2="86.02325267042642" y1="235.0000000000003" y2="280.0000000000003"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="86.02325267042637" x2="86.02325267042642" y1="235.0000000000002" y2="280.0000000000003"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="86.0232526704263" x2="86.02325267042636" y1="190.0000000000002" y2="235.0000000000002"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="2.8421709430404014e-14" x2="86.0232526704263" y1="235.0000000000003" y2="190.0000000000002"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="18.818104996527016" x2="86.02325267042627" y1="170.41765779766385" y2="190.0000000000002"/> + <line stroke="#000000" x1="4.127328140789531" x2="0.0" y1="220.83531559532747" y2="235.0000000000003"/> + <line stroke="#000000" x1="18.818104996527016" x2="4.127328140789531" y1="170.41765779766385" y2="220.83531559532747"/> + <line stroke="#000000" x1="33.50888185226453" x2="18.818104996527044" y1="120.00000000000027" y2="170.41765779766388"/> + <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="33.50888185226453" x2="86.02325267042629" y1="120.00000000000027" y2="190.0000000000002"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="86.02325267042613" x2="86.0232526704263" y1="120.00000000000016" y2="190.0000000000002"/> + <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="33.50888185226453" x2="86.02325267042613" y1="120.00000000000027" y2="120.00000000000016"/> + <line stroke="#000000" x1="33.5088818522645" x2="33.50888185226453" y1="102.49520972727973" y2="120.00000000000027"/> + <line stroke="#000000" x1="86.02325267042612" x2="33.5088818522645" y1="102.49520972727963" y2="102.49520972727973"/> + <line stroke="#000000" x1="86.02325267042613" x2="86.02325267042612" y1="120.00000000000016" y2="102.49520972727963"/> + <line stroke="#000000" x1="322.5376234885882" x2="322.53762348858817" y1="367.5047902727206" y2="350.0"/> + <line stroke="#000000" x1="270.0232526704266" x2="322.5376234885882" y1="367.50479027272064" y2="367.5047902727206"/> + <line stroke="#000000" x1="270.0232526704266" x2="270.0232526704266" y1="350.00000000000006" y2="367.50479027272064"/> + <line stroke="#888888" x1="227.0232526704265" x2="238.0232526704265" y1="65.3613780008147" y2="65.3613780008147"/> + <line stroke="#888888" x1="238.0232526704265" x2="238.0232526704265" y1="65.3613780008147" y2="78.3613780008147"/> + <line stroke="#888888" x1="238.0232526704265" x2="227.0232526704265" y1="78.3613780008147" y2="78.3613780008147"/> + <line stroke="#888888" x1="227.0232526704265" x2="227.0232526704265" y1="78.3613780008147" y2="65.3613780008147"/> + <line stroke="#888888" x1="258.52325267042653" x2="264.52325267042653" y1="66.8613780008147" y2="66.8613780008147"/> + <line stroke="#888888" x1="264.52325267042653" x2="264.52325267042653" y1="66.8613780008147" y2="76.8613780008147"/> + <line stroke="#888888" x1="264.52325267042653" x2="258.52325267042653" y1="76.8613780008147" y2="76.8613780008147"/> + <line stroke="#888888" x1="258.52325267042653" x2="258.52325267042653" y1="76.8613780008147" y2="66.8613780008147"/> + <line stroke="#888888" x1="231.4550708522447" x2="219.8641617613356" y1="31.472756001629396" y2="31.472756001629396"/> + <line stroke="#888888" x1="219.8641617613356" x2="219.8641617613356" y1="31.472756001629396" y2="30.9727560016294"/> + <line stroke="#888888" x1="219.8641617613356" x2="231.4550708522447" y1="30.9727560016294" y2="30.9727560016294"/> + <line stroke="#888888" x1="231.4550708522447" x2="231.4550708522447" y1="30.9727560016294" y2="31.472756001629396"/> + <line stroke="#888888" x1="259.1823435795174" x2="247.59143448860831" y1="31.472756001629396" y2="31.472756001629396"/> + <line stroke="#888888" x1="247.59143448860831" x2="247.59143448860831" y1="31.472756001629396" y2="30.9727560016294"/> + <line stroke="#888888" x1="247.59143448860831" x2="259.1823435795174" y1="30.9727560016294" y2="30.9727560016294"/> + <line stroke="#888888" x1="259.1823435795174" x2="259.1823435795174" y1="30.9727560016294" y2="31.472756001629396"/> + <line stroke="#888888" x1="277.5232526704265" x2="272.5232526704265" y1="75.8613780008147" y2="75.8613780008147"/> + <line stroke="#888888" x1="272.5232526704265" x2="272.5232526704265" y1="75.8613780008147" y2="67.8613780008147"/> + <line stroke="#888888" x1="272.5232526704265" x2="277.5232526704265" y1="67.8613780008147" y2="67.8613780008147"/> + <line stroke="#888888" x1="201.5232526704265" x2="206.5232526704265" y1="67.8613780008147" y2="67.8613780008147"/> + <line stroke="#888888" x1="206.5232526704265" x2="206.5232526704265" y1="67.8613780008147" y2="75.8613780008147"/> + <line stroke="#888888" x1="206.5232526704265" x2="201.5232526704265" y1="75.8613780008147" y2="75.8613780008147"/> + <line stroke="#888888" x1="182.2732526704265" x2="182.2732526704265" y1="108.91666666666669" y2="97.08333333333336"/> + <line stroke="#888888" x1="182.2732526704265" x2="182.7732526704265" y1="97.08333333333336" y2="97.08333333333336"/> + <line stroke="#888888" x1="182.7732526704265" x2="182.7732526704265" y1="97.08333333333336" y2="108.91666666666669"/> + <line stroke="#888888" x1="182.7732526704265" x2="182.2732526704265" y1="108.91666666666669" y2="108.91666666666669"/> + <line stroke="#888888" x1="182.0232526704265" x2="184.5232526704265" y1="1.2500000000000002" y2="1.2500000000000002"/> + <line stroke="#888888" x1="184.5232526704265" x2="182.0232526704265" y1="1.2500000000000002" y2="3.7500000000000004"/> + <line stroke="#888888" x1="182.0232526704265" x2="174.0232526704265" y1="3.7500000000000004" y2="3.7500000000000004"/> + <line stroke="#888888" x1="174.0232526704265" x2="171.5232526704265" y1="3.7500000000000004" y2="1.2500000000000002"/> + <line stroke="#888888" x1="171.5232526704265" x2="174.0232526704265" y1="1.2500000000000002" y2="1.2500000000000002"/> + <line stroke="#888888" x1="147.02325267042647" x2="151.0232526704265" y1="97.00000000000001" y2="97.00000000000001"/> + <line stroke="#888888" x1="151.0232526704265" x2="151.0232526704265" y1="97.00000000000001" y2="109.00000000000001"/> + <line stroke="#888888" x1="151.0232526704265" x2="147.02325267042647" y1="109.00000000000001" y2="109.00000000000001"/> + <line stroke="#888888" x1="147.02325267042647" x2="147.02325267042647" y1="109.00000000000001" y2="97.00000000000001"/> + <line stroke="#888888" x1="159.0232526704265" x2="163.02325267042647" y1="98.50000000000001" y2="98.50000000000001"/> + <line stroke="#888888" x1="163.02325267042647" x2="163.02325267042647" y1="98.50000000000001" y2="107.50000000000001"/> + <line stroke="#888888" x1="163.02325267042647" x2="159.0232526704265" y1="107.50000000000001" y2="107.50000000000001"/> + <line stroke="#888888" x1="159.0232526704265" x2="159.0232526704265" y1="107.50000000000001" y2="98.50000000000001"/> + <line stroke="#888888" x1="122.52325267042649" x2="145.5232526704265" y1="97.00000000000001" y2="97.00000000000001"/> + <line stroke="#888888" x1="145.5232526704265" x2="145.5232526704265" y1="97.00000000000001" y2="109.00000000000001"/> + <line stroke="#888888" x1="145.5232526704265" x2="122.52325267042649" y1="109.00000000000001" y2="109.00000000000001"/> + <line stroke="#888888" x1="122.52325267042649" x2="122.52325267042649" y1="109.00000000000001" y2="97.00000000000001"/> + <line stroke="#888888" x1="117.02325267042649" x2="121.02325267042649" y1="97.00000000000001" y2="97.00000000000001"/> + <line stroke="#888888" x1="121.02325267042649" x2="121.02325267042649" y1="97.00000000000001" y2="109.00000000000001"/> + <line stroke="#888888" x1="121.02325267042649" x2="117.02325267042649" y1="109.00000000000001" y2="109.00000000000001"/> + <line stroke="#888888" x1="117.02325267042649" x2="117.02325267042649" y1="109.00000000000001" y2="97.00000000000001"/> + <line stroke="#888888" x1="94.52325267042649" x2="99.52325267042649" y1="97.33333333333336" y2="97.33333333333336"/> + <line stroke="#888888" x1="99.52325267042649" x2="99.52325267042649" y1="97.33333333333336" y2="108.66666666666669"/> + <line stroke="#888888" x1="99.52325267042649" x2="94.52325267042649" y1="108.66666666666669" y2="108.66666666666669"/> + <line stroke="#888888" x1="305.0328332158675" x2="305.0328332158675" y1="106.87140729545962" y2="115.62380243181988"/> + <line stroke="#888888" x1="305.0328332158675" x2="287.52804294314706" y1="115.62380243181988" y2="115.62380243181988"/> + <line stroke="#888888" x1="287.52804294314706" x2="287.52804294314706" y1="115.62380243181988" y2="106.87140729545962"/> + <line stroke="#888888" x1="334.2477556839554" x2="329.21095619250247" y1="208.0120791976936" y2="190.7261564960398"/> + <line stroke="#888888" x1="329.21095619250247" x2="329.6909929616017" y1="190.7261564960398" y2="190.5862826231659"/> + <line stroke="#888888" x1="329.6909929616017" x2="334.72779245305475" y1="190.5862826231659" y2="207.87220532481976"/> + <line stroke="#888888" x1="334.72779245305475" x2="334.2477556839554" y1="207.87220532481976" y2="208.0120791976936"/> + <line stroke="#888888" x1="329.21095619250247" x2="334.24775568395546" y1="279.27384350396034" y2="261.98792080230646"/> + <line stroke="#888888" x1="334.24775568395546" x2="334.72779245305475" y1="261.98792080230646" y2="262.12779467518027"/> + <line stroke="#888888" x1="334.72779245305475" x2="329.69099296160175" y1="262.12779467518027" y2="279.41371737683414"/> + <line stroke="#888888" x1="329.69099296160175" x2="329.21095619250247" y1="279.41371737683414" y2="279.27384350396034"/> + <line stroke="#888888" x1="220.11416176133568" x2="220.11416176133568" y1="357.50000000000017" y2="352.50000000000017"/> + <line stroke="#888888" x1="220.11416176133568" x2="231.20507085224477" y1="352.50000000000017" y2="352.50000000000017"/> + <line stroke="#888888" x1="231.20507085224477" x2="231.20507085224477" y1="352.50000000000017" y2="357.50000000000017"/> + <line stroke="#888888" x1="247.84143448860843" x2="247.84143448860843" y1="357.50000000000017" y2="352.50000000000017"/> + <line stroke="#888888" x1="247.84143448860843" x2="258.9323435795175" y1="352.50000000000017" y2="352.5000000000001"/> + <line stroke="#888888" x1="258.9323435795175" x2="258.9323435795175" y1="352.5000000000001" y2="357.5000000000001"/> + <line stroke="#888888" x1="182.2732526704266" x2="182.2732526704266" y1="372.91666666666674" y2="361.08333333333354"/> + <line stroke="#888888" x1="182.2732526704266" x2="182.7732526704266" y1="361.08333333333354" y2="361.08333333333354"/> + <line stroke="#888888" x1="182.7732526704266" x2="182.7732526704266" y1="361.08333333333354" y2="372.91666666666674"/> + <line stroke="#888888" x1="182.7732526704266" x2="182.2732526704266" y1="372.91666666666674" y2="372.91666666666674"/> + <line stroke="#888888" x1="173.77325267042664" x2="182.27325267042667" y1="461.00000000000017" y2="461.00000000000017"/> + <line stroke="#888888" x1="182.27325267042667" x2="182.27325267042667" y1="461.00000000000017" y2="461.50000000000017"/> + <line stroke="#888888" x1="182.27325267042667" x2="173.77325267042664" y1="461.50000000000017" y2="461.50000000000017"/> + <line stroke="#888888" x1="173.77325267042664" x2="173.77325267042664" y1="461.50000000000017" y2="461.00000000000017"/> + <line stroke="#888888" x1="147.02325267042653" x2="151.02325267042653" y1="361.00000000000017" y2="361.00000000000017"/> + <line stroke="#888888" x1="151.02325267042653" x2="151.02325267042656" y1="361.00000000000017" y2="373.0000000000001"/> + <line stroke="#888888" x1="151.02325267042656" x2="147.02325267042653" y1="373.0000000000001" y2="373.0000000000001"/> + <line stroke="#888888" x1="147.02325267042653" x2="147.02325267042653" y1="373.0000000000001" y2="361.00000000000017"/> + <line stroke="#888888" x1="159.02325267042656" x2="163.02325267042653" y1="362.50000000000017" y2="362.50000000000017"/> + <line stroke="#888888" x1="163.02325267042653" x2="163.02325267042656" y1="362.50000000000017" y2="371.50000000000017"/> + <line stroke="#888888" x1="163.02325267042656" x2="159.0232526704266" y1="371.50000000000017" y2="371.50000000000017"/> + <line stroke="#888888" x1="159.0232526704266" x2="159.02325267042656" y1="371.50000000000017" y2="362.50000000000017"/> + <line stroke="#888888" x1="122.52325267042654" x2="145.52325267042656" y1="361.00000000000017" y2="361.00000000000017"/> + <line stroke="#888888" x1="145.52325267042656" x2="145.5232526704266" y1="361.00000000000017" y2="373.0000000000001"/> + <line stroke="#888888" x1="145.5232526704266" x2="122.52325267042656" y1="373.0000000000001" y2="373.0000000000001"/> + <line stroke="#888888" x1="122.52325267042656" x2="122.52325267042654" y1="373.0000000000001" y2="361.00000000000017"/> + <line stroke="#888888" x1="117.02325267042654" x2="121.02325267042654" y1="361.00000000000017" y2="361.00000000000017"/> + <line stroke="#888888" x1="121.02325267042654" x2="121.02325267042654" y1="361.00000000000017" y2="373.0000000000001"/> + <line stroke="#888888" x1="121.02325267042654" x2="117.02325267042654" y1="373.0000000000001" y2="373.0000000000001"/> + <line stroke="#888888" x1="117.02325267042654" x2="117.02325267042654" y1="373.0000000000001" y2="361.00000000000017"/> + <line stroke="#888888" x1="94.52325267042652" x2="99.52325267042653" y1="361.33333333333354" y2="361.33333333333354"/> + <line stroke="#888888" x1="99.52325267042653" x2="99.52325267042654" y1="361.33333333333354" y2="372.6666666666668"/> + <line stroke="#888888" x1="99.52325267042654" x2="94.52325267042653" y1="372.6666666666668" y2="372.6666666666668"/> + <line stroke="#888888" x1="51.013672124985426" x2="51.013672124985426" y1="363.1285927045407" y2="354.37619756818043"/> + <line stroke="#888888" x1="51.013672124985426" x2="68.51846239770595" y1="354.37619756818043" y2="354.37619756818043"/> + <line stroke="#888888" x1="68.51846239770595" x2="68.51846239770595" y1="354.37619756818043" y2="363.1285927045407"/> + <line stroke="#888888" x1="21.79874965689743" x2="26.83554914835048" y1="261.98792080230675" y2="279.27384350396056"/> + <line stroke="#888888" x1="26.83554914835048" x2="26.3555123792512" y1="279.27384350396056" y2="279.4137173768344"/> + <line stroke="#888888" x1="26.3555123792512" x2="21.318712887798146" y1="279.4137173768344" y2="262.1277946751806"/> + <line stroke="#888888" x1="21.318712887798146" x2="21.79874965689743" y1="262.1277946751806" y2="261.98792080230675"/> + <line stroke="#888888" x1="26.835549148350314" x2="21.798749656897318" y1="190.72615649604003" y2="208.01207919769385"/> + <line stroke="#888888" x1="21.798749656897318" x2="21.31871288779803" y1="208.01207919769385" y2="207.87220532482004"/> + <line stroke="#888888" x1="21.31871288779803" x2="26.355512379251028" y1="207.87220532482004" y2="190.58628262316623"/> + <line stroke="#888888" x1="26.355512379251028" x2="26.835549148350314" y1="190.58628262316623" y2="190.72615649604003"/> + <line stroke="#888888" x1="68.51846239770558" x2="68.51846239770559" y1="106.87140729545979" y2="115.62380243182007"/> + <line stroke="#888888" x1="68.51846239770559" x2="51.01367212498506" y1="115.62380243182007" y2="115.6238024318201"/> + <line stroke="#888888" x1="51.01367212498506" x2="51.01367212498503" y1="115.6238024318201" y2="106.87140729545983"/> + <line stroke="#888888" x1="287.52804294314717" x2="287.52804294314717" y1="363.12859270454044" y2="354.3761975681802"/> + <line stroke="#888888" x1="287.52804294314717" x2="305.0328332158677" y1="354.3761975681802" y2="354.3761975681802"/> + <line stroke="#888888" x1="305.0328332158677" x2="305.0328332158677" y1="354.3761975681802" y2="363.12859270454044"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="399.04650534085283" x2="460.04650534085283" y1="108.00000000000001" y2="108.00000000000001"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="460.04650534085283" x2="460.04650534085283" y1="108.00000000000001" y2="132.0"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="460.04650534085283" x2="399.04650534085283" y1="132.0" y2="132.0"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="399.04650534085283" x2="399.04650534085283" y1="132.0" y2="108.00000000000001"/> + <line stroke="#000000" x1="399.04650534085283" x2="399.04650534085283" y1="101.00000000000001" y2="108.00000000000001"/> + <line stroke="#000000" x1="459.0465053408528" x2="399.04650534085283" y1="101.00000000000001" y2="101.00000000000001"/> + <line stroke="#000000" x1="459.0465053408528" x2="459.0465053408528" y1="108.00000000000001" y2="101.00000000000001"/> + <line stroke="#000000" x1="467.04650534085283" x2="460.04650534085283" y1="108.00000000000001" y2="108.00000000000001"/> + <line stroke="#000000" x1="467.04650534085283" x2="467.04650534085283" y1="132.0" y2="108.00000000000001"/> + <line stroke="#000000" x1="460.04650534085283" x2="467.04650534085283" y1="132.0" y2="132.0"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="460.04650534085283" x2="460.04650534085283" y1="132.0" y2="193.00000000000003"/> + <line stroke="#000000" x1="400.0465053408528" x2="460.04650534085283" y1="193.00000000000003" y2="193.00000000000003"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="400.0465053408528" x2="400.0465053408528" y1="132.0" y2="193.00000000000003"/> + <line stroke="#000000" x1="484.04650534085283" x2="460.04650534085283" y1="132.0" y2="132.0"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="484.04650534085283" x2="484.04650534085283" y1="132.0" y2="193.00000000000003"/> + <line stroke="#000000" x1="460.04650534085283" x2="484.04650534085283" y1="193.00000000000003" y2="193.00000000000003"/> + <line stroke="#000000" x1="544.0465053408527" x2="484.04650534085283" y1="132.0" y2="132.0"/> + <line stroke="#000000" x1="544.0465053408527" x2="544.0465053408527" y1="193.00000000000003" y2="132.0"/> + <line stroke="#000000" x1="484.04650534085283" x2="544.0465053408527" y1="193.00000000000003" y2="193.00000000000003"/> + <line stroke="#000000" x1="400.0465053408528" x2="376.04650534085283" y1="132.0" y2="132.0"/> + <line stroke="#000000" x1="376.04650534085283" x2="400.0465053408528" y1="193.00000000000003" y2="193.00000000000003"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="376.04650534085283" x2="376.04650534085283" y1="193.00000000000003" y2="132.0"/> + <line stroke="#000000" x1="366.04650534085283" x2="376.04650534085283" y1="193.00000000000003" y2="193.00000000000003"/> + <line stroke="#000000" x1="366.04650534085283" x2="366.04650534085283" y1="132.0" y2="193.00000000000003"/> + <line stroke="#000000" x1="376.04650534085283" x2="366.04650534085283" y1="132.0" y2="132.0"/> + <line stroke="#000000" x1="392.04650534085283" x2="399.04650534085283" y1="132.0" y2="132.0"/> + <line stroke="#000000" x1="392.04650534085283" x2="392.04650534085283" y1="108.00000000000001" y2="132.0"/> + <line stroke="#000000" x1="399.04650534085283" x2="392.04650534085283" y1="108.00000000000001" y2="108.00000000000001"/> + <line stroke="#888888" x1="448.1374144317619" x2="451.6374144317619" y1="102.75000000000001" y2="102.75000000000001"/> + <line stroke="#888888" x1="451.6374144317619" x2="448.1374144317619" y1="102.75000000000001" y2="106.25000000000001"/> + <line stroke="#888888" x1="448.1374144317619" x2="437.228323522671" y1="106.25000000000001" y2="106.25000000000001"/> + <line stroke="#888888" x1="437.228323522671" x2="433.72832352267096" y1="106.25000000000001" y2="102.75000000000001"/> + <line stroke="#888888" x1="433.72832352267096" x2="437.228323522671" y1="102.75000000000001" y2="102.75000000000001"/> + <line stroke="#888888" x1="420.86468715903464" x2="424.36468715903464" y1="102.75000000000001" y2="102.75000000000001"/> + <line stroke="#888888" x1="424.36468715903464" x2="420.86468715903464" y1="102.75000000000001" y2="106.25000000000001"/> + <line stroke="#888888" x1="420.86468715903464" x2="409.9555962499437" y1="106.25000000000001" y2="106.25000000000001"/> + <line stroke="#888888" x1="409.9555962499437" x2="406.45559624994377" y1="106.25000000000001" y2="102.75000000000001"/> + <line stroke="#888888" x1="406.45559624994377" x2="409.9555962499437" y1="102.75000000000001" y2="102.75000000000001"/> + <line stroke="#888888" x1="465.29650534085283" x2="461.79650534085283" y1="124.00000000000003" y2="124.00000000000003"/> + <line stroke="#888888" x1="461.79650534085283" x2="461.79650534085283" y1="124.00000000000003" y2="116.0"/> + <line stroke="#888888" x1="461.79650534085283" x2="465.29650534085283" y1="116.0" y2="116.0"/> + <line stroke="#888888" x1="407.54650534085283" x2="407.54650534085283" y1="183.50000000000003" y2="165.50000000000003"/> + <line stroke="#888888" x1="407.54650534085283" x2="442.54650534085283" y1="165.50000000000003" y2="165.50000000000003"/> + <line stroke="#888888" x1="442.54650534085283" x2="442.54650534085283" y1="165.50000000000003" y2="183.50000000000003"/> + <line stroke="#888888" x1="442.54650534085283" x2="407.54650534085283" y1="183.50000000000003" y2="183.50000000000003"/> + <line stroke="#888888" x1="460.54650534085283" x2="460.54650534085283" y1="145.25" y2="142.25000000000003"/> + <line stroke="#888888" x1="460.54650534085283" x2="463.5465053408528" y1="142.25000000000003" y2="142.25000000000003"/> + <line stroke="#888888" x1="463.5465053408528" x2="463.5465053408528" y1="142.25000000000003" y2="145.25"/> + <line stroke="#888888" x1="463.5465053408528" x2="460.54650534085283" y1="145.25" y2="145.25"/> + <line stroke="#888888" x1="481.5465053408529" x2="481.5465053408529" y1="144.25000000000003" y2="143.25"/> + <line stroke="#888888" x1="481.5465053408529" x2="482.54650534085283" y1="143.25" y2="143.25"/> + <line stroke="#888888" x1="482.54650534085283" x2="482.54650534085283" y1="143.25" y2="144.25000000000003"/> + <line stroke="#888888" x1="482.54650534085283" x2="481.5465053408529" y1="144.25000000000003" y2="144.25000000000003"/> + <line stroke="#888888" x1="461.54650534085283" x2="461.54650534085283" y1="146.75000000000003" y2="145.75"/> + <line stroke="#888888" x1="461.54650534085283" x2="462.54650534085283" y1="145.75" y2="145.75"/> + <line stroke="#888888" x1="462.54650534085283" x2="462.54650534085283" y1="145.75" y2="146.75000000000003"/> + <line stroke="#888888" x1="462.54650534085283" x2="461.54650534085283" y1="146.75000000000003" y2="146.75000000000003"/> + <line stroke="#888888" x1="481.5465053408529" x2="481.5465053408529" y1="146.75000000000003" y2="145.75"/> + <line stroke="#888888" x1="481.5465053408529" x2="482.54650534085283" y1="145.75" y2="145.75"/> + <line stroke="#888888" x1="482.54650534085283" x2="482.54650534085283" y1="145.75" y2="146.75000000000003"/> + <line stroke="#888888" x1="482.54650534085283" x2="481.5465053408529" y1="146.75000000000003" y2="146.75000000000003"/> + <line stroke="#888888" x1="461.54650534085283" x2="461.54650534085283" y1="149.25000000000003" y2="148.25"/> + <line stroke="#888888" x1="461.54650534085283" x2="462.54650534085283" y1="148.25" y2="148.25"/> + <line stroke="#888888" x1="462.54650534085283" x2="462.54650534085283" y1="148.25" y2="149.25000000000003"/> + <line stroke="#888888" x1="462.54650534085283" x2="461.54650534085283" y1="149.25000000000003" y2="149.25000000000003"/> + <line stroke="#888888" x1="481.5465053408529" x2="481.5465053408529" y1="149.25000000000003" y2="148.25"/> + <line stroke="#888888" x1="481.5465053408529" x2="482.54650534085283" y1="148.25" y2="148.25"/> + <line stroke="#888888" x1="482.54650534085283" x2="482.54650534085283" y1="148.25" y2="149.25000000000003"/> + <line stroke="#888888" x1="482.54650534085283" x2="481.5465053408529" y1="149.25000000000003" y2="149.25000000000003"/> + <line stroke="#888888" x1="461.54650534085283" x2="461.54650534085283" y1="151.75000000000003" y2="150.75000000000003"/> + <line stroke="#888888" x1="461.54650534085283" x2="462.54650534085283" y1="150.75000000000003" y2="150.75000000000003"/> + <line stroke="#888888" x1="462.54650534085283" x2="462.54650534085283" y1="150.75000000000003" y2="151.75000000000003"/> + <line stroke="#888888" x1="462.54650534085283" x2="461.54650534085283" y1="151.75000000000003" y2="151.75000000000003"/> + <line stroke="#888888" x1="481.5465053408529" x2="481.5465053408529" y1="151.75000000000003" y2="150.75000000000003"/> + <line stroke="#888888" x1="481.5465053408529" x2="482.54650534085283" y1="150.75000000000003" y2="150.75000000000003"/> + <line stroke="#888888" x1="482.54650534085283" x2="482.54650534085283" y1="150.75000000000003" y2="151.75000000000003"/> + <line stroke="#888888" x1="482.54650534085283" x2="481.5465053408529" y1="151.75000000000003" y2="151.75000000000003"/> + <line stroke="#888888" x1="461.54650534085283" x2="461.54650534085283" y1="154.25000000000003" y2="153.25000000000003"/> + <line stroke="#888888" x1="461.54650534085283" x2="462.54650534085283" y1="153.25000000000003" y2="153.25000000000003"/> + <line stroke="#888888" x1="462.54650534085283" x2="462.54650534085283" y1="153.25000000000003" y2="154.25000000000003"/> + <line stroke="#888888" x1="462.54650534085283" x2="461.54650534085283" y1="154.25000000000003" y2="154.25000000000003"/> + <line stroke="#888888" x1="481.5465053408529" x2="481.5465053408529" y1="154.25000000000003" y2="153.25000000000003"/> + <line stroke="#888888" x1="481.5465053408529" x2="482.54650534085283" y1="153.25000000000003" y2="153.25000000000003"/> + <line stroke="#888888" x1="482.54650534085283" x2="482.54650534085283" y1="153.25000000000003" y2="154.25000000000003"/> + <line stroke="#888888" x1="482.54650534085283" x2="481.5465053408529" y1="154.25000000000003" y2="154.25000000000003"/> + <line stroke="#888888" x1="461.54650534085283" x2="461.54650534085283" y1="156.75" y2="155.75000000000003"/> + <line stroke="#888888" x1="461.54650534085283" x2="462.54650534085283" y1="155.75000000000003" y2="155.75000000000003"/> + <line stroke="#888888" x1="462.54650534085283" x2="462.54650534085283" y1="155.75000000000003" y2="156.75"/> + <line stroke="#888888" x1="462.54650534085283" x2="461.54650534085283" y1="156.75" y2="156.75"/> + <line stroke="#888888" x1="481.5465053408529" x2="481.5465053408529" y1="156.75" y2="155.75000000000003"/> + <line stroke="#888888" x1="481.5465053408529" x2="482.54650534085283" y1="155.75000000000003" y2="155.75000000000003"/> + <line stroke="#888888" x1="482.54650534085283" x2="482.54650534085283" y1="155.75000000000003" y2="156.75"/> + <line stroke="#888888" x1="482.54650534085283" x2="481.5465053408529" y1="156.75" y2="156.75"/> + <line stroke="#888888" x1="461.54650534085283" x2="461.54650534085283" y1="159.25" y2="158.25000000000003"/> + <line stroke="#888888" x1="461.54650534085283" x2="462.54650534085283" y1="158.25000000000003" y2="158.25000000000003"/> + <line stroke="#888888" x1="462.54650534085283" x2="462.54650534085283" y1="158.25000000000003" y2="159.25"/> + <line stroke="#888888" x1="462.54650534085283" x2="461.54650534085283" y1="159.25" y2="159.25"/> + <line stroke="#888888" x1="481.5465053408529" x2="481.5465053408529" y1="159.25" y2="158.25000000000003"/> + <line stroke="#888888" x1="481.5465053408529" x2="482.54650534085283" y1="158.25000000000003" y2="158.25000000000003"/> + <line stroke="#888888" x1="482.54650534085283" x2="482.54650534085283" y1="158.25000000000003" y2="159.25"/> + <line stroke="#888888" x1="482.54650534085283" x2="481.5465053408529" y1="159.25" y2="159.25"/> + <line stroke="#888888" x1="461.54650534085283" x2="461.54650534085283" y1="161.75" y2="160.75000000000003"/> + <line stroke="#888888" x1="461.54650534085283" x2="462.54650534085283" y1="160.75000000000003" y2="160.75000000000003"/> + <line stroke="#888888" x1="462.54650534085283" x2="462.54650534085283" y1="160.75000000000003" y2="161.75"/> + <line stroke="#888888" x1="462.54650534085283" x2="461.54650534085283" y1="161.75" y2="161.75"/> + <line stroke="#888888" x1="481.5465053408529" x2="481.5465053408529" y1="161.75" y2="160.75000000000003"/> + <line stroke="#888888" x1="481.5465053408529" x2="482.54650534085283" y1="160.75000000000003" y2="160.75000000000003"/> + <line stroke="#888888" x1="482.54650534085283" x2="482.54650534085283" y1="160.75000000000003" y2="161.75"/> + <line stroke="#888888" x1="482.54650534085283" x2="481.5465053408529" y1="161.75" y2="161.75"/> + <line stroke="#888888" x1="461.54650534085283" x2="461.54650534085283" y1="164.25000000000003" y2="163.25000000000003"/> + <line stroke="#888888" x1="461.54650534085283" x2="462.54650534085283" y1="163.25000000000003" y2="163.25000000000003"/> + <line stroke="#888888" x1="462.54650534085283" x2="462.54650534085283" y1="163.25000000000003" y2="164.25000000000003"/> + <line stroke="#888888" x1="462.54650534085283" x2="461.54650534085283" y1="164.25000000000003" y2="164.25000000000003"/> + <line stroke="#888888" x1="481.5465053408529" x2="481.5465053408529" y1="164.25000000000003" y2="163.25000000000003"/> + <line stroke="#888888" x1="481.5465053408529" x2="482.54650534085283" y1="163.25000000000003" y2="163.25000000000003"/> + <line stroke="#888888" x1="482.54650534085283" x2="482.54650534085283" y1="163.25000000000003" y2="164.25000000000003"/> + <line stroke="#888888" x1="482.54650534085283" x2="481.5465053408529" y1="164.25000000000003" y2="164.25000000000003"/> + <line stroke="#888888" x1="461.54650534085283" x2="461.54650534085283" y1="166.75000000000003" y2="165.75"/> + <line stroke="#888888" x1="461.54650534085283" x2="462.54650534085283" y1="165.75" y2="165.75"/> + <line stroke="#888888" x1="462.54650534085283" x2="462.54650534085283" y1="165.75" y2="166.75000000000003"/> + <line stroke="#888888" x1="462.54650534085283" x2="461.54650534085283" y1="166.75000000000003" y2="166.75000000000003"/> + <line stroke="#888888" x1="481.5465053408529" x2="481.5465053408529" y1="166.75000000000003" y2="165.75"/> + <line stroke="#888888" x1="481.5465053408529" x2="482.54650534085283" y1="165.75" y2="165.75"/> + <line stroke="#888888" x1="482.54650534085283" x2="482.54650534085283" y1="165.75" y2="166.75000000000003"/> + <line stroke="#888888" x1="482.54650534085283" x2="481.5465053408529" y1="166.75000000000003" y2="166.75000000000003"/> + <line stroke="#888888" x1="461.54650534085283" x2="461.54650534085283" y1="169.25000000000003" y2="168.25"/> + <line stroke="#888888" x1="461.54650534085283" x2="462.54650534085283" y1="168.25" y2="168.25"/> + <line stroke="#888888" x1="462.54650534085283" x2="462.54650534085283" y1="168.25" y2="169.25000000000003"/> + <line stroke="#888888" x1="462.54650534085283" x2="461.54650534085283" y1="169.25000000000003" y2="169.25000000000003"/> + <line stroke="#888888" x1="481.5465053408529" x2="481.5465053408529" y1="169.25000000000003" y2="168.25"/> + <line stroke="#888888" x1="481.5465053408529" x2="482.54650534085283" y1="168.25" y2="168.25"/> + <line stroke="#888888" x1="482.54650534085283" x2="482.54650534085283" y1="168.25" y2="169.25000000000003"/> + <line stroke="#888888" x1="482.54650534085283" x2="481.5465053408529" y1="169.25000000000003" y2="169.25000000000003"/> + <line stroke="#888888" x1="461.54650534085283" x2="461.54650534085283" y1="171.75000000000003" y2="170.75"/> + <line stroke="#888888" x1="461.54650534085283" x2="462.54650534085283" y1="170.75" y2="170.75"/> + <line stroke="#888888" x1="462.54650534085283" x2="462.54650534085283" y1="170.75" y2="171.75000000000003"/> + <line stroke="#888888" x1="462.54650534085283" x2="461.54650534085283" y1="171.75000000000003" y2="171.75000000000003"/> + <line stroke="#888888" x1="481.5465053408529" x2="481.5465053408529" y1="171.75000000000003" y2="170.75"/> + <line stroke="#888888" x1="481.5465053408529" x2="482.54650534085283" y1="170.75" y2="170.75"/> + <line stroke="#888888" x1="482.54650534085283" x2="482.54650534085283" y1="170.75" y2="171.75000000000003"/> + <line stroke="#888888" x1="482.54650534085283" x2="481.5465053408529" y1="171.75000000000003" y2="171.75000000000003"/> + <line stroke="#888888" x1="461.54650534085283" x2="461.54650534085283" y1="174.25000000000003" y2="173.25000000000003"/> + <line stroke="#888888" x1="461.54650534085283" x2="462.54650534085283" y1="173.25000000000003" y2="173.25000000000003"/> + <line stroke="#888888" x1="462.54650534085283" x2="462.54650534085283" y1="173.25000000000003" y2="174.25000000000003"/> + <line stroke="#888888" x1="462.54650534085283" x2="461.54650534085283" y1="174.25000000000003" y2="174.25000000000003"/> + <line stroke="#888888" x1="481.5465053408529" x2="481.5465053408529" y1="174.25000000000003" y2="173.25000000000003"/> + <line stroke="#888888" x1="481.5465053408529" x2="482.54650534085283" y1="173.25000000000003" y2="173.25000000000003"/> + <line stroke="#888888" x1="482.54650534085283" x2="482.54650534085283" y1="173.25000000000003" y2="174.25000000000003"/> + <line stroke="#888888" x1="482.54650534085283" x2="481.5465053408529" y1="174.25000000000003" y2="174.25000000000003"/> + <line stroke="#888888" x1="461.54650534085283" x2="461.54650534085283" y1="176.75000000000003" y2="175.75000000000003"/> + <line stroke="#888888" x1="461.54650534085283" x2="462.54650534085283" y1="175.75000000000003" y2="175.75000000000003"/> + <line stroke="#888888" x1="462.54650534085283" x2="462.54650534085283" y1="175.75000000000003" y2="176.75000000000003"/> + <line stroke="#888888" x1="462.54650534085283" x2="461.54650534085283" y1="176.75000000000003" y2="176.75000000000003"/> + <line stroke="#888888" x1="481.5465053408529" x2="481.5465053408529" y1="176.75000000000003" y2="175.75000000000003"/> + <line stroke="#888888" x1="481.5465053408529" x2="482.54650534085283" y1="175.75000000000003" y2="175.75000000000003"/> + <line stroke="#888888" x1="482.54650534085283" x2="482.54650534085283" y1="175.75000000000003" y2="176.75000000000003"/> + <line stroke="#888888" x1="482.54650534085283" x2="481.5465053408529" y1="176.75000000000003" y2="176.75000000000003"/> + <line stroke="#888888" x1="461.54650534085283" x2="461.54650534085283" y1="179.25000000000003" y2="178.25000000000003"/> + <line stroke="#888888" x1="461.54650534085283" x2="462.54650534085283" y1="178.25000000000003" y2="178.25000000000003"/> + <line stroke="#888888" x1="462.54650534085283" x2="462.54650534085283" y1="178.25000000000003" y2="179.25000000000003"/> + <line stroke="#888888" x1="462.54650534085283" x2="461.54650534085283" y1="179.25000000000003" y2="179.25000000000003"/> + <line stroke="#888888" x1="481.5465053408529" x2="481.5465053408529" y1="179.25000000000003" y2="178.25000000000003"/> + <line stroke="#888888" x1="481.5465053408529" x2="482.54650534085283" y1="178.25000000000003" y2="178.25000000000003"/> + <line stroke="#888888" x1="482.54650534085283" x2="482.54650534085283" y1="178.25000000000003" y2="179.25000000000003"/> + <line stroke="#888888" x1="482.54650534085283" x2="481.5465053408529" y1="179.25000000000003" y2="179.25000000000003"/> + <line stroke="#888888" x1="461.54650534085283" x2="461.54650534085283" y1="181.75" y2="180.75000000000003"/> + <line stroke="#888888" x1="461.54650534085283" x2="462.54650534085283" y1="180.75000000000003" y2="180.75000000000003"/> + <line stroke="#888888" x1="462.54650534085283" x2="462.54650534085283" y1="180.75000000000003" y2="181.75"/> + <line stroke="#888888" x1="462.54650534085283" x2="461.54650534085283" y1="181.75" y2="181.75"/> + <line stroke="#888888" x1="480.54650534085283" x2="480.54650534085283" y1="182.75000000000003" y2="179.75"/> + <line stroke="#888888" x1="480.54650534085283" x2="483.54650534085283" y1="179.75" y2="179.75"/> + <line stroke="#888888" x1="483.54650534085283" x2="483.54650534085283" y1="179.75" y2="182.75000000000003"/> + <line stroke="#888888" x1="483.54650534085283" x2="480.54650534085283" y1="182.75000000000003" y2="182.75000000000003"/> + <line stroke="#888888" x1="476.29650534085283" x2="467.79650534085283" y1="139.75000000000003" y2="139.75000000000003"/> + <line stroke="#888888" x1="467.79650534085283" x2="467.79650534085283" y1="139.75000000000003" y2="139.25"/> + <line stroke="#888888" x1="467.79650534085283" x2="476.29650534085283" y1="139.25" y2="139.25"/> + <line stroke="#888888" x1="476.29650534085283" x2="476.29650534085283" y1="139.25" y2="139.75000000000003"/> + <line stroke="#888888" x1="467.79650534085283" x2="476.29650534085283" y1="187.50000000000003" y2="187.50000000000003"/> + <line stroke="#888888" x1="476.29650534085283" x2="476.29650534085283" y1="187.50000000000003" y2="188.00000000000003"/> + <line stroke="#888888" x1="476.29650534085283" x2="467.79650534085283" y1="188.00000000000003" y2="188.00000000000003"/> + <line stroke="#888888" x1="467.79650534085283" x2="467.79650534085283" y1="188.00000000000003" y2="187.50000000000003"/> + <line stroke="#888888" x1="499.04650534085283" x2="499.04650534085283" y1="183.00000000000003" y2="170.00000000000003"/> + <line stroke="#888888" x1="499.04650534085283" x2="529.0465053408527" y1="170.00000000000003" y2="170.00000000000003"/> + <line stroke="#888888" x1="529.0465053408527" x2="529.0465053408527" y1="170.00000000000003" y2="183.00000000000003"/> + <line stroke="#888888" x1="529.0465053408527" x2="499.04650534085283" y1="183.00000000000003" y2="183.00000000000003"/> + <line stroke="#888888" x1="506.11468715903464" x2="494.70559624994377" y1="137.50000000000003" y2="137.50000000000003"/> + <line stroke="#888888" x1="494.70559624994377" x2="494.70559624994377" y1="137.50000000000003" y2="137.00000000000003"/> + <line stroke="#888888" x1="494.70559624994377" x2="506.11468715903464" y1="137.00000000000003" y2="137.00000000000003"/> + <line stroke="#888888" x1="506.11468715903464" x2="506.11468715903464" y1="137.00000000000003" y2="137.50000000000003"/> + <line stroke="#888888" x1="533.387414431762" x2="521.978323522671" y1="137.50000000000003" y2="137.50000000000003"/> + <line stroke="#888888" x1="521.978323522671" x2="521.978323522671" y1="137.50000000000003" y2="137.00000000000003"/> + <line stroke="#888888" x1="521.978323522671" x2="533.387414431762" y1="137.00000000000003" y2="137.00000000000003"/> + <line stroke="#888888" x1="533.387414431762" x2="533.387414431762" y1="137.00000000000003" y2="137.50000000000003"/> + <line stroke="#888888" x1="536.2965053408528" x2="536.2965053408528" y1="154.4318181818182" y2="142.84090909090912"/> + <line stroke="#888888" x1="536.2965053408528" x2="536.7965053408527" y1="142.84090909090912" y2="142.84090909090912"/> + <line stroke="#888888" x1="536.7965053408527" x2="536.7965053408527" y1="142.84090909090912" y2="154.4318181818182"/> + <line stroke="#888888" x1="536.7965053408527" x2="536.2965053408528" y1="154.4318181818182" y2="154.4318181818182"/> + <line stroke="#888888" x1="536.2965053408528" x2="536.2965053408528" y1="182.15909090909093" y2="170.5681818181818"/> + <line stroke="#888888" x1="536.2965053408528" x2="536.7965053408527" y1="170.5681818181818" y2="170.5681818181818"/> + <line stroke="#888888" x1="536.7965053408527" x2="536.7965053408527" y1="170.5681818181818" y2="182.15909090909093"/> + <line stroke="#888888" x1="536.7965053408527" x2="536.2965053408528" y1="182.15909090909093" y2="182.15909090909093"/> + <line stroke="#888888" x1="376.5465053408528" x2="376.5465053408528" y1="145.25" y2="142.25000000000003"/> + <line stroke="#888888" x1="376.5465053408528" x2="379.54650534085283" y1="142.25000000000003" y2="142.25000000000003"/> + <line stroke="#888888" x1="379.54650534085283" x2="379.54650534085283" y1="142.25000000000003" y2="145.25"/> + <line stroke="#888888" x1="379.54650534085283" x2="376.5465053408528" y1="145.25" y2="145.25"/> + <line stroke="#888888" x1="397.54650534085283" x2="397.54650534085283" y1="144.25000000000003" y2="143.25"/> + <line stroke="#888888" x1="397.54650534085283" x2="398.54650534085283" y1="143.25" y2="143.25"/> + <line stroke="#888888" x1="398.54650534085283" x2="398.54650534085283" y1="143.25" y2="144.25000000000003"/> + <line stroke="#888888" x1="398.54650534085283" x2="397.54650534085283" y1="144.25000000000003" y2="144.25000000000003"/> + <line stroke="#888888" x1="377.54650534085283" x2="377.54650534085283" y1="146.75000000000003" y2="145.75"/> + <line stroke="#888888" x1="377.54650534085283" x2="378.54650534085283" y1="145.75" y2="145.75"/> + <line stroke="#888888" x1="378.54650534085283" x2="378.54650534085283" y1="145.75" y2="146.75000000000003"/> + <line stroke="#888888" x1="378.54650534085283" x2="377.54650534085283" y1="146.75000000000003" y2="146.75000000000003"/> + <line stroke="#888888" x1="397.54650534085283" x2="397.54650534085283" y1="146.75000000000003" y2="145.75"/> + <line stroke="#888888" x1="397.54650534085283" x2="398.54650534085283" y1="145.75" y2="145.75"/> + <line stroke="#888888" x1="398.54650534085283" x2="398.54650534085283" y1="145.75" y2="146.75000000000003"/> + <line stroke="#888888" x1="398.54650534085283" x2="397.54650534085283" y1="146.75000000000003" y2="146.75000000000003"/> + <line stroke="#888888" x1="377.54650534085283" x2="377.54650534085283" y1="149.25000000000003" y2="148.25"/> + <line stroke="#888888" x1="377.54650534085283" x2="378.54650534085283" y1="148.25" y2="148.25"/> + <line stroke="#888888" x1="378.54650534085283" x2="378.54650534085283" y1="148.25" y2="149.25000000000003"/> + <line stroke="#888888" x1="378.54650534085283" x2="377.54650534085283" y1="149.25000000000003" y2="149.25000000000003"/> + <line stroke="#888888" x1="397.54650534085283" x2="397.54650534085283" y1="149.25000000000003" y2="148.25"/> + <line stroke="#888888" x1="397.54650534085283" x2="398.54650534085283" y1="148.25" y2="148.25"/> + <line stroke="#888888" x1="398.54650534085283" x2="398.54650534085283" y1="148.25" y2="149.25000000000003"/> + <line stroke="#888888" x1="398.54650534085283" x2="397.54650534085283" y1="149.25000000000003" y2="149.25000000000003"/> + <line stroke="#888888" x1="377.54650534085283" x2="377.54650534085283" y1="151.75000000000003" y2="150.75000000000003"/> + <line stroke="#888888" x1="377.54650534085283" x2="378.54650534085283" y1="150.75000000000003" y2="150.75000000000003"/> + <line stroke="#888888" x1="378.54650534085283" x2="378.54650534085283" y1="150.75000000000003" y2="151.75000000000003"/> + <line stroke="#888888" x1="378.54650534085283" x2="377.54650534085283" y1="151.75000000000003" y2="151.75000000000003"/> + <line stroke="#888888" x1="397.54650534085283" x2="397.54650534085283" y1="151.75000000000003" y2="150.75000000000003"/> + <line stroke="#888888" x1="397.54650534085283" x2="398.54650534085283" y1="150.75000000000003" y2="150.75000000000003"/> + <line stroke="#888888" x1="398.54650534085283" x2="398.54650534085283" y1="150.75000000000003" y2="151.75000000000003"/> + <line stroke="#888888" x1="398.54650534085283" x2="397.54650534085283" y1="151.75000000000003" y2="151.75000000000003"/> + <line stroke="#888888" x1="377.54650534085283" x2="377.54650534085283" y1="154.25000000000003" y2="153.25000000000003"/> + <line stroke="#888888" x1="377.54650534085283" x2="378.54650534085283" y1="153.25000000000003" y2="153.25000000000003"/> + <line stroke="#888888" x1="378.54650534085283" x2="378.54650534085283" y1="153.25000000000003" y2="154.25000000000003"/> + <line stroke="#888888" x1="378.54650534085283" x2="377.54650534085283" y1="154.25000000000003" y2="154.25000000000003"/> + <line stroke="#888888" x1="397.54650534085283" x2="397.54650534085283" y1="154.25000000000003" y2="153.25000000000003"/> + <line stroke="#888888" x1="397.54650534085283" x2="398.54650534085283" y1="153.25000000000003" y2="153.25000000000003"/> + <line stroke="#888888" x1="398.54650534085283" x2="398.54650534085283" y1="153.25000000000003" y2="154.25000000000003"/> + <line stroke="#888888" x1="398.54650534085283" x2="397.54650534085283" y1="154.25000000000003" y2="154.25000000000003"/> + <line stroke="#888888" x1="377.54650534085283" x2="377.54650534085283" y1="156.75" y2="155.75000000000003"/> + <line stroke="#888888" x1="377.54650534085283" x2="378.54650534085283" y1="155.75000000000003" y2="155.75000000000003"/> + <line stroke="#888888" x1="378.54650534085283" x2="378.54650534085283" y1="155.75000000000003" y2="156.75"/> + <line stroke="#888888" x1="378.54650534085283" x2="377.54650534085283" y1="156.75" y2="156.75"/> + <line stroke="#888888" x1="397.54650534085283" x2="397.54650534085283" y1="156.75" y2="155.75000000000003"/> + <line stroke="#888888" x1="397.54650534085283" x2="398.54650534085283" y1="155.75000000000003" y2="155.75000000000003"/> + <line stroke="#888888" x1="398.54650534085283" x2="398.54650534085283" y1="155.75000000000003" y2="156.75"/> + <line stroke="#888888" x1="398.54650534085283" x2="397.54650534085283" y1="156.75" y2="156.75"/> + <line stroke="#888888" x1="377.54650534085283" x2="377.54650534085283" y1="159.25" y2="158.25000000000003"/> + <line stroke="#888888" x1="377.54650534085283" x2="378.54650534085283" y1="158.25000000000003" y2="158.25000000000003"/> + <line stroke="#888888" x1="378.54650534085283" x2="378.54650534085283" y1="158.25000000000003" y2="159.25"/> + <line stroke="#888888" x1="378.54650534085283" x2="377.54650534085283" y1="159.25" y2="159.25"/> + <line stroke="#888888" x1="397.54650534085283" x2="397.54650534085283" y1="159.25" y2="158.25000000000003"/> + <line stroke="#888888" x1="397.54650534085283" x2="398.54650534085283" y1="158.25000000000003" y2="158.25000000000003"/> + <line stroke="#888888" x1="398.54650534085283" x2="398.54650534085283" y1="158.25000000000003" y2="159.25"/> + <line stroke="#888888" x1="398.54650534085283" x2="397.54650534085283" y1="159.25" y2="159.25"/> + <line stroke="#888888" x1="377.54650534085283" x2="377.54650534085283" y1="161.75" y2="160.75000000000003"/> + <line stroke="#888888" x1="377.54650534085283" x2="378.54650534085283" y1="160.75000000000003" y2="160.75000000000003"/> + <line stroke="#888888" x1="378.54650534085283" x2="378.54650534085283" y1="160.75000000000003" y2="161.75"/> + <line stroke="#888888" x1="378.54650534085283" x2="377.54650534085283" y1="161.75" y2="161.75"/> + <line stroke="#888888" x1="397.54650534085283" x2="397.54650534085283" y1="161.75" y2="160.75000000000003"/> + <line stroke="#888888" x1="397.54650534085283" x2="398.54650534085283" y1="160.75000000000003" y2="160.75000000000003"/> + <line stroke="#888888" x1="398.54650534085283" x2="398.54650534085283" y1="160.75000000000003" y2="161.75"/> + <line stroke="#888888" x1="398.54650534085283" x2="397.54650534085283" y1="161.75" y2="161.75"/> + <line stroke="#888888" x1="377.54650534085283" x2="377.54650534085283" y1="164.25000000000003" y2="163.25000000000003"/> + <line stroke="#888888" x1="377.54650534085283" x2="378.54650534085283" y1="163.25000000000003" y2="163.25000000000003"/> + <line stroke="#888888" x1="378.54650534085283" x2="378.54650534085283" y1="163.25000000000003" y2="164.25000000000003"/> + <line stroke="#888888" x1="378.54650534085283" x2="377.54650534085283" y1="164.25000000000003" y2="164.25000000000003"/> + <line stroke="#888888" x1="397.54650534085283" x2="397.54650534085283" y1="164.25000000000003" y2="163.25000000000003"/> + <line stroke="#888888" x1="397.54650534085283" x2="398.54650534085283" y1="163.25000000000003" y2="163.25000000000003"/> + <line stroke="#888888" x1="398.54650534085283" x2="398.54650534085283" y1="163.25000000000003" y2="164.25000000000003"/> + <line stroke="#888888" x1="398.54650534085283" x2="397.54650534085283" y1="164.25000000000003" y2="164.25000000000003"/> + <line stroke="#888888" x1="377.54650534085283" x2="377.54650534085283" y1="166.75000000000003" y2="165.75"/> + <line stroke="#888888" x1="377.54650534085283" x2="378.54650534085283" y1="165.75" y2="165.75"/> + <line stroke="#888888" x1="378.54650534085283" x2="378.54650534085283" y1="165.75" y2="166.75000000000003"/> + <line stroke="#888888" x1="378.54650534085283" x2="377.54650534085283" y1="166.75000000000003" y2="166.75000000000003"/> + <line stroke="#888888" x1="397.54650534085283" x2="397.54650534085283" y1="166.75000000000003" y2="165.75"/> + <line stroke="#888888" x1="397.54650534085283" x2="398.54650534085283" y1="165.75" y2="165.75"/> + <line stroke="#888888" x1="398.54650534085283" x2="398.54650534085283" y1="165.75" y2="166.75000000000003"/> + <line stroke="#888888" x1="398.54650534085283" x2="397.54650534085283" y1="166.75000000000003" y2="166.75000000000003"/> + <line stroke="#888888" x1="377.54650534085283" x2="377.54650534085283" y1="169.25000000000003" y2="168.25"/> + <line stroke="#888888" x1="377.54650534085283" x2="378.54650534085283" y1="168.25" y2="168.25"/> + <line stroke="#888888" x1="378.54650534085283" x2="378.54650534085283" y1="168.25" y2="169.25000000000003"/> + <line stroke="#888888" x1="378.54650534085283" x2="377.54650534085283" y1="169.25000000000003" y2="169.25000000000003"/> + <line stroke="#888888" x1="397.54650534085283" x2="397.54650534085283" y1="169.25000000000003" y2="168.25"/> + <line stroke="#888888" x1="397.54650534085283" x2="398.54650534085283" y1="168.25" y2="168.25"/> + <line stroke="#888888" x1="398.54650534085283" x2="398.54650534085283" y1="168.25" y2="169.25000000000003"/> + <line stroke="#888888" x1="398.54650534085283" x2="397.54650534085283" y1="169.25000000000003" y2="169.25000000000003"/> + <line stroke="#888888" x1="377.54650534085283" x2="377.54650534085283" y1="171.75000000000003" y2="170.75"/> + <line stroke="#888888" x1="377.54650534085283" x2="378.54650534085283" y1="170.75" y2="170.75"/> + <line stroke="#888888" x1="378.54650534085283" x2="378.54650534085283" y1="170.75" y2="171.75000000000003"/> + <line stroke="#888888" x1="378.54650534085283" x2="377.54650534085283" y1="171.75000000000003" y2="171.75000000000003"/> + <line stroke="#888888" x1="397.54650534085283" x2="397.54650534085283" y1="171.75000000000003" y2="170.75"/> + <line stroke="#888888" x1="397.54650534085283" x2="398.54650534085283" y1="170.75" y2="170.75"/> + <line stroke="#888888" x1="398.54650534085283" x2="398.54650534085283" y1="170.75" y2="171.75000000000003"/> + <line stroke="#888888" x1="398.54650534085283" x2="397.54650534085283" y1="171.75000000000003" y2="171.75000000000003"/> + <line stroke="#888888" x1="377.54650534085283" x2="377.54650534085283" y1="174.25000000000003" y2="173.25000000000003"/> + <line stroke="#888888" x1="377.54650534085283" x2="378.54650534085283" y1="173.25000000000003" y2="173.25000000000003"/> + <line stroke="#888888" x1="378.54650534085283" x2="378.54650534085283" y1="173.25000000000003" y2="174.25000000000003"/> + <line stroke="#888888" x1="378.54650534085283" x2="377.54650534085283" y1="174.25000000000003" y2="174.25000000000003"/> + <line stroke="#888888" x1="397.54650534085283" x2="397.54650534085283" y1="174.25000000000003" y2="173.25000000000003"/> + <line stroke="#888888" x1="397.54650534085283" x2="398.54650534085283" y1="173.25000000000003" y2="173.25000000000003"/> + <line stroke="#888888" x1="398.54650534085283" x2="398.54650534085283" y1="173.25000000000003" y2="174.25000000000003"/> + <line stroke="#888888" x1="398.54650534085283" x2="397.54650534085283" y1="174.25000000000003" y2="174.25000000000003"/> + <line stroke="#888888" x1="377.54650534085283" x2="377.54650534085283" y1="176.75000000000003" y2="175.75000000000003"/> + <line stroke="#888888" x1="377.54650534085283" x2="378.54650534085283" y1="175.75000000000003" y2="175.75000000000003"/> + <line stroke="#888888" x1="378.54650534085283" x2="378.54650534085283" y1="175.75000000000003" y2="176.75000000000003"/> + <line stroke="#888888" x1="378.54650534085283" x2="377.54650534085283" y1="176.75000000000003" y2="176.75000000000003"/> + <line stroke="#888888" x1="397.54650534085283" x2="397.54650534085283" y1="176.75000000000003" y2="175.75000000000003"/> + <line stroke="#888888" x1="397.54650534085283" x2="398.54650534085283" y1="175.75000000000003" y2="175.75000000000003"/> + <line stroke="#888888" x1="398.54650534085283" x2="398.54650534085283" y1="175.75000000000003" y2="176.75000000000003"/> + <line stroke="#888888" x1="398.54650534085283" x2="397.54650534085283" y1="176.75000000000003" y2="176.75000000000003"/> + <line stroke="#888888" x1="377.54650534085283" x2="377.54650534085283" y1="179.25000000000003" y2="178.25000000000003"/> + <line stroke="#888888" x1="377.54650534085283" x2="378.54650534085283" y1="178.25000000000003" y2="178.25000000000003"/> + <line stroke="#888888" x1="378.54650534085283" x2="378.54650534085283" y1="178.25000000000003" y2="179.25000000000003"/> + <line stroke="#888888" x1="378.54650534085283" x2="377.54650534085283" y1="179.25000000000003" y2="179.25000000000003"/> + <line stroke="#888888" x1="397.54650534085283" x2="397.54650534085283" y1="179.25000000000003" y2="178.25000000000003"/> + <line stroke="#888888" x1="397.54650534085283" x2="398.54650534085283" y1="178.25000000000003" y2="178.25000000000003"/> + <line stroke="#888888" x1="398.54650534085283" x2="398.54650534085283" y1="178.25000000000003" y2="179.25000000000003"/> + <line stroke="#888888" x1="398.54650534085283" x2="397.54650534085283" y1="179.25000000000003" y2="179.25000000000003"/> + <line stroke="#888888" x1="377.54650534085283" x2="377.54650534085283" y1="181.75" y2="180.75000000000003"/> + <line stroke="#888888" x1="377.54650534085283" x2="378.54650534085283" y1="180.75000000000003" y2="180.75000000000003"/> + <line stroke="#888888" x1="378.54650534085283" x2="378.54650534085283" y1="180.75000000000003" y2="181.75"/> + <line stroke="#888888" x1="378.54650534085283" x2="377.54650534085283" y1="181.75" y2="181.75"/> + <line stroke="#888888" x1="396.54650534085283" x2="396.54650534085283" y1="182.75000000000003" y2="179.75"/> + <line stroke="#888888" x1="396.54650534085283" x2="399.5465053408528" y1="179.75" y2="179.75"/> + <line stroke="#888888" x1="399.5465053408528" x2="399.5465053408528" y1="179.75" y2="182.75000000000003"/> + <line stroke="#888888" x1="399.5465053408528" x2="396.54650534085283" y1="182.75000000000003" y2="182.75000000000003"/> + <line stroke="#888888" x1="392.29650534085283" x2="383.79650534085283" y1="139.75000000000003" y2="139.75000000000003"/> + <line stroke="#888888" x1="383.79650534085283" x2="383.79650534085283" y1="139.75000000000003" y2="139.25"/> + <line stroke="#888888" x1="383.79650534085283" x2="392.29650534085283" y1="139.25" y2="139.25"/> + <line stroke="#888888" x1="392.29650534085283" x2="392.29650534085283" y1="139.25" y2="139.75000000000003"/> + <line stroke="#888888" x1="383.79650534085283" x2="392.29650534085283" y1="187.50000000000003" y2="187.50000000000003"/> + <line stroke="#888888" x1="392.29650534085283" x2="392.29650534085283" y1="187.50000000000003" y2="188.00000000000003"/> + <line stroke="#888888" x1="392.29650534085283" x2="383.79650534085283" y1="188.00000000000003" y2="188.00000000000003"/> + <line stroke="#888888" x1="383.79650534085283" x2="383.79650534085283" y1="188.00000000000003" y2="187.50000000000003"/> + <line stroke="#888888" x1="368.54650534085283" x2="373.54650534085283" y1="143.09090909090912" y2="143.09090909090912"/> + <line stroke="#888888" x1="373.54650534085283" x2="373.54650534085283" y1="143.09090909090912" y2="154.1818181818182"/> + <line stroke="#888888" x1="373.54650534085283" x2="368.54650534085283" y1="154.1818181818182" y2="154.1818181818182"/> + <line stroke="#888888" x1="368.54650534085283" x2="373.54650534085283" y1="170.8181818181818" y2="170.8181818181818"/> + <line stroke="#888888" x1="373.54650534085283" x2="373.54650534085283" y1="170.8181818181818" y2="181.90909090909093"/> + <line stroke="#888888" x1="373.54650534085283" x2="368.54650534085283" y1="181.90909090909093" y2="181.90909090909093"/> + <line stroke="#888888" x1="393.79650534085283" x2="397.29650534085283" y1="116.0" y2="116.0"/> + <line stroke="#888888" x1="397.29650534085283" x2="397.29650534085283" y1="116.0" y2="124.00000000000003"/> + <line stroke="#888888" x1="397.29650534085283" x2="393.79650534085283" y1="124.00000000000003" y2="124.00000000000003"/> </svg> diff --git a/rocolib/output/BoatWithServoMountAndStack/graph-model.png b/rocolib/output/BoatWithServoMountAndStack/graph-model.png index 4479e9daed86b679d4a2fd4140d25d41a814e7e5..0d6b613b95817cb1490622e325e6f6c60853ae0b 100644 Binary files a/rocolib/output/BoatWithServoMountAndStack/graph-model.png and b/rocolib/output/BoatWithServoMountAndStack/graph-model.png differ diff --git a/rocolib/output/BoatWithServoMountAndStack/graph-model.stl b/rocolib/output/BoatWithServoMountAndStack/graph-model.stl index 08929f574edda207740c9441fd3ec92a3462ed5f..9ad3e912769815f098aab1e10aa8c0d35bbe912f 100644 --- a/rocolib/output/BoatWithServoMountAndStack/graph-model.stl +++ b/rocolib/output/BoatWithServoMountAndStack/graph-model.stl @@ -15,190 +15,204 @@ endloop endfacet facet normal 0 0 0 outer loop -vertex -0.0240 0.0340 -0.1000 -vertex -0.0000 0.0340 -0.1000 -vertex -0.0000 0.0700 -0.1000 +vertex -0.0240 0.0340 -0.0900 +vertex -0.0000 0.0340 -0.0900 +vertex -0.0000 0.0700 -0.0900 endloop endfacet facet normal 0 0 0 outer loop -vertex -0.0000 0.0700 -0.1000 -vertex -0.0240 0.0700 -0.1000 -vertex -0.0240 0.0340 -0.1000 +vertex -0.0000 0.0700 -0.0900 +vertex -0.0240 0.0700 -0.0900 +vertex -0.0240 0.0340 -0.0900 endloop endfacet facet normal 0 0 0 outer loop -vertex -0.1240 0.0700 -0.0000 -vertex 0.1800 0.0700 0.0000 -vertex 0.1800 0.0700 -0.1000 +vertex -0.1040 0.0700 0.0000 +vertex 0.0800 0.0700 -0.0000 +vertex 0.0800 0.0700 -0.0900 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.1800 0.0700 -0.1000 -vertex -0.1240 0.0700 -0.1000 -vertex -0.1240 0.0700 -0.0000 +vertex 0.0800 0.0700 -0.0900 +vertex -0.1040 0.0700 -0.0900 +vertex -0.1040 0.0700 0.0000 endloop endfacet facet normal 0 0 0 outer loop -vertex -0.1240 0.0000 0.0000 -vertex 0.1800 0.0000 0.0000 -vertex 0.1800 0.0700 0.0000 +vertex -0.1040 0.0000 0.0000 +vertex 0.0800 0.0000 0.0000 +vertex 0.0800 0.0700 0.0000 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.1800 0.0700 0.0000 -vertex -0.1240 0.0700 0.0000 -vertex -0.1240 0.0000 0.0000 +vertex 0.0800 0.0700 0.0000 +vertex -0.1040 0.0700 0.0000 +vertex -0.1040 0.0000 0.0000 endloop endfacet facet normal 0 0 0 outer loop -vertex -0.1240 0.0700 -0.1000 -vertex 0.1800 0.0700 -0.1000 -vertex 0.1800 0.0000 -0.1000 +vertex -0.1040 0.0700 -0.0900 +vertex 0.0800 0.0700 -0.0900 +vertex 0.0800 -0.0000 -0.0900 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.1800 0.0000 -0.1000 -vertex -0.1240 0.0000 -0.1000 -vertex -0.1240 0.0700 -0.1000 +vertex 0.0800 -0.0000 -0.0900 +vertex -0.1040 0.0000 -0.0900 +vertex -0.1040 0.0700 -0.0900 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.1800 0.0700 0.0000 -vertex 0.1800 0.0000 0.0000 -vertex 0.1800 0.0000 -0.0500 +vertex 0.0800 0.0700 0.0000 +vertex 0.0800 0.0000 0.0000 +vertex 0.1190 -0.0000 -0.0351 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.1800 0.0700 -0.0500 -vertex 0.1800 0.0700 -0.0000 -vertex 0.1800 0.0000 -0.0500 +vertex 0.1190 -0.0000 -0.0351 +vertex 0.1300 -0.0000 -0.0450 +vertex 0.0800 0.0700 0.0000 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.1800 0.0700 -0.0500 -vertex 0.1800 0.0000 -0.0500 -vertex 0.1800 0.0700 -0.1000 +vertex 0.0800 0.0700 -0.0450 +vertex 0.0800 0.0700 -0.0000 +vertex 0.1300 0.0000 -0.0450 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.1800 -0.0000 -0.0500 -vertex 0.1800 0.0000 -0.1000 -vertex 0.1800 0.0700 -0.1000 +vertex 0.0800 0.0700 -0.0450 +vertex 0.1300 -0.0000 -0.0450 +vertex 0.0800 0.0700 -0.0900 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.1800 -0.0000 -0.0000 -vertex 0.1800 0.0700 -0.0000 -vertex 0.1800 -0.0000 -0.0700 +vertex 0.1190 -0.0000 -0.0549 +vertex 0.0800 -0.0000 -0.0900 +vertex 0.0800 0.0700 -0.0900 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.1800 0.0000 0.0000 -vertex 0.1800 0.0000 -0.0700 -vertex 0.1800 0.0700 0.0000 +vertex 0.0800 0.0700 -0.0900 +vertex 0.1300 -0.0000 -0.0450 +vertex 0.1190 -0.0000 -0.0549 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.1800 0.0000 -0.1000 -vertex 0.1800 -0.0000 -0.0300 -vertex 0.1800 0.0700 -0.1000 +vertex 0.0800 0.0000 0.0000 +vertex 0.0800 0.0700 0.0000 +vertex 0.1190 0.0000 -0.0351 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.1800 0.0000 -0.1000 -vertex 0.1800 0.0700 -0.1000 -vertex 0.1800 -0.0000 -0.0300 +vertex 0.0800 0.0000 0.0000 +vertex 0.1190 0.0000 -0.0351 +vertex 0.0800 0.0700 0.0000 endloop endfacet facet normal 0 0 0 outer loop -vertex -0.1240 0.0700 -0.1000 -vertex -0.1240 0.0000 -0.1000 -vertex -0.1619 0.0000 -0.0621 +vertex 0.0800 -0.0000 -0.0900 +vertex 0.1190 -0.0000 -0.0549 +vertex 0.0800 0.0700 -0.0900 endloop endfacet facet normal 0 0 0 outer loop -vertex -0.1619 0.0000 -0.0621 -vertex -0.1740 0.0000 -0.0500 -vertex -0.1240 0.0700 -0.1000 +vertex 0.0800 -0.0000 -0.0900 +vertex 0.0800 0.0700 -0.0900 +vertex 0.1190 -0.0000 -0.0549 endloop endfacet facet normal 0 0 0 outer loop -vertex -0.1240 0.0700 -0.0500 -vertex -0.1240 0.0700 -0.1000 -vertex -0.1740 0.0000 -0.0500 +vertex -0.1040 0.0700 -0.0900 +vertex -0.1040 0.0000 -0.0900 +vertex -0.1430 0.0000 -0.0549 endloop endfacet facet normal 0 0 0 outer loop -vertex -0.1240 0.0700 -0.0500 -vertex -0.1740 0.0000 -0.0500 -vertex -0.1240 0.0700 -0.0000 +vertex -0.1430 0.0000 -0.0549 +vertex -0.1540 0.0000 -0.0450 +vertex -0.1040 0.0700 -0.0900 endloop endfacet facet normal 0 0 0 outer loop -vertex -0.1619 0.0000 -0.0379 -vertex -0.1240 0.0000 -0.0000 -vertex -0.1240 0.0700 -0.0000 +vertex -0.1040 0.0700 -0.0450 +vertex -0.1040 0.0700 -0.0900 +vertex -0.1540 0.0000 -0.0450 endloop endfacet facet normal 0 0 0 outer loop -vertex -0.1240 0.0700 -0.0000 -vertex -0.1740 0.0000 -0.0500 -vertex -0.1619 0.0000 -0.0379 +vertex -0.1040 0.0700 -0.0450 +vertex -0.1540 0.0000 -0.0450 +vertex -0.1040 0.0700 0.0000 endloop endfacet facet normal 0 0 0 outer loop -vertex -0.1240 0.0000 -0.1000 -vertex -0.1240 0.0700 -0.1000 -vertex -0.1619 0.0000 -0.0621 +vertex -0.1430 0.0000 -0.0351 +vertex -0.1040 0.0000 0.0000 +vertex -0.1040 0.0700 0.0000 endloop endfacet facet normal 0 0 0 outer loop -vertex -0.1240 0.0000 -0.1000 -vertex -0.1619 0.0000 -0.0621 -vertex -0.1240 0.0700 -0.1000 +vertex -0.1040 0.0700 0.0000 +vertex -0.1540 0.0000 -0.0450 +vertex -0.1430 0.0000 -0.0351 endloop endfacet facet normal 0 0 0 outer loop -vertex -0.1240 0.0000 -0.0000 -vertex -0.1619 0.0000 -0.0379 -vertex -0.1240 0.0700 -0.0000 +vertex -0.1040 0.0000 -0.0900 +vertex -0.1040 0.0700 -0.0900 +vertex -0.1430 0.0000 -0.0549 endloop endfacet facet normal 0 0 0 outer loop -vertex -0.1240 0.0000 -0.0000 -vertex -0.1240 0.0700 -0.0000 -vertex -0.1619 0.0000 -0.0379 +vertex -0.1040 0.0000 -0.0900 +vertex -0.1430 0.0000 -0.0549 +vertex -0.1040 0.0700 -0.0900 endloop endfacet facet normal 0 0 0 outer loop -vertex -0.0240 0.0700 -0.0500 -vertex 0.0000 0.0700 -0.0500 +vertex -0.1040 0.0000 0.0000 +vertex -0.1430 0.0000 -0.0351 +vertex -0.1040 0.0700 0.0000 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.1040 0.0000 0.0000 +vertex -0.1040 0.0700 0.0000 +vertex -0.1430 0.0000 -0.0351 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0240 0.0700 -0.0450 +vertex 0.0000 0.0700 -0.0450 vertex 0.0000 0.0700 -0.0000 endloop endfacet @@ -206,21 +220,21 @@ facet normal 0 0 0 outer loop vertex 0.0000 0.0700 -0.0000 vertex -0.0240 0.0700 -0.0000 -vertex -0.0240 0.0700 -0.0500 +vertex -0.0240 0.0700 -0.0450 endloop endfacet facet normal 0 0 0 outer loop -vertex -0.0000 0.0700 -0.0500 -vertex -0.0240 0.0700 -0.0500 -vertex -0.0240 0.0700 -0.1000 +vertex 0.0000 0.0700 -0.0450 +vertex -0.0240 0.0700 -0.0450 +vertex -0.0240 0.0700 -0.0900 endloop endfacet facet normal 0 0 0 outer loop -vertex -0.0240 0.0700 -0.1000 -vertex -0.0000 0.0700 -0.1000 -vertex -0.0000 0.0700 -0.0500 +vertex -0.0240 0.0700 -0.0900 +vertex -0.0000 0.0700 -0.0900 +vertex 0.0000 0.0700 -0.0450 endloop endfacet facet normal 0 0 0 @@ -449,226 +463,226 @@ endloop endfacet facet normal 0 0 0 outer loop -vertex -0.0000 0.0000 -0.1000 -vertex -0.0000 0.0110 -0.1150 -vertex -0.0000 0.0230 -0.1150 +vertex -0.0000 0.0000 -0.0900 +vertex -0.0000 0.0110 -0.1050 +vertex -0.0000 0.0230 -0.1050 endloop endfacet facet normal 0 0 0 outer loop -vertex -0.0000 0.0110 -0.1150 -vertex -0.0000 0.0000 -0.1000 -vertex -0.0000 0.0000 -0.1200 +vertex -0.0000 0.0110 -0.1050 +vertex -0.0000 0.0000 -0.0900 +vertex -0.0000 0.0000 -0.1100 endloop endfacet facet normal 0 0 0 outer loop -vertex -0.0000 0.0340 -0.1000 -vertex -0.0000 0.0230 -0.1150 -vertex -0.0000 0.0340 -0.1200 +vertex -0.0000 0.0340 -0.0900 +vertex -0.0000 0.0230 -0.1050 +vertex -0.0000 0.0340 -0.1100 endloop endfacet facet normal 0 0 0 outer loop -vertex -0.0000 0.0230 -0.1150 -vertex -0.0000 0.0340 -0.1000 -vertex -0.0000 0.0000 -0.1000 +vertex -0.0000 0.0230 -0.1050 +vertex -0.0000 0.0340 -0.0900 +vertex -0.0000 0.0000 -0.0900 endloop endfacet facet normal 0 0 0 outer loop -vertex -0.0000 0.0110 -0.1190 -vertex -0.0000 0.0000 -0.1200 -vertex -0.0000 0.0340 -0.1200 +vertex -0.0000 0.0110 -0.1090 +vertex -0.0000 0.0000 -0.1100 +vertex -0.0000 0.0340 -0.1100 endloop endfacet facet normal 0 0 0 outer loop -vertex -0.0000 0.0000 -0.1200 -vertex -0.0000 0.0110 -0.1190 -vertex -0.0000 0.0110 -0.1150 +vertex -0.0000 0.0000 -0.1100 +vertex -0.0000 0.0110 -0.1090 +vertex -0.0000 0.0110 -0.1050 endloop endfacet facet normal 0 0 0 outer loop -vertex -0.0000 0.0230 -0.1190 -vertex -0.0000 0.0340 -0.1200 -vertex -0.0000 0.0230 -0.1150 +vertex -0.0000 0.0230 -0.1090 +vertex -0.0000 0.0340 -0.1100 +vertex -0.0000 0.0230 -0.1050 endloop endfacet facet normal 0 0 0 outer loop -vertex -0.0000 0.0340 -0.1200 -vertex -0.0000 0.0230 -0.1190 -vertex -0.0000 0.0110 -0.1190 +vertex -0.0000 0.0340 -0.1100 +vertex -0.0000 0.0230 -0.1090 +vertex -0.0000 0.0110 -0.1090 endloop endfacet facet normal 0 0 0 outer loop -vertex -0.0000 0.0000 -0.1200 -vertex -0.0005 0.0110 -0.1200 -vertex -0.0005 0.0230 -0.1200 +vertex -0.0000 0.0000 -0.1100 +vertex -0.0005 0.0110 -0.1100 +vertex -0.0005 0.0230 -0.1100 endloop endfacet facet normal 0 0 0 outer loop -vertex -0.0005 0.0110 -0.1200 -vertex -0.0000 0.0000 -0.1200 -vertex -0.0240 0.0000 -0.1200 +vertex -0.0005 0.0110 -0.1100 +vertex -0.0000 0.0000 -0.1100 +vertex -0.0240 0.0000 -0.1100 endloop endfacet facet normal 0 0 0 outer loop -vertex -0.0000 0.0340 -0.1200 -vertex -0.0005 0.0230 -0.1200 -vertex -0.0235 0.0230 -0.1200 +vertex -0.0000 0.0340 -0.1100 +vertex -0.0005 0.0230 -0.1100 +vertex -0.0235 0.0230 -0.1100 endloop endfacet facet normal 0 0 0 outer loop -vertex -0.0005 0.0230 -0.1200 -vertex -0.0000 0.0340 -0.1200 -vertex -0.0000 0.0000 -0.1200 +vertex -0.0005 0.0230 -0.1100 +vertex -0.0000 0.0340 -0.1100 +vertex -0.0000 0.0000 -0.1100 endloop endfacet facet normal 0 0 0 outer loop -vertex -0.0235 0.0110 -0.1200 -vertex -0.0240 0.0000 -0.1200 -vertex -0.0240 0.0340 -0.1200 +vertex -0.0235 0.0110 -0.1100 +vertex -0.0240 0.0000 -0.1100 +vertex -0.0240 0.0340 -0.1100 endloop endfacet facet normal 0 0 0 outer loop -vertex -0.0240 0.0000 -0.1200 -vertex -0.0235 0.0110 -0.1200 -vertex -0.0005 0.0110 -0.1200 +vertex -0.0240 0.0000 -0.1100 +vertex -0.0235 0.0110 -0.1100 +vertex -0.0005 0.0110 -0.1100 endloop endfacet facet normal 0 0 0 outer loop -vertex -0.0235 0.0230 -0.1200 -vertex -0.0240 0.0340 -0.1200 -vertex -0.0000 0.0340 -0.1200 +vertex -0.0235 0.0230 -0.1100 +vertex -0.0240 0.0340 -0.1100 +vertex -0.0000 0.0340 -0.1100 endloop endfacet facet normal 0 0 0 outer loop -vertex -0.0240 0.0340 -0.1200 -vertex -0.0235 0.0230 -0.1200 -vertex -0.0235 0.0110 -0.1200 +vertex -0.0240 0.0340 -0.1100 +vertex -0.0235 0.0230 -0.1100 +vertex -0.0235 0.0110 -0.1100 endloop endfacet facet normal 0 0 0 outer loop -vertex -0.0240 0.0000 -0.1200 -vertex -0.0240 0.0110 -0.1150 -vertex -0.0240 0.0110 -0.1190 +vertex -0.0240 0.0000 -0.1100 +vertex -0.0240 0.0110 -0.1050 +vertex -0.0240 0.0110 -0.1090 endloop endfacet facet normal 0 0 0 outer loop -vertex -0.0240 0.0110 -0.1150 -vertex -0.0240 0.0000 -0.1200 -vertex -0.0240 0.0000 -0.1000 +vertex -0.0240 0.0110 -0.1050 +vertex -0.0240 0.0000 -0.1100 +vertex -0.0240 0.0000 -0.0900 endloop endfacet facet normal 0 0 0 outer loop -vertex -0.0240 0.0000 -0.1200 -vertex -0.0240 0.0110 -0.1190 -vertex -0.0240 0.0230 -0.1190 +vertex -0.0240 0.0000 -0.1100 +vertex -0.0240 0.0110 -0.1090 +vertex -0.0240 0.0230 -0.1090 endloop endfacet facet normal 0 0 0 outer loop -vertex -0.0240 0.0340 -0.1200 -vertex -0.0240 0.0230 -0.1190 -vertex -0.0240 0.0230 -0.1150 +vertex -0.0240 0.0340 -0.1100 +vertex -0.0240 0.0230 -0.1090 +vertex -0.0240 0.0230 -0.1050 endloop endfacet facet normal 0 0 0 outer loop -vertex -0.0240 0.0230 -0.1190 -vertex -0.0240 0.0340 -0.1200 -vertex -0.0240 0.0000 -0.1200 +vertex -0.0240 0.0230 -0.1090 +vertex -0.0240 0.0340 -0.1100 +vertex -0.0240 0.0000 -0.1100 endloop endfacet facet normal 0 0 0 outer loop -vertex -0.0240 0.0340 -0.1200 -vertex -0.0240 0.0230 -0.1150 -vertex -0.0240 0.0340 -0.1000 +vertex -0.0240 0.0340 -0.1100 +vertex -0.0240 0.0230 -0.1050 +vertex -0.0240 0.0340 -0.0900 endloop endfacet facet normal 0 0 0 outer loop -vertex -0.0240 0.0110 -0.1150 -vertex -0.0240 0.0125 -0.1070 -vertex -0.0240 0.0230 -0.1150 +vertex -0.0240 0.0110 -0.1050 +vertex -0.0240 0.0125 -0.0970 +vertex -0.0240 0.0230 -0.1050 endloop endfacet facet normal 0 0 0 outer loop -vertex -0.0240 0.0125 -0.1070 -vertex -0.0240 0.0000 -0.1000 -vertex -0.0240 0.0125 -0.1030 +vertex -0.0240 0.0125 -0.0970 +vertex -0.0240 0.0000 -0.0900 +vertex -0.0240 0.0125 -0.0930 endloop endfacet facet normal 0 0 0 outer loop -vertex -0.0240 0.0000 -0.1000 -vertex -0.0240 0.0125 -0.1070 -vertex -0.0240 0.0110 -0.1150 +vertex -0.0240 0.0000 -0.0900 +vertex -0.0240 0.0125 -0.0970 +vertex -0.0240 0.0110 -0.1050 endloop endfacet facet normal 0 0 0 outer loop -vertex -0.0240 0.0125 -0.1030 -vertex -0.0240 0.0000 -0.1000 -vertex -0.0240 0.0340 -0.1000 +vertex -0.0240 0.0125 -0.0930 +vertex -0.0240 0.0000 -0.0900 +vertex -0.0240 0.0340 -0.0900 endloop endfacet facet normal 0 0 0 outer loop -vertex -0.0240 0.0215 -0.1070 -vertex -0.0240 0.0215 -0.1030 -vertex -0.0240 0.0340 -0.1000 +vertex -0.0240 0.0215 -0.0970 +vertex -0.0240 0.0215 -0.0930 +vertex -0.0240 0.0340 -0.0900 endloop endfacet facet normal 0 0 0 outer loop -vertex -0.0240 0.0340 -0.1000 -vertex -0.0240 0.0215 -0.1030 -vertex -0.0240 0.0125 -0.1030 +vertex -0.0240 0.0340 -0.0900 +vertex -0.0240 0.0215 -0.0930 +vertex -0.0240 0.0125 -0.0930 endloop endfacet facet normal 0 0 0 outer loop -vertex -0.0240 0.0215 -0.1070 -vertex -0.0240 0.0340 -0.1000 -vertex -0.0240 0.0230 -0.1150 +vertex -0.0240 0.0215 -0.0970 +vertex -0.0240 0.0340 -0.0900 +vertex -0.0240 0.0230 -0.1050 endloop endfacet facet normal 0 0 0 outer loop -vertex -0.0240 0.0125 -0.1070 -vertex -0.0240 0.0215 -0.1070 -vertex -0.0240 0.0230 -0.1150 +vertex -0.0240 0.0125 -0.0970 +vertex -0.0240 0.0215 -0.0970 +vertex -0.0240 0.0230 -0.1050 endloop endfacet facet normal 0 0 0 outer loop -vertex -0.0240 0.0340 -0.1000 -vertex -0.0240 0.0000 -0.1000 -vertex -0.0000 0.0000 -0.1000 +vertex -0.0240 0.0340 -0.0900 +vertex -0.0240 0.0000 -0.0900 +vertex -0.0000 0.0000 -0.0900 endloop endfacet facet normal 0 0 0 outer loop -vertex -0.0000 0.0000 -0.1000 -vertex -0.0000 0.0340 -0.1000 -vertex -0.0240 0.0340 -0.1000 +vertex -0.0000 0.0000 -0.0900 +vertex -0.0000 0.0340 -0.0900 +vertex -0.0240 0.0340 -0.0900 endloop endfacet facet normal 0 0 0 @@ -687,128 +701,128 @@ endloop endfacet facet normal 0 0 0 outer loop -vertex 0.1190 0.0000 0.0000 -vertex 0.1190 -0.0256 -0.0256 -vertex 0.1800 -0.0256 -0.0256 +vertex 0.0190 0.0000 0.0000 +vertex 0.0190 -0.0256 -0.0256 +vertex 0.0800 -0.0256 -0.0256 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.1800 -0.0256 -0.0256 -vertex 0.1800 0.0000 0.0000 -vertex 0.1190 0.0000 0.0000 +vertex 0.0800 -0.0256 -0.0256 +vertex 0.0800 0.0000 0.0000 +vertex 0.0190 0.0000 0.0000 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.1800 -0.0000 -0.0751 -vertex 0.1800 -0.0256 -0.0496 -vertex 0.1190 -0.0256 -0.0496 +vertex 0.0800 -0.0000 -0.0751 +vertex 0.0800 -0.0256 -0.0496 +vertex 0.0190 -0.0256 -0.0496 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.1190 -0.0256 -0.0496 -vertex 0.1190 -0.0000 -0.0751 -vertex 0.1800 -0.0000 -0.0751 +vertex 0.0190 -0.0256 -0.0496 +vertex 0.0190 -0.0000 -0.0751 +vertex 0.0800 -0.0000 -0.0751 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.1190 -0.0256 -0.0496 -vertex 0.1480 -0.0256 -0.0441 -vertex 0.1370 -0.0256 -0.0441 +vertex 0.0190 -0.0256 -0.0496 +vertex 0.0480 -0.0256 -0.0441 +vertex 0.0370 -0.0256 -0.0441 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.1480 -0.0256 -0.0441 -vertex 0.1190 -0.0256 -0.0496 -vertex 0.1800 -0.0256 -0.0496 +vertex 0.0480 -0.0256 -0.0441 +vertex 0.0190 -0.0256 -0.0496 +vertex 0.0800 -0.0256 -0.0496 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.1190 -0.0256 -0.0496 -vertex 0.1370 -0.0256 -0.0441 -vertex 0.1370 -0.0256 -0.0311 +vertex 0.0190 -0.0256 -0.0496 +vertex 0.0370 -0.0256 -0.0441 +vertex 0.0370 -0.0256 -0.0311 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.1190 -0.0256 -0.0256 -vertex 0.1370 -0.0256 -0.0311 -vertex 0.1480 -0.0256 -0.0311 +vertex 0.0190 -0.0256 -0.0256 +vertex 0.0370 -0.0256 -0.0311 +vertex 0.0480 -0.0256 -0.0311 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.1370 -0.0256 -0.0311 -vertex 0.1190 -0.0256 -0.0256 -vertex 0.1190 -0.0256 -0.0496 +vertex 0.0370 -0.0256 -0.0311 +vertex 0.0190 -0.0256 -0.0256 +vertex 0.0190 -0.0256 -0.0496 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.1190 -0.0256 -0.0256 -vertex 0.1480 -0.0256 -0.0311 -vertex 0.1800 -0.0256 -0.0256 +vertex 0.0190 -0.0256 -0.0256 +vertex 0.0480 -0.0256 -0.0311 +vertex 0.0800 -0.0256 -0.0256 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.1480 -0.0256 -0.0441 -vertex 0.1685 -0.0256 -0.0426 -vertex 0.1480 -0.0256 -0.0311 +vertex 0.0480 -0.0256 -0.0441 +vertex 0.0685 -0.0256 -0.0426 +vertex 0.0480 -0.0256 -0.0311 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.1685 -0.0256 -0.0426 -vertex 0.1800 -0.0256 -0.0496 -vertex 0.1745 -0.0256 -0.0426 +vertex 0.0685 -0.0256 -0.0426 +vertex 0.0800 -0.0256 -0.0496 +vertex 0.0745 -0.0256 -0.0426 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.1800 -0.0256 -0.0496 -vertex 0.1685 -0.0256 -0.0426 -vertex 0.1480 -0.0256 -0.0441 +vertex 0.0800 -0.0256 -0.0496 +vertex 0.0685 -0.0256 -0.0426 +vertex 0.0480 -0.0256 -0.0441 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.1745 -0.0256 -0.0426 -vertex 0.1800 -0.0256 -0.0496 -vertex 0.1800 -0.0256 -0.0256 +vertex 0.0745 -0.0256 -0.0426 +vertex 0.0800 -0.0256 -0.0496 +vertex 0.0800 -0.0256 -0.0256 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.1685 -0.0256 -0.0326 -vertex 0.1745 -0.0256 -0.0326 -vertex 0.1800 -0.0256 -0.0256 +vertex 0.0685 -0.0256 -0.0326 +vertex 0.0745 -0.0256 -0.0326 +vertex 0.0800 -0.0256 -0.0256 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.1800 -0.0256 -0.0256 -vertex 0.1745 -0.0256 -0.0326 -vertex 0.1745 -0.0256 -0.0426 +vertex 0.0800 -0.0256 -0.0256 +vertex 0.0745 -0.0256 -0.0326 +vertex 0.0745 -0.0256 -0.0426 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.1685 -0.0256 -0.0326 -vertex 0.1800 -0.0256 -0.0256 -vertex 0.1480 -0.0256 -0.0311 +vertex 0.0685 -0.0256 -0.0326 +vertex 0.0800 -0.0256 -0.0256 +vertex 0.0480 -0.0256 -0.0311 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.1685 -0.0256 -0.0426 -vertex 0.1685 -0.0256 -0.0326 -vertex 0.1480 -0.0256 -0.0311 +vertex 0.0685 -0.0256 -0.0426 +vertex 0.0685 -0.0256 -0.0326 +vertex 0.0480 -0.0256 -0.0311 endloop endfacet facet normal 0 0 0 @@ -3641,72 +3655,72 @@ endloop endfacet facet normal 0 0 0 outer loop -vertex 0.1824 0.0232 -0.0700 -vertex 0.1800 0.0000 -0.0700 -vertex 0.1800 0.0000 0.0000 +vertex 0.1203 0.0174 -0.0338 +vertex 0.1190 0.0000 -0.0351 +vertex 0.0800 0.0000 0.0000 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.1800 0.0000 0.0000 -vertex 0.1824 0.0232 0.0000 -vertex 0.1824 0.0232 -0.0700 +vertex 0.0800 0.0000 0.0000 +vertex 0.0812 0.0174 0.0014 +vertex 0.1203 0.0174 -0.0338 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.1824 0.0232 -0.1000 -vertex 0.1800 0.0000 -0.1000 -vertex 0.1800 -0.0000 -0.0300 +vertex 0.0812 0.0174 -0.0914 +vertex 0.0800 -0.0000 -0.0900 +vertex 0.1190 -0.0000 -0.0549 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.1800 -0.0000 -0.0300 -vertex 0.1824 0.0232 -0.0300 -vertex 0.1824 0.0232 -0.1000 +vertex 0.1190 -0.0000 -0.0549 +vertex 0.1203 0.0174 -0.0562 +vertex 0.0812 0.0174 -0.0914 endloop endfacet facet normal 0 0 0 outer loop -vertex -0.1632 0.0178 -0.0634 -vertex -0.1619 0.0000 -0.0621 -vertex -0.1240 0.0000 -0.1000 +vertex -0.1443 0.0174 -0.0562 +vertex -0.1430 0.0000 -0.0549 +vertex -0.1040 0.0000 -0.0900 endloop endfacet facet normal 0 0 0 outer loop -vertex -0.1240 0.0000 -0.1000 -vertex -0.1253 0.0178 -0.1013 -vertex -0.1632 0.0178 -0.0634 +vertex -0.1040 0.0000 -0.0900 +vertex -0.1052 0.0174 -0.0914 +vertex -0.1443 0.0174 -0.0562 endloop endfacet facet normal 0 0 0 outer loop -vertex -0.1253 0.0178 0.0013 -vertex -0.1240 0.0000 -0.0000 -vertex -0.1619 0.0000 -0.0379 +vertex -0.1052 0.0174 0.0014 +vertex -0.1040 0.0000 0.0000 +vertex -0.1430 0.0000 -0.0351 endloop endfacet facet normal 0 0 0 outer loop -vertex -0.1619 0.0000 -0.0379 -vertex -0.1632 0.0178 -0.0366 -vertex -0.1253 0.0178 0.0013 +vertex -0.1430 0.0000 -0.0351 +vertex -0.1443 0.0174 -0.0338 +vertex -0.1052 0.0174 0.0014 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0000 0.0700 -0.0550 vertex 0.0000 0.0700 -0.0500 -vertex -0.0240 0.0700 -0.0500 +vertex 0.0000 0.0700 -0.0450 +vertex -0.0240 0.0700 -0.0450 endloop endfacet facet normal 0 0 0 outer loop +vertex -0.0240 0.0700 -0.0450 vertex -0.0240 0.0700 -0.0500 -vertex -0.0240 0.0700 -0.0550 -vertex 0.0000 0.0700 -0.0550 +vertex 0.0000 0.0700 -0.0500 endloop endfacet facet normal 0 0 0 @@ -3725,44 +3739,44 @@ endloop endfacet facet normal 0 0 0 outer loop -vertex -0.0100 0.0000 -0.1000 -vertex -0.0000 0.0000 -0.1000 -vertex -0.0000 0.0340 -0.1000 +vertex -0.0100 0.0000 -0.0900 +vertex -0.0000 0.0000 -0.0900 +vertex -0.0000 0.0340 -0.0900 endloop endfacet facet normal 0 0 0 outer loop -vertex -0.0000 0.0340 -0.1000 -vertex -0.0100 0.0340 -0.1000 -vertex -0.0100 0.0000 -0.1000 +vertex -0.0000 0.0340 -0.0900 +vertex -0.0100 0.0340 -0.0900 +vertex -0.0100 0.0000 -0.0900 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.1190 -0.0100 -0.1000 -vertex 0.1190 0.0000 -0.1000 -vertex 0.1800 0.0000 -0.1000 +vertex 0.0190 -0.0100 -0.0900 +vertex 0.0190 0.0000 -0.0900 +vertex 0.0800 -0.0000 -0.0900 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.1800 0.0000 -0.1000 -vertex 0.1800 -0.0100 -0.1000 -vertex 0.1190 -0.0100 -0.1000 +vertex 0.0800 -0.0000 -0.0900 +vertex 0.0800 -0.0100 -0.0900 +vertex 0.0190 -0.0100 -0.0900 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.1090 -0.0256 -0.0496 -vertex 0.1190 -0.0256 -0.0496 -vertex 0.1190 -0.0256 -0.0256 +vertex 0.0090 -0.0256 -0.0496 +vertex 0.0190 -0.0256 -0.0496 +vertex 0.0190 -0.0256 -0.0256 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.1190 -0.0256 -0.0256 -vertex 0.1090 -0.0256 -0.0256 -vertex 0.1090 -0.0256 -0.0496 +vertex 0.0190 -0.0256 -0.0256 +vertex 0.0090 -0.0256 -0.0256 +vertex 0.0090 -0.0256 -0.0496 endloop endfacet facet normal 0 0 0 @@ -3781,16 +3795,16 @@ endloop endfacet facet normal 0 0 0 outer loop -vertex 0.1800 -0.0156 -0.0256 -vertex 0.1800 -0.0256 -0.0256 -vertex 0.1800 -0.0256 -0.0496 +vertex 0.0800 -0.0156 -0.0256 +vertex 0.0800 -0.0256 -0.0256 +vertex 0.0800 -0.0256 -0.0496 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.1800 -0.0256 -0.0496 -vertex 0.1800 -0.0156 -0.0496 -vertex 0.1800 -0.0156 -0.0256 +vertex 0.0800 -0.0256 -0.0496 +vertex 0.0800 -0.0156 -0.0496 +vertex 0.0800 -0.0156 -0.0256 endloop endfacet facet normal 0 0 0 diff --git a/rocolib/output/BoatWithServoMountAndStack/graph-silhouette.dxf b/rocolib/output/BoatWithServoMountAndStack/graph-silhouette.dxf index 4476ad1dfde5d180ba1c3ea660268009631e3f36..115d2f926b7a0ec0af26ce641ffa629806cadc02 100644 --- a/rocolib/output/BoatWithServoMountAndStack/graph-silhouette.dxf +++ b/rocolib/output/BoatWithServoMountAndStack/graph-silhouette.dxf @@ -943,15 +943,15 @@ LINE 8 0 10 -329.02325267042613 +209.0232526704265 20 -125.00000000000001 +120.00000000000001 30 0.0 11 -210.02325267042616 +190.0232526704265 21 -125.00000000000001 +120.00000000000001 31 0.0 0 @@ -963,15 +963,15 @@ DOTTED 8 0 10 -329.02325267042613 +209.0232526704265 20 -125.00000000000001 +120.00000000000001 30 0.0 11 -390.0232526704262 +270.02325267042653 21 -125.00000000000001 +120.00000000000001 31 0.0 0 @@ -981,15 +981,15 @@ LINE 8 0 10 -390.0232526704262 +270.02325267042653 20 -125.00000000000001 +120.00000000000001 30 0.0 11 -390.0232526704262 +270.02325267042653 21 -125.00000000000001 +120.00000000000001 31 0.0 0 @@ -999,15 +999,15 @@ LINE 8 0 10 -210.02325267042616 +190.0232526704265 20 -125.00000000000001 +120.00000000000001 30 0.0 11 -210.02325267042616 +190.0232526704265 21 -125.00000000000001 +120.00000000000001 31 0.0 0 @@ -1019,15 +1019,15 @@ DOTTED 8 0 10 -329.02325267042613 +209.0232526704265 20 -88.86137800081471 +83.8613780008147 30 0.0 11 -390.0232526704262 +270.02325267042653 21 -88.86137800081471 +83.8613780008147 31 0.0 0 @@ -1037,15 +1037,15 @@ LINE 8 0 10 -390.0232526704262 +270.02325267042653 20 -125.00000000000001 +120.00000000000001 30 0.0 11 -390.0232526704262 +270.02325267042653 21 -88.86137800081471 +83.8613780008147 31 0.0 0 @@ -1055,15 +1055,15 @@ LINE 8 0 10 -329.02325267042613 +209.0232526704265 20 -88.86137800081471 +83.8613780008147 30 0.0 11 -329.02325267042613 +209.0232526704265 21 -125.00000000000001 +120.00000000000001 31 0.0 0 @@ -1075,15 +1075,15 @@ DOTTED 8 0 10 -390.0232526704262 +270.02325267042653 20 -64.86137800081471 +59.8613780008147 30 0.0 11 -329.02325267042613 +209.0232526704265 21 -64.86137800081471 +59.8613780008147 31 0.0 0 @@ -1095,15 +1095,15 @@ DOTTED 8 0 10 -390.0232526704262 +270.02325267042653 20 -64.86137800081471 +59.8613780008147 30 0.0 11 -390.0232526704262 +270.02325267042653 21 -88.86137800081471 +83.8613780008147 31 0.0 0 @@ -1113,15 +1113,15 @@ LINE 8 0 10 -329.02325267042613 +209.0232526704265 20 -28.722756001629396 +23.722756001629396 30 0.0 11 -329.02325267042613 +209.0232526704265 21 -64.86137800081472 +59.86137800081471 31 0.0 0 @@ -1131,15 +1131,15 @@ LINE 8 0 10 -390.0232526704262 +270.02325267042653 20 -28.722756001629396 +23.722756001629396 30 0.0 11 -329.02325267042613 +209.0232526704265 21 -28.722756001629396 +23.722756001629396 31 0.0 0 @@ -1149,15 +1149,15 @@ LINE 8 0 10 -390.0232526704262 +270.02325267042653 20 -64.86137800081472 +59.86137800081471 30 0.0 11 -390.0232526704262 +270.02325267042653 21 -28.722756001629396 +23.722756001629396 31 0.0 0 @@ -1167,15 +1167,15 @@ LINE 8 0 10 -400.0232526704262 +280.02325267042653 20 -64.86137800081471 +59.8613780008147 30 0.0 11 -390.0232526704262 +270.02325267042653 21 -64.86137800081471 +59.8613780008147 31 0.0 0 @@ -1185,15 +1185,15 @@ LINE 8 0 10 -400.0232526704262 +280.02325267042653 20 -88.86137800081471 +83.8613780008147 30 0.0 11 -400.0232526704262 +280.02325267042653 21 -64.86137800081471 +59.8613780008147 31 0.0 0 @@ -1203,15 +1203,15 @@ LINE 8 0 10 -390.0232526704262 +270.02325267042653 20 -88.86137800081471 +83.8613780008147 30 0.0 11 -400.0232526704262 +280.02325267042653 21 -88.86137800081471 +83.8613780008147 31 0.0 0 @@ -1221,15 +1221,15 @@ LINE 8 0 10 -319.02325267042613 +199.0232526704265 20 -88.86137800081471 +83.8613780008147 30 0.0 11 -329.02325267042613 +209.0232526704265 21 -88.86137800081471 +83.8613780008147 31 0.0 0 @@ -1239,15 +1239,15 @@ LINE 8 0 10 -319.02325267042613 +199.0232526704265 20 -64.86137800081471 +59.8613780008147 30 0.0 11 -319.02325267042613 +199.0232526704265 21 -88.86137800081471 +83.8613780008147 31 0.0 0 @@ -1257,15 +1257,15 @@ LINE 8 0 10 -329.02325267042613 +209.0232526704265 20 -64.86137800081471 +59.8613780008147 30 0.0 11 -319.02325267042613 +199.0232526704265 21 -64.86137800081471 +59.8613780008147 31 0.0 0 @@ -1275,15 +1275,15 @@ LINE 8 0 10 -186.0232526704262 +166.0232526704265 20 -125.00000000000001 +120.00000000000001 30 0.0 11 -86.02325267042616 +86.02325267042649 21 -125.00000000000001 +120.00000000000001 31 0.0 0 @@ -1295,15 +1295,15 @@ DOTTED 8 0 10 -186.0232526704262 +166.0232526704265 20 -125.00000000000001 +120.00000000000001 30 0.0 11 -210.02325267042616 +190.0232526704265 21 -125.00000000000001 +120.00000000000001 31 0.0 0 @@ -1313,15 +1313,15 @@ LINE 8 0 10 -390.0232526704262 +270.02325267042653 20 -125.00000000000001 +120.00000000000001 30 0.0 11 -390.0232526704262 +270.02325267042653 21 -125.00000000000001 +120.00000000000001 31 0.0 0 @@ -1331,15 +1331,15 @@ LINE 8 0 10 -86.02325267042616 +86.02325267042649 20 -125.00000000000001 +120.00000000000001 30 0.0 11 -86.02325267042616 +86.02325267042649 21 -125.00000000000001 +120.00000000000001 31 0.0 0 @@ -1349,15 +1349,15 @@ LINE 8 0 10 -210.02325267042616 +190.0232526704265 20 -125.00000000000001 +120.00000000000001 30 0.0 11 -210.02325267042616 +190.0232526704265 21 -91.0 +86.00000000000001 31 0.0 0 @@ -1369,15 +1369,15 @@ DOTTED 8 0 10 -186.0232526704262 +166.0232526704265 20 -91.0 +86.00000000000001 30 0.0 11 -186.0232526704262 +166.0232526704265 21 -125.00000000000001 +120.00000000000001 31 0.0 0 @@ -1387,15 +1387,15 @@ LINE 8 0 10 -186.0232526704262 +166.0232526704265 20 -55.00000000000001 +50.0 30 0.0 11 -186.0232526704262 +166.0232526704265 21 -91.0 +86.00000000000001 31 0.0 0 @@ -1407,15 +1407,15 @@ DOTTED 8 0 10 -186.0232526704262 +166.0232526704265 20 -55.00000000000001 +50.0 30 0.0 11 -210.02325267042616 +190.0232526704265 21 -55.00000000000001 +50.0 31 0.0 0 @@ -1425,15 +1425,15 @@ LINE 8 0 10 -210.02325267042616 +190.0232526704265 20 -91.0 +86.00000000000001 30 0.0 11 -210.02325267042616 +190.0232526704265 21 -55.00000000000001 +50.0 31 0.0 0 @@ -1443,13 +1443,13 @@ LINE 8 0 10 -210.02325267042616 +190.0232526704265 20 -55.00000000000001 +50.0 30 0.0 11 -210.02325267042616 +190.0232526704265 21 5.000000000000001 31 @@ -1461,15 +1461,15 @@ LINE 8 0 10 -186.0232526704262 +166.0232526704265 20 5.000000000000001 30 0.0 11 -186.0232526704262 +166.0232526704265 21 -55.00000000000001 +50.0 31 0.0 0 @@ -1479,13 +1479,13 @@ LINE 8 0 10 -186.0232526704262 +166.0232526704265 20 0.0 30 0.0 11 -186.0232526704262 +166.0232526704265 21 5.000000000000001 31 @@ -1497,13 +1497,13 @@ LINE 8 0 10 -210.02325267042616 +190.0232526704265 20 0.0 30 0.0 11 -186.0232526704262 +166.0232526704265 21 0.0 31 @@ -1515,13 +1515,13 @@ LINE 8 0 10 -210.02325267042616 +190.0232526704265 20 5.000000000000001 30 0.0 11 -210.02325267042616 +190.0232526704265 21 0.0 31 @@ -1533,15 +1533,15 @@ LINE 8 0 10 -186.0232526704262 +166.0232526704265 20 -91.0 +86.00000000000001 30 0.0 11 -166.0232526704262 +146.0232526704265 21 -91.0 +86.00000000000001 31 0.0 0 @@ -1551,15 +1551,15 @@ LINE 8 0 10 -166.0232526704262 +146.0232526704265 20 -125.00000000000001 +120.00000000000001 30 0.0 11 -186.0232526704262 +166.0232526704265 21 -125.00000000000001 +120.00000000000001 31 0.0 0 @@ -1571,15 +1571,15 @@ DOTTED 8 0 10 -166.0232526704262 +146.0232526704265 20 -91.0 +86.00000000000001 30 0.0 11 -166.0232526704262 +146.0232526704265 21 -125.00000000000001 +120.00000000000001 31 0.0 0 @@ -1589,15 +1589,15 @@ LINE 8 0 10 -166.0232526704262 +146.0232526704265 20 -91.0 +86.00000000000001 30 0.0 11 -142.02325267042616 +122.02325267042649 21 -91.0 +86.00000000000001 31 0.0 0 @@ -1607,15 +1607,15 @@ LINE 8 0 10 -142.02325267042616 +122.02325267042649 20 -125.00000000000001 +120.00000000000001 30 0.0 11 -166.0232526704262 +146.0232526704265 21 -125.00000000000001 +120.00000000000001 31 0.0 0 @@ -1627,15 +1627,15 @@ DOTTED 8 0 10 -142.02325267042616 +122.02325267042649 20 -91.0 +86.00000000000001 30 0.0 11 -142.02325267042616 +122.02325267042649 21 -125.00000000000001 +120.00000000000001 31 0.0 0 @@ -1645,15 +1645,15 @@ LINE 8 0 10 -142.02325267042616 +122.02325267042649 20 -91.0 +86.00000000000001 30 0.0 11 -122.02325267042617 +102.02325267042649 21 -91.0 +86.00000000000001 31 0.0 0 @@ -1663,15 +1663,15 @@ LINE 8 0 10 -122.02325267042617 +102.02325267042649 20 -125.00000000000001 +120.00000000000001 30 0.0 11 -142.02325267042616 +122.02325267042649 21 -125.00000000000001 +120.00000000000001 31 0.0 0 @@ -1683,15 +1683,15 @@ DOTTED 8 0 10 -122.02325267042617 +102.02325267042649 20 -125.00000000000001 +120.00000000000001 30 0.0 11 -122.02325267042617 +102.02325267042649 21 -91.0 +86.00000000000001 31 0.0 0 @@ -1701,15 +1701,15 @@ LINE 8 0 10 -112.02325267042617 +92.02325267042649 20 -125.00000000000001 +120.00000000000001 30 0.0 11 -122.02325267042617 +102.02325267042649 21 -125.00000000000001 +120.00000000000001 31 0.0 0 @@ -1719,15 +1719,15 @@ LINE 8 0 10 -112.02325267042617 +92.02325267042649 20 -91.0 +86.00000000000001 30 0.0 11 -112.02325267042617 +92.02325267042649 21 -125.00000000000001 +120.00000000000001 31 0.0 0 @@ -1737,15 +1737,15 @@ LINE 8 0 10 -122.02325267042617 +102.02325267042649 20 -91.0 +86.00000000000001 30 0.0 11 -112.02325267042617 +92.02325267042649 21 -91.0 +86.00000000000001 31 0.0 0 @@ -1757,15 +1757,15 @@ DOTTED 8 0 10 -390.0232526704262 +270.02325267042653 20 -195.00000000000003 +190.00000000000003 30 0.0 11 -86.02325267042616 +86.02325267042649 21 -195.00000000000003 +190.00000000000003 31 0.0 0 @@ -1777,15 +1777,15 @@ DOTTED 8 0 10 -390.0232526704262 +270.02325267042653 20 -195.00000000000003 +190.00000000000003 30 0.0 11 -390.0232526704262 +270.02325267042653 21 -125.00000000000001 +120.00000000000001 31 0.0 0 @@ -1797,15 +1797,15 @@ DOTTED 8 0 10 -390.0232526704262 +270.02325267042653 20 -125.00000000000001 +120.00000000000001 30 0.0 11 -460.0232526704262 +322.53762348858805 21 -125.00000000000001 +120.00000000000001 31 0.0 0 @@ -1817,15 +1817,15 @@ DOTTED 8 0 10 -390.0232526704262 +270.02325267042653 20 -195.00000000000003 +190.00000000000003 30 0.0 11 -460.0232526704262 +322.53762348858805 21 -125.00000000000001 +120.00000000000001 31 0.0 0 @@ -1835,15 +1835,15 @@ LINE 8 0 10 -390.0232526704262 +270.02325267042653 20 -101.66666666666669 +102.49520972727949 30 0.0 11 -390.0232526704262 +270.02325267042653 21 -125.00000000000001 +120.00000000000001 31 0.0 0 @@ -1853,15 +1853,15 @@ LINE 8 0 10 -460.0232526704262 +322.53762348858805 20 -101.66666666666669 +102.49520972727949 30 0.0 11 -390.0232526704262 +270.02325267042653 21 -101.66666666666669 +102.49520972727949 31 0.0 0 @@ -1871,15 +1871,15 @@ LINE 8 0 10 -460.0232526704262 +322.53762348858805 20 -125.00000000000001 +120.00000000000001 30 0.0 11 -460.0232526704262 +322.53762348858805 21 -101.66666666666669 +102.49520972727949 31 0.0 0 @@ -1891,15 +1891,15 @@ DOTTED 8 0 10 -390.02325267042625 +270.02325267042653 20 -195.00000000000003 +190.00000000000003 30 0.0 11 -460.0232526704262 +337.22840034432573 21 -195.00000000000003 +170.4176577976636 31 0.0 0 @@ -1909,15 +1909,15 @@ LINE 8 0 10 -460.0232526704262 +337.22840034432573 20 -195.00000000000003 +170.4176577976636 30 0.0 11 -460.0232526704262 +322.53762348858805 21 -125.00000000000001 +120.00000000000001 31 0.0 0 @@ -1927,15 +1927,15 @@ LINE 8 0 10 -460.02325267042625 +351.91917720006325 20 -265.00000000000006 +220.83531559532716 30 0.0 11 -460.0232526704262 +337.22840034432573 21 -195.0 +170.4176577976636 31 0.0 0 @@ -1945,15 +1945,55 @@ LINE 8 0 10 -460.0232526704262 +356.04650534085283 + 20 +235.00000000000003 + 30 +0.0 + 11 +351.91917720006325 + 21 +220.83531559532716 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +356.04650534085283 + 20 +235.00000000000003 + 30 +0.0 + 11 +270.02325267042653 + 21 +190.00000000000003 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +270.02325267042653 20 -245.0 +235.00000000000003 30 0.0 11 -460.02325267042625 +270.02325267042653 21 -265.00000000000006 +190.00000000000003 31 0.0 0 @@ -1965,15 +2005,15 @@ DOTTED 8 0 10 -390.0232526704263 +270.02325267042653 20 -245.00000000000003 +280.00000000000006 30 0.0 11 -390.02325267042625 +270.02325267042653 21 -195.00000000000006 +235.00000000000006 31 0.0 0 @@ -1985,15 +2025,15 @@ DOTTED 8 0 10 -390.0232526704263 +356.04650534085283 20 -295.0 +235.00000000000003 30 0.0 11 -390.0232526704263 +270.02325267042653 21 -245.00000000000003 +280.0000000000001 31 0.0 0 @@ -2005,15 +2045,15 @@ DOTTED 8 0 10 -460.02325267042625 +337.22840034432573 20 -295.0 +299.5823422023365 30 0.0 11 -390.0232526704263 +270.02325267042653 21 -295.0 +280.0000000000001 31 0.0 0 @@ -2023,15 +2063,15 @@ LINE 8 0 10 -460.02325267042625 +351.91917720006325 20 -225.00000000000003 +249.16468440467293 30 0.0 11 -460.02325267042625 +356.04650534085283 21 -245.00000000000003 +235.00000000000003 31 0.0 0 @@ -2041,15 +2081,15 @@ LINE 8 0 10 -460.02325267042625 +337.22840034432573 20 -295.0 +299.5823422023365 30 0.0 11 -460.02325267042625 +351.91917720006325 21 -225.00000000000003 +249.16468440467293 31 0.0 0 @@ -2059,15 +2099,15 @@ LINE 8 0 10 -460.02325267042625 +322.53762348858817 20 -365.0 +350.0 30 0.0 11 -460.02325267042625 +337.22840034432573 21 -295.0 +299.58234220233646 31 0.0 0 @@ -2079,15 +2119,15 @@ DOTTED 8 0 10 -460.02325267042625 +322.53762348858817 20 -365.0 +350.0 30 0.0 11 -390.0232526704263 +270.02325267042653 21 -295.0 +280.0000000000001 31 0.0 0 @@ -2099,15 +2139,15 @@ DOTTED 8 0 10 -390.0232526704263 +270.0232526704266 20 -365.00000000000006 +350.00000000000006 30 0.0 11 -390.0232526704263 +270.02325267042653 21 -295.0 +280.00000000000006 31 0.0 0 @@ -2119,15 +2159,15 @@ DOTTED 8 0 10 -460.02325267042625 +322.53762348858817 20 -365.0 +350.0 30 0.0 11 -390.0232526704263 +270.0232526704266 21 -365.00000000000006 +350.00000000000006 31 0.0 0 @@ -2139,15 +2179,15 @@ DOTTED 8 0 10 -390.0232526704263 +270.02325267042653 20 -295.0 +280.00000000000006 30 0.0 11 -86.02325267042634 +86.02325267042643 21 -295.0000000000001 +280.0000000000002 31 0.0 0 @@ -2159,15 +2199,15 @@ DOTTED 8 0 10 -210.02325267042633 +190.02325267042653 20 -365.0000000000001 +350.0000000000001 30 0.0 11 -186.02325267042636 +166.02325267042656 21 -365.00000000000017 +350.0000000000001 31 0.0 0 @@ -2177,15 +2217,15 @@ LINE 8 0 10 -86.02325267042634 +86.0232526704265 20 -365.00000000000017 +350.0000000000002 30 0.0 11 -186.02325267042636 +166.02325267042656 21 -365.00000000000017 +350.0000000000001 31 0.0 0 @@ -2195,15 +2235,15 @@ LINE 8 0 10 -86.02325267042634 +86.0232526704265 20 -365.00000000000017 +350.0000000000002 30 0.0 11 -86.02325267042634 +86.0232526704265 21 -365.00000000000017 +350.0000000000002 31 0.0 0 @@ -2213,15 +2253,15 @@ LINE 8 0 10 -390.0232526704263 +270.0232526704266 20 -365.00000000000006 +350.00000000000006 30 0.0 11 -390.0232526704263 +270.0232526704266 21 -365.00000000000006 +350.00000000000006 31 0.0 0 @@ -2231,15 +2271,15 @@ LINE 8 0 10 -210.02325267042633 +190.02325267042653 20 -365.0000000000001 +350.0000000000001 30 0.0 11 -329.02325267042636 +209.02325267042656 21 -365.00000000000006 +350.0000000000001 31 0.0 0 @@ -2249,15 +2289,15 @@ LINE 8 0 10 -210.02325267042633 +190.02325267042653 20 -365.0000000000001 +350.0000000000001 30 0.0 11 -210.02325267042633 +190.02325267042653 21 -365.0000000000001 +350.0000000000001 31 0.0 0 @@ -2267,15 +2307,15 @@ LINE 8 0 10 -390.0232526704263 +270.0232526704266 20 -365.00000000000006 +350.00000000000006 30 0.0 11 -390.0232526704263 +270.0232526704266 21 -365.00000000000006 +350.00000000000006 31 0.0 0 @@ -2285,15 +2325,15 @@ LINE 8 0 10 -390.0232526704263 +270.0232526704266 20 -375.00000000000006 +360.0000000000001 30 0.0 11 -390.0232526704263 +270.0232526704266 21 -365.00000000000006 +350.00000000000006 31 0.0 0 @@ -2303,15 +2343,15 @@ LINE 8 0 10 -329.02325267042636 +209.0232526704266 20 -375.00000000000006 +360.00000000000017 30 0.0 11 -390.0232526704263 +270.0232526704266 21 -375.00000000000006 +360.0000000000001 31 0.0 0 @@ -2321,15 +2361,15 @@ LINE 8 0 10 -329.02325267042636 +209.02325267042656 20 -365.00000000000006 +350.0000000000001 30 0.0 11 -329.02325267042636 +209.0232526704266 21 -375.00000000000006 +360.00000000000017 31 0.0 0 @@ -2339,15 +2379,15 @@ LINE 8 0 10 -210.02325267042636 +190.0232526704266 20 -399.0000000000001 +384.00000000000017 30 0.0 11 -210.02325267042633 +190.02325267042653 21 -365.0000000000001 +350.0000000000001 31 0.0 0 @@ -2359,15 +2399,15 @@ DOTTED 8 0 10 -186.02325267042633 +166.02325267042656 20 -365.0000000000001 +350.0000000000001 30 0.0 11 -186.02325267042636 +166.0232526704266 21 -399.0000000000001 +384.00000000000017 31 0.0 0 @@ -2377,15 +2417,15 @@ LINE 8 0 10 -210.02325267042636 +190.02325267042664 20 -435.0000000000001 +420.00000000000017 30 0.0 11 -210.02325267042636 +190.0232526704266 21 -399.0000000000001 +384.00000000000017 31 0.0 0 @@ -2397,15 +2437,15 @@ DOTTED 8 0 10 -210.02325267042636 +190.02325267042664 20 -435.0000000000001 +420.00000000000017 30 0.0 11 -186.0232526704264 +166.02325267042661 21 -435.0000000000001 +420.00000000000017 31 0.0 0 @@ -2415,15 +2455,15 @@ LINE 8 0 10 -186.02325267042636 +166.0232526704266 20 -399.0000000000001 +384.00000000000017 30 0.0 11 -186.0232526704264 +166.02325267042661 21 -435.0000000000001 +420.00000000000017 31 0.0 0 @@ -2433,15 +2473,15 @@ LINE 8 0 10 -186.0232526704264 +166.02325267042661 20 -435.0000000000001 +420.00000000000017 30 0.0 11 -186.0232526704264 +166.02325267042667 21 -485.0000000000001 +465.00000000000017 31 0.0 0 @@ -2451,15 +2491,15 @@ LINE 8 0 10 -210.0232526704264 +190.02325267042667 20 -485.0000000000001 +465.00000000000017 30 0.0 11 -210.02325267042636 +190.02325267042664 21 -435.0000000000001 +420.00000000000017 31 0.0 0 @@ -2469,15 +2509,15 @@ LINE 8 0 10 -186.0232526704264 +166.02325267042667 20 -485.0000000000001 +465.00000000000017 30 0.0 11 -210.0232526704264 +190.02325267042667 21 -485.0000000000001 +465.00000000000017 31 0.0 0 @@ -2487,15 +2527,15 @@ LINE 8 0 10 -186.02325267042633 +166.02325267042656 20 -365.0000000000001 +350.0000000000001 30 0.0 11 -166.0232526704263 +146.02325267042656 21 -365.0000000000001 +350.0000000000001 31 0.0 0 @@ -2505,15 +2545,15 @@ LINE 8 0 10 -166.02325267042633 +146.0232526704266 20 -399.0000000000001 +384.00000000000017 30 0.0 11 -186.02325267042636 +166.0232526704266 21 -399.0000000000001 +384.00000000000017 31 0.0 0 @@ -2525,15 +2565,15 @@ DOTTED 8 0 10 -166.0232526704263 +146.02325267042656 20 -365.0000000000001 +350.0000000000001 30 0.0 11 -166.02325267042633 +146.0232526704266 21 -399.0000000000001 +384.00000000000017 31 0.0 0 @@ -2543,15 +2583,15 @@ LINE 8 0 10 -166.0232526704263 +146.02325267042656 20 -365.0000000000001 +350.0000000000001 30 0.0 11 -142.02325267042633 +122.02325267042653 21 -365.0000000000001 +350.0000000000001 31 0.0 0 @@ -2561,15 +2601,15 @@ LINE 8 0 10 -142.02325267042636 +122.02325267042656 20 -399.0000000000001 +384.00000000000017 30 0.0 11 -166.02325267042633 +146.0232526704266 21 -399.0000000000001 +384.00000000000017 31 0.0 0 @@ -2581,15 +2621,15 @@ DOTTED 8 0 10 -142.02325267042633 +122.02325267042653 20 -365.0000000000001 +350.0000000000001 30 0.0 11 -142.02325267042636 +122.02325267042656 21 -399.0000000000001 +384.00000000000017 31 0.0 0 @@ -2599,15 +2639,15 @@ LINE 8 0 10 -142.02325267042633 +122.02325267042653 20 -365.0000000000001 +350.0000000000001 30 0.0 11 -122.02325267042634 +102.02325267042653 21 -365.0000000000001 +350.0000000000001 31 0.0 0 @@ -2617,15 +2657,15 @@ LINE 8 0 10 -122.02325267042636 +102.02325267042656 20 -399.0000000000001 +384.00000000000017 30 0.0 11 -142.02325267042636 +122.02325267042656 21 -399.0000000000001 +384.00000000000017 31 0.0 0 @@ -2637,15 +2677,15 @@ DOTTED 8 0 10 -122.02325267042636 +102.02325267042656 20 -399.0000000000001 +384.00000000000017 30 0.0 11 -122.02325267042634 +102.02325267042653 21 -365.0000000000001 +350.0000000000001 31 0.0 0 @@ -2655,15 +2695,15 @@ LINE 8 0 10 -112.02325267042634 +92.02325267042654 20 -399.0000000000001 +384.00000000000017 30 0.0 11 -122.02325267042634 +102.02325267042654 21 -399.0000000000001 +384.00000000000017 31 0.0 0 @@ -2673,15 +2713,15 @@ LINE 8 0 10 -112.02325267042633 +92.02325267042652 20 -365.0000000000001 +350.0000000000001 30 0.0 11 -112.02325267042634 +92.02325267042654 21 -399.0000000000001 +384.00000000000017 31 0.0 0 @@ -2691,15 +2731,15 @@ LINE 8 0 10 -122.02325267042633 +102.02325267042652 20 -365.0000000000001 +350.0000000000001 30 0.0 11 -112.02325267042633 +92.02325267042652 21 -365.0000000000001 +350.0000000000001 31 0.0 0 @@ -2711,15 +2751,15 @@ DOTTED 8 0 10 -86.0232526704263 +86.02325267042642 20 -295.00000000000017 +280.0000000000003 30 0.0 11 -86.02325267042634 +86.0232526704265 21 -365.00000000000017 +350.0000000000002 31 0.0 0 @@ -2731,15 +2771,15 @@ DOTTED 8 0 10 -86.02325267042634 +86.0232526704265 20 -365.00000000000017 +350.0000000000002 30 0.0 11 -32.42924173922606 +33.5088818522649 21 -365.0000000000002 +350.00000000000034 31 0.0 0 @@ -2751,15 +2791,15 @@ DOTTED 8 0 10 -86.02325267042632 +86.02325267042642 20 -295.00000000000017 +280.0000000000003 30 0.0 11 -32.42924173922606 +33.5088818522649 21 -365.0000000000002 +350.00000000000034 31 0.0 0 @@ -2769,15 +2809,15 @@ LINE 8 0 10 -86.02325267042634 +86.02325267042652 20 -382.8646703104003 +367.50479027272075 30 0.0 11 -86.02325267042634 +86.0232526704265 21 -365.00000000000017 +350.0000000000002 31 0.0 0 @@ -2787,15 +2827,15 @@ LINE 8 0 10 -32.42924173922606 +33.50888185226492 20 -382.8646703104003 +367.5047902727208 30 0.0 11 -86.02325267042634 +86.02325267042652 21 -382.8646703104003 +367.50479027272075 31 0.0 0 @@ -2805,15 +2845,15 @@ LINE 8 0 10 -32.42924173922606 +33.5088818522649 20 -365.0000000000002 +350.00000000000034 30 0.0 11 -32.42924173922606 +33.50888185226492 21 -382.8646703104003 +367.5047902727208 31 0.0 0 @@ -2825,15 +2865,15 @@ DOTTED 8 0 10 -86.02325267042632 +86.02325267042643 20 -295.00000000000017 +280.0000000000002 30 0.0 11 -18.447362619882885 +18.81810499652727 21 -313.2619572849372 +299.5823422023367 31 0.0 0 @@ -2843,15 +2883,15 @@ LINE 8 0 10 -18.447362619882885 +18.81810499652727 20 -313.2619572849372 +299.5823422023367 30 0.0 11 -32.42924173922606 +33.5088818522649 21 -365.0000000000002 +350.0000000000002 31 0.0 0 @@ -2861,15 +2901,15 @@ LINE 8 0 10 -4.465483500539649 +4.127328140789616 20 -261.5239145698741 +249.16468440467318 30 0.0 11 -18.447362619882853 +18.81810499652724 21 -313.2619572849372 +299.5823422023367 31 0.0 0 @@ -2879,15 +2919,15 @@ LINE 8 0 10 -0.0 +2.8421709430404014e-14 20 -245.00000000000028 +235.0000000000003 30 0.0 11 -4.465483500539649 +4.127328140789616 21 -261.5239145698741 +249.16468440467318 31 0.0 0 @@ -2899,15 +2939,15 @@ DOTTED 8 0 10 -0.0 +2.8421709430404014e-14 20 -245.00000000000028 +235.0000000000003 30 0.0 11 -86.0232526704263 +86.02325267042642 21 -295.0000000000001 +280.0000000000003 31 0.0 0 @@ -2919,15 +2959,15 @@ DOTTED 8 0 10 -86.02325267042627 +86.02325267042637 20 -245.0000000000002 +235.0000000000002 30 0.0 11 -86.02325267042632 +86.02325267042642 21 -295.0000000000001 +280.0000000000003 31 0.0 0 @@ -2939,15 +2979,15 @@ DOTTED 8 0 10 -86.02325267042623 +86.0232526704263 20 -195.00000000000017 +190.0000000000002 30 0.0 11 -86.02325267042627 +86.02325267042636 21 -245.0000000000002 +235.0000000000002 31 0.0 0 @@ -2959,15 +2999,15 @@ DOTTED 8 0 10 -0.0 +2.8421709430404014e-14 20 -245.00000000000026 +235.0000000000003 30 0.0 11 -86.02325267042623 +86.0232526704263 21 -195.00000000000017 +190.0000000000002 31 0.0 0 @@ -2979,15 +3019,15 @@ DOTTED 8 0 10 -18.447362619882743 +18.818104996527016 20 -176.73804271506336 +170.41765779766385 30 0.0 11 -86.02325267042623 +86.02325267042627 21 -195.00000000000017 +190.0000000000002 31 0.0 0 @@ -2997,15 +3037,15 @@ LINE 8 0 10 -4.465483500539619 +4.127328140789531 20 -228.47608543012643 +220.83531559532747 30 0.0 11 0.0 21 -245.00000000000026 +235.0000000000003 31 0.0 0 @@ -3015,15 +3055,15 @@ LINE 8 0 10 -18.447362619882743 +18.818104996527016 20 -176.73804271506336 +170.41765779766385 30 0.0 11 -4.465483500539619 +4.127328140789531 21 -228.47608543012643 +220.83531559532747 31 0.0 0 @@ -3033,15 +3073,15 @@ LINE 8 0 10 -32.42924173922586 +33.50888185226453 20 -125.00000000000027 +120.00000000000027 30 0.0 11 -18.447362619882743 +18.818104996527044 21 -176.73804271506336 +170.41765779766388 31 0.0 0 @@ -3053,15 +3093,15 @@ DOTTED 8 0 10 -32.42924173922586 +33.50888185226453 20 -125.00000000000027 +120.00000000000027 30 0.0 11 -86.02325267042623 +86.02325267042629 21 -195.00000000000017 +190.0000000000002 31 0.0 0 @@ -3075,13 +3115,13 @@ DOTTED 10 86.02325267042613 20 -125.00000000000021 +120.00000000000016 30 0.0 11 -86.0232526704262 +86.0232526704263 21 -195.00000000000017 +190.0000000000002 31 0.0 0 @@ -3093,15 +3133,15 @@ DOTTED 8 0 10 -32.42924173922586 +33.50888185226453 20 -125.00000000000027 +120.00000000000027 30 0.0 11 86.02325267042613 21 -125.00000000000021 +120.00000000000016 31 0.0 0 @@ -3111,15 +3151,15 @@ LINE 8 0 10 -32.42924173922584 +33.5088818522645 20 -107.13532968960016 +102.49520972727973 30 0.0 11 -32.42924173922586 +33.50888185226453 21 -125.00000000000027 +120.00000000000027 31 0.0 0 @@ -3131,13 +3171,13 @@ LINE 10 86.02325267042612 20 -107.13532968960011 +102.49520972727963 30 0.0 11 -32.42924173922584 +33.5088818522645 21 -107.13532968960016 +102.49520972727973 31 0.0 0 @@ -3149,13 +3189,13 @@ LINE 10 86.02325267042613 20 -125.00000000000021 +120.00000000000016 30 0.0 11 86.02325267042612 21 -107.13532968960011 +102.49520972727963 31 0.0 0 @@ -3165,15 +3205,15 @@ LINE 8 0 10 -460.02325267042625 +322.5376234885882 20 -388.3333333333333 +367.5047902727206 30 0.0 11 -460.02325267042625 +322.53762348858817 21 -365.0 +350.0 31 0.0 0 @@ -3183,15 +3223,15 @@ LINE 8 0 10 -390.0232526704263 +270.0232526704266 20 -388.33333333333337 +367.50479027272064 30 0.0 11 -460.02325267042625 +322.5376234885882 21 -388.3333333333333 +367.5047902727206 31 0.0 0 @@ -3201,15 +3241,15 @@ LINE 8 0 10 -390.0232526704263 +270.0232526704266 20 -365.00000000000006 +350.00000000000006 30 0.0 11 -390.0232526704263 +270.0232526704266 21 -388.33333333333337 +367.50479027272064 31 0.0 0 @@ -3219,15 +3259,15 @@ LINE 8 0 10 -347.02325267042613 +227.0232526704265 20 -70.3613780008147 +65.3613780008147 30 0.0 11 -358.0232526704262 +238.0232526704265 21 -70.3613780008147 +65.3613780008147 31 0.0 0 @@ -3237,15 +3277,15 @@ LINE 8 0 10 -358.0232526704262 +238.0232526704265 20 -70.3613780008147 +65.3613780008147 30 0.0 11 -358.0232526704262 +238.0232526704265 21 -83.36137800081471 +78.3613780008147 31 0.0 0 @@ -3255,15 +3295,15 @@ LINE 8 0 10 -358.0232526704262 +238.0232526704265 20 -83.36137800081471 +78.3613780008147 30 0.0 11 -347.02325267042613 +227.0232526704265 21 -83.36137800081471 +78.3613780008147 31 0.0 0 @@ -3273,15 +3313,15 @@ LINE 8 0 10 -347.02325267042613 +227.0232526704265 20 -83.36137800081471 +78.3613780008147 30 0.0 11 -347.02325267042613 +227.0232526704265 21 -70.3613780008147 +65.3613780008147 31 0.0 0 @@ -3291,15 +3331,15 @@ LINE 8 0 10 -378.52325267042613 +258.52325267042653 20 -71.86137800081471 +66.8613780008147 30 0.0 11 -384.5232526704262 +264.52325267042653 21 -71.86137800081471 +66.8613780008147 31 0.0 0 @@ -3309,15 +3349,15 @@ LINE 8 0 10 -384.5232526704262 +264.52325267042653 20 -71.86137800081471 +66.8613780008147 30 0.0 11 -384.5232526704262 +264.52325267042653 21 -81.86137800081471 +76.8613780008147 31 0.0 0 @@ -3327,15 +3367,15 @@ LINE 8 0 10 -384.5232526704262 +264.52325267042653 20 -81.86137800081471 +76.8613780008147 30 0.0 11 -378.52325267042613 +258.52325267042653 21 -81.86137800081471 +76.8613780008147 31 0.0 0 @@ -3345,15 +3385,15 @@ LINE 8 0 10 -378.52325267042613 +258.52325267042653 20 -81.86137800081471 +76.8613780008147 30 0.0 11 -378.52325267042613 +258.52325267042653 21 -71.86137800081471 +66.8613780008147 31 0.0 0 @@ -3363,15 +3403,15 @@ LINE 8 0 10 -351.45507085224443 +231.4550708522447 20 -36.47275600162939 +31.472756001629396 30 0.0 11 -339.8641617613353 +219.8641617613356 21 -36.47275600162939 +31.472756001629396 31 0.0 0 @@ -3381,15 +3421,15 @@ LINE 8 0 10 -339.8641617613353 +219.8641617613356 20 -36.47275600162939 +31.472756001629396 30 0.0 11 -339.8641617613353 +219.8641617613356 21 -35.9727560016294 +30.9727560016294 31 0.0 0 @@ -3399,15 +3439,15 @@ LINE 8 0 10 -339.8641617613353 +219.8641617613356 20 -35.9727560016294 +30.9727560016294 30 0.0 11 -351.45507085224443 +231.4550708522447 21 -35.9727560016294 +30.9727560016294 31 0.0 0 @@ -3417,15 +3457,15 @@ LINE 8 0 10 -351.45507085224443 +231.4550708522447 20 -35.9727560016294 +30.9727560016294 30 0.0 11 -351.45507085224443 +231.4550708522447 21 -36.47275600162939 +31.472756001629396 31 0.0 0 @@ -3435,15 +3475,15 @@ LINE 8 0 10 -379.18234357951707 +259.1823435795174 20 -36.47275600162939 +31.472756001629396 30 0.0 11 -367.591434488608 +247.59143448860831 21 -36.47275600162939 +31.472756001629396 31 0.0 0 @@ -3453,15 +3493,15 @@ LINE 8 0 10 -367.591434488608 +247.59143448860831 20 -36.47275600162939 +31.472756001629396 30 0.0 11 -367.591434488608 +247.59143448860831 21 -35.9727560016294 +30.9727560016294 31 0.0 0 @@ -3471,15 +3511,15 @@ LINE 8 0 10 -367.591434488608 +247.59143448860831 20 -35.9727560016294 +30.9727560016294 30 0.0 11 -379.18234357951707 +259.1823435795174 21 -35.9727560016294 +30.9727560016294 31 0.0 0 @@ -3489,15 +3529,15 @@ LINE 8 0 10 -379.18234357951707 +259.1823435795174 20 -35.9727560016294 +30.9727560016294 30 0.0 11 -379.18234357951707 +259.1823435795174 21 -36.47275600162939 +31.472756001629396 31 0.0 0 @@ -3507,15 +3547,15 @@ LINE 8 0 10 -397.5232526704262 +277.5232526704265 20 -80.86137800081471 +75.8613780008147 30 0.0 11 -392.52325267042613 +272.5232526704265 21 -80.86137800081471 +75.8613780008147 31 0.0 0 @@ -3525,15 +3565,15 @@ LINE 8 0 10 -392.52325267042613 +272.5232526704265 20 -80.86137800081471 +75.8613780008147 30 0.0 11 -392.52325267042613 +272.5232526704265 21 -72.86137800081471 +67.8613780008147 31 0.0 0 @@ -3543,15 +3583,15 @@ LINE 8 0 10 -392.52325267042613 +272.5232526704265 20 -72.86137800081471 +67.8613780008147 30 0.0 11 -397.5232526704262 +277.5232526704265 21 -72.86137800081471 +67.8613780008147 31 0.0 0 @@ -3561,15 +3601,15 @@ LINE 8 0 10 -321.5232526704262 +201.5232526704265 20 -72.86137800081471 +67.8613780008147 30 0.0 11 -326.5232526704262 +206.5232526704265 21 -72.86137800081471 +67.8613780008147 31 0.0 0 @@ -3579,15 +3619,15 @@ LINE 8 0 10 -326.5232526704262 +206.5232526704265 20 -72.86137800081471 +67.8613780008147 30 0.0 11 -326.5232526704262 +206.5232526704265 21 -80.86137800081471 +75.8613780008147 31 0.0 0 @@ -3597,15 +3637,15 @@ LINE 8 0 10 -326.5232526704262 +206.5232526704265 20 -80.86137800081471 +75.8613780008147 30 0.0 11 -321.5232526704262 +201.5232526704265 21 -80.86137800081471 +75.8613780008147 31 0.0 0 @@ -3615,15 +3655,15 @@ LINE 8 0 10 -202.2732526704262 +182.2732526704265 20 -113.91666666666669 +108.91666666666669 30 0.0 11 -202.2732526704262 +182.2732526704265 21 -102.08333333333336 +97.08333333333336 31 0.0 0 @@ -3633,15 +3673,15 @@ LINE 8 0 10 -202.2732526704262 +182.2732526704265 20 -102.08333333333336 +97.08333333333336 30 0.0 11 -202.7732526704262 +182.7732526704265 21 -102.08333333333336 +97.08333333333336 31 0.0 0 @@ -3651,15 +3691,15 @@ LINE 8 0 10 -202.7732526704262 +182.7732526704265 20 -102.08333333333336 +97.08333333333336 30 0.0 11 -202.7732526704262 +182.7732526704265 21 -113.91666666666669 +108.91666666666669 31 0.0 0 @@ -3669,15 +3709,15 @@ LINE 8 0 10 -202.7732526704262 +182.7732526704265 20 -113.91666666666669 +108.91666666666669 30 0.0 11 -202.2732526704262 +182.2732526704265 21 -113.91666666666669 +108.91666666666669 31 0.0 0 @@ -3687,13 +3727,13 @@ LINE 8 0 10 -202.0232526704262 +182.0232526704265 20 1.2500000000000002 30 0.0 11 -204.5232526704262 +184.5232526704265 21 1.2500000000000002 31 @@ -3705,13 +3745,13 @@ LINE 8 0 10 -204.5232526704262 +184.5232526704265 20 1.2500000000000002 30 0.0 11 -202.0232526704262 +182.0232526704265 21 3.7500000000000004 31 @@ -3723,13 +3763,13 @@ LINE 8 0 10 -202.0232526704262 +182.0232526704265 20 3.7500000000000004 30 0.0 11 -194.02325267042616 +174.0232526704265 21 3.7500000000000004 31 @@ -3741,13 +3781,13 @@ LINE 8 0 10 -194.02325267042616 +174.0232526704265 20 3.7500000000000004 30 0.0 11 -191.52325267042616 +171.5232526704265 21 1.2500000000000002 31 @@ -3759,13 +3799,13 @@ LINE 8 0 10 -191.52325267042616 +171.5232526704265 20 1.2500000000000002 30 0.0 11 -194.02325267042616 +174.0232526704265 21 1.2500000000000002 31 @@ -3777,15 +3817,15 @@ LINE 8 0 10 -167.02325267042616 +147.02325267042647 20 -102.00000000000001 +97.00000000000001 30 0.0 11 -171.02325267042616 +151.0232526704265 21 -102.00000000000001 +97.00000000000001 31 0.0 0 @@ -3795,15 +3835,15 @@ LINE 8 0 10 -171.02325267042616 +151.0232526704265 20 -102.00000000000001 +97.00000000000001 30 0.0 11 -171.02325267042616 +151.0232526704265 21 -114.00000000000001 +109.00000000000001 31 0.0 0 @@ -3813,15 +3853,15 @@ LINE 8 0 10 -171.02325267042616 +151.0232526704265 20 -114.00000000000001 +109.00000000000001 30 0.0 11 -167.02325267042616 +147.02325267042647 21 -114.00000000000001 +109.00000000000001 31 0.0 0 @@ -3831,15 +3871,15 @@ LINE 8 0 10 -167.02325267042616 +147.02325267042647 20 -114.00000000000001 +109.00000000000001 30 0.0 11 -167.02325267042616 +147.02325267042647 21 -102.00000000000001 +97.00000000000001 31 0.0 0 @@ -3849,15 +3889,15 @@ LINE 8 0 10 -179.0232526704262 +159.0232526704265 20 -103.5 +98.50000000000001 30 0.0 11 -183.0232526704262 +163.02325267042647 21 -103.5 +98.50000000000001 31 0.0 0 @@ -3867,15 +3907,15 @@ LINE 8 0 10 -183.0232526704262 +163.02325267042647 20 -103.5 +98.50000000000001 30 0.0 11 -183.0232526704262 +163.02325267042647 21 -112.50000000000001 +107.50000000000001 31 0.0 0 @@ -3885,15 +3925,15 @@ LINE 8 0 10 -183.0232526704262 +163.02325267042647 20 -112.50000000000001 +107.50000000000001 30 0.0 11 -179.0232526704262 +159.0232526704265 21 -112.50000000000001 +107.50000000000001 31 0.0 0 @@ -3903,15 +3943,15 @@ LINE 8 0 10 -179.0232526704262 +159.0232526704265 20 -112.50000000000001 +107.50000000000001 30 0.0 11 -179.0232526704262 +159.0232526704265 21 -103.5 +98.50000000000001 31 0.0 0 @@ -3921,15 +3961,15 @@ LINE 8 0 10 -142.5232526704262 +122.52325267042649 20 -102.00000000000001 +97.00000000000001 30 0.0 11 -165.5232526704262 +145.5232526704265 21 -102.00000000000001 +97.00000000000001 31 0.0 0 @@ -3939,15 +3979,15 @@ LINE 8 0 10 -165.5232526704262 +145.5232526704265 20 -102.00000000000001 +97.00000000000001 30 0.0 11 -165.5232526704262 +145.5232526704265 21 -114.00000000000001 +109.00000000000001 31 0.0 0 @@ -3957,15 +3997,15 @@ LINE 8 0 10 -165.5232526704262 +145.5232526704265 20 -114.00000000000001 +109.00000000000001 30 0.0 11 -142.5232526704262 +122.52325267042649 21 -114.00000000000001 +109.00000000000001 31 0.0 0 @@ -3975,15 +4015,15 @@ LINE 8 0 10 -142.5232526704262 +122.52325267042649 20 -114.00000000000001 +109.00000000000001 30 0.0 11 -142.5232526704262 +122.52325267042649 21 -102.00000000000001 +97.00000000000001 31 0.0 0 @@ -3993,15 +4033,15 @@ LINE 8 0 10 -137.02325267042616 +117.02325267042649 20 -102.00000000000001 +97.00000000000001 30 0.0 11 -141.0232526704262 +121.02325267042649 21 -102.00000000000001 +97.00000000000001 31 0.0 0 @@ -4011,15 +4051,15 @@ LINE 8 0 10 -141.0232526704262 +121.02325267042649 20 -102.00000000000001 +97.00000000000001 30 0.0 11 -141.0232526704262 +121.02325267042649 21 -114.00000000000001 +109.00000000000001 31 0.0 0 @@ -4029,15 +4069,15 @@ LINE 8 0 10 -141.0232526704262 +121.02325267042649 20 -114.00000000000001 +109.00000000000001 30 0.0 11 -137.02325267042616 +117.02325267042649 21 -114.00000000000001 +109.00000000000001 31 0.0 0 @@ -4047,15 +4087,15 @@ LINE 8 0 10 -137.02325267042616 +117.02325267042649 20 -114.00000000000001 +109.00000000000001 30 0.0 11 -137.02325267042616 +117.02325267042649 21 -102.00000000000001 +97.00000000000001 31 0.0 0 @@ -4065,15 +4105,15 @@ LINE 8 0 10 -114.52325267042617 +94.52325267042649 20 -102.33333333333334 +97.33333333333336 30 0.0 11 -119.52325267042617 +99.52325267042649 21 -102.33333333333334 +97.33333333333336 31 0.0 0 @@ -4083,15 +4123,15 @@ LINE 8 0 10 -119.52325267042617 +99.52325267042649 20 -102.33333333333334 +97.33333333333336 30 0.0 11 -119.52325267042617 +99.52325267042649 21 -113.66666666666669 +108.66666666666669 31 0.0 0 @@ -4101,15 +4141,15 @@ LINE 8 0 10 -119.52325267042617 +99.52325267042649 20 -113.66666666666669 +108.66666666666669 30 0.0 11 -114.52325267042617 +94.52325267042649 21 -113.66666666666669 +108.66666666666669 31 0.0 0 @@ -4119,15 +4159,15 @@ LINE 8 0 10 -436.68991933709293 +305.0328332158675 20 -107.50000000000001 +106.87140729545962 30 0.0 11 -436.68991933709293 +305.0328332158675 21 -119.16666666666669 +115.62380243181988 31 0.0 0 @@ -4137,15 +4177,15 @@ LINE 8 0 10 -436.68991933709293 +305.0328332158675 20 -119.16666666666669 +115.62380243181988 30 0.0 11 -413.35658600375956 +287.52804294314706 21 -119.16666666666669 +115.62380243181988 31 0.0 0 @@ -4155,15 +4195,15 @@ LINE 8 0 10 -413.35658600375956 +287.52804294314706 20 -119.16666666666669 +115.62380243181988 30 0.0 11 -413.35658600375956 +287.52804294314706 21 -107.50000000000001 +106.87140729545962 31 0.0 0 @@ -4173,15 +4213,15 @@ LINE 8 0 10 -442.27325267042625 +334.2477556839554 20 -241.91666666666666 +208.0120791976936 30 0.0 11 -442.27325267042625 +329.21095619250247 21 -218.08333333333334 +190.7261564960398 31 0.0 0 @@ -4191,15 +4231,15 @@ LINE 8 0 10 -442.27325267042625 +329.21095619250247 20 -218.08333333333334 +190.7261564960398 30 0.0 11 -442.77325267042625 +329.6909929616017 21 -218.08333333333334 +190.5862826231659 31 0.0 0 @@ -4209,15 +4249,15 @@ LINE 8 0 10 -442.77325267042625 +329.6909929616017 20 -218.08333333333334 +190.5862826231659 30 0.0 11 -442.77325267042625 +334.72779245305475 21 -241.91666666666666 +207.87220532481976 31 0.0 0 @@ -4227,15 +4267,15 @@ LINE 8 0 10 -442.77325267042625 +334.72779245305475 20 -241.91666666666666 +207.87220532481976 30 0.0 11 -442.27325267042625 +334.2477556839554 21 -241.91666666666666 +208.0120791976936 31 0.0 0 @@ -4245,15 +4285,15 @@ LINE 8 0 10 -442.2732526704263 +329.21095619250247 20 -271.9166666666667 +279.27384350396034 30 0.0 11 -442.2732526704263 +334.24775568395546 21 -248.08333333333337 +261.98792080230646 31 0.0 0 @@ -4263,15 +4303,15 @@ LINE 8 0 10 -442.2732526704263 +334.24775568395546 20 -248.08333333333337 +261.98792080230646 30 0.0 11 -442.7732526704263 +334.72779245305475 21 -248.08333333333337 +262.12779467518027 31 0.0 0 @@ -4281,15 +4321,15 @@ LINE 8 0 10 -442.7732526704263 +334.72779245305475 20 -248.08333333333337 +262.12779467518027 30 0.0 11 -442.7732526704263 +329.69099296160175 21 -271.9166666666667 +279.41371737683414 31 0.0 0 @@ -4299,15 +4339,15 @@ LINE 8 0 10 -442.7732526704263 +329.69099296160175 20 -271.9166666666667 +279.41371737683414 30 0.0 11 -442.2732526704263 +329.21095619250247 21 -271.9166666666667 +279.27384350396034 31 0.0 0 @@ -4317,15 +4357,15 @@ LINE 8 0 10 -340.11416176133537 +220.11416176133568 20 -372.50000000000006 +357.50000000000017 30 0.0 11 -340.11416176133537 +220.11416176133568 21 -367.50000000000006 +352.50000000000017 31 0.0 0 @@ -4335,15 +4375,15 @@ LINE 8 0 10 -340.11416176133537 +220.11416176133568 20 -367.50000000000006 +352.50000000000017 30 0.0 11 -351.20507085224455 +231.20507085224477 21 -367.50000000000006 +352.50000000000017 31 0.0 0 @@ -4353,15 +4393,15 @@ LINE 8 0 10 -351.20507085224455 +231.20507085224477 20 -367.50000000000006 +352.50000000000017 30 0.0 11 -351.20507085224455 +231.20507085224477 21 -372.50000000000006 +357.50000000000017 31 0.0 0 @@ -4371,15 +4411,15 @@ LINE 8 0 10 -367.8414344886082 +247.84143448860843 20 -372.50000000000006 +357.50000000000017 30 0.0 11 -367.8414344886082 +247.84143448860843 21 -367.50000000000006 +352.50000000000017 31 0.0 0 @@ -4389,15 +4429,15 @@ LINE 8 0 10 -367.8414344886082 +247.84143448860843 20 -367.50000000000006 +352.50000000000017 30 0.0 11 -378.9323435795172 +258.9323435795175 21 -367.50000000000006 +352.5000000000001 31 0.0 0 @@ -4407,15 +4447,15 @@ LINE 8 0 10 -378.9323435795172 +258.9323435795175 20 -367.50000000000006 +352.5000000000001 30 0.0 11 -378.9323435795172 +258.9323435795175 21 -372.50000000000006 +357.5000000000001 31 0.0 0 @@ -4425,15 +4465,15 @@ LINE 8 0 10 -202.27325267042633 +182.2732526704266 20 -387.9166666666668 +372.91666666666674 30 0.0 11 -202.27325267042633 +182.2732526704266 21 -376.0833333333334 +361.08333333333354 31 0.0 0 @@ -4443,15 +4483,15 @@ LINE 8 0 10 -202.27325267042633 +182.2732526704266 20 -376.0833333333334 +361.08333333333354 30 0.0 11 -202.77325267042633 +182.7732526704266 21 -376.0833333333334 +361.08333333333354 31 0.0 0 @@ -4461,15 +4501,15 @@ LINE 8 0 10 -202.77325267042633 +182.7732526704266 20 -376.0833333333334 +361.08333333333354 30 0.0 11 -202.77325267042636 +182.7732526704266 21 -387.9166666666668 +372.91666666666674 31 0.0 0 @@ -4479,15 +4519,15 @@ LINE 8 0 10 -202.77325267042636 +182.7732526704266 20 -387.9166666666668 +372.91666666666674 30 0.0 11 -202.27325267042633 +182.2732526704266 21 -387.9166666666668 +372.91666666666674 31 0.0 0 @@ -4497,15 +4537,15 @@ LINE 8 0 10 -193.7732526704264 +173.77325267042664 20 -481.0000000000001 +461.00000000000017 30 0.0 11 -202.27325267042636 +182.27325267042667 21 -481.0000000000001 +461.00000000000017 31 0.0 0 @@ -4515,15 +4555,15 @@ LINE 8 0 10 -202.27325267042636 +182.27325267042667 20 -481.0000000000001 +461.00000000000017 30 0.0 11 -202.27325267042636 +182.27325267042667 21 -481.5000000000001 +461.50000000000017 31 0.0 0 @@ -4533,15 +4573,15 @@ LINE 8 0 10 -202.27325267042636 +182.27325267042667 20 -481.5000000000001 +461.50000000000017 30 0.0 11 -193.7732526704264 +173.77325267042664 21 -481.5000000000001 +461.50000000000017 31 0.0 0 @@ -4551,15 +4591,15 @@ LINE 8 0 10 -193.7732526704264 +173.77325267042664 20 -481.5000000000001 +461.50000000000017 30 0.0 11 -193.7732526704264 +173.77325267042664 21 -481.0000000000001 +461.00000000000017 31 0.0 0 @@ -4569,15 +4609,15 @@ LINE 8 0 10 -167.02325267042633 +147.02325267042653 20 -376.0000000000001 +361.00000000000017 30 0.0 11 -171.02325267042633 +151.02325267042653 21 -376.0000000000001 +361.00000000000017 31 0.0 0 @@ -4587,15 +4627,15 @@ LINE 8 0 10 -171.02325267042633 +151.02325267042653 20 -376.0000000000001 +361.00000000000017 30 0.0 11 -171.02325267042633 +151.02325267042656 21 -388.0000000000001 +373.0000000000001 31 0.0 0 @@ -4605,15 +4645,15 @@ LINE 8 0 10 -171.02325267042633 +151.02325267042656 20 -388.0000000000001 +373.0000000000001 30 0.0 11 -167.02325267042633 +147.02325267042653 21 -388.0000000000001 +373.0000000000001 31 0.0 0 @@ -4623,15 +4663,15 @@ LINE 8 0 10 -167.02325267042633 +147.02325267042653 20 -388.0000000000001 +373.0000000000001 30 0.0 11 -167.02325267042633 +147.02325267042653 21 -376.0000000000001 +361.00000000000017 31 0.0 0 @@ -4641,15 +4681,15 @@ LINE 8 0 10 -179.02325267042633 +159.02325267042656 20 -377.50000000000006 +362.50000000000017 30 0.0 11 -183.02325267042633 +163.02325267042653 21 -377.50000000000006 +362.50000000000017 31 0.0 0 @@ -4659,15 +4699,15 @@ LINE 8 0 10 -183.02325267042633 +163.02325267042653 20 -377.50000000000006 +362.50000000000017 30 0.0 11 -183.02325267042633 +163.02325267042656 21 -386.50000000000006 +371.50000000000017 31 0.0 0 @@ -4677,15 +4717,15 @@ LINE 8 0 10 -183.02325267042633 +163.02325267042656 20 -386.50000000000006 +371.50000000000017 30 0.0 11 -179.02325267042633 +159.0232526704266 21 -386.50000000000006 +371.50000000000017 31 0.0 0 @@ -4695,15 +4735,15 @@ LINE 8 0 10 -179.02325267042633 +159.0232526704266 20 -386.50000000000006 +371.50000000000017 30 0.0 11 -179.02325267042633 +159.02325267042656 21 -377.50000000000006 +362.50000000000017 31 0.0 0 @@ -4713,15 +4753,15 @@ LINE 8 0 10 -142.52325267042636 +122.52325267042654 20 -376.0000000000001 +361.00000000000017 30 0.0 11 -165.52325267042636 +145.52325267042656 21 -376.0000000000001 +361.00000000000017 31 0.0 0 @@ -4731,15 +4771,15 @@ LINE 8 0 10 -165.52325267042636 +145.52325267042656 20 -376.0000000000001 +361.00000000000017 30 0.0 11 -165.52325267042636 +145.5232526704266 21 -388.0000000000001 +373.0000000000001 31 0.0 0 @@ -4749,15 +4789,15 @@ LINE 8 0 10 -165.52325267042636 +145.5232526704266 20 -388.0000000000001 +373.0000000000001 30 0.0 11 -142.52325267042636 +122.52325267042656 21 -388.0000000000001 +373.0000000000001 31 0.0 0 @@ -4767,15 +4807,15 @@ LINE 8 0 10 -142.52325267042636 +122.52325267042656 20 -388.0000000000001 +373.0000000000001 30 0.0 11 -142.52325267042636 +122.52325267042654 21 -376.0000000000001 +361.00000000000017 31 0.0 0 @@ -4785,15 +4825,15 @@ LINE 8 0 10 -137.02325267042636 +117.02325267042654 20 -376.0000000000001 +361.00000000000017 30 0.0 11 -141.02325267042633 +121.02325267042654 21 -376.0000000000001 +361.00000000000017 31 0.0 0 @@ -4803,15 +4843,15 @@ LINE 8 0 10 -141.02325267042633 +121.02325267042654 20 -376.0000000000001 +361.00000000000017 30 0.0 11 -141.02325267042633 +121.02325267042654 21 -388.0000000000001 +373.0000000000001 31 0.0 0 @@ -4821,15 +4861,15 @@ LINE 8 0 10 -141.02325267042633 +121.02325267042654 20 -388.0000000000001 +373.0000000000001 30 0.0 11 -137.02325267042636 +117.02325267042654 21 -388.0000000000001 +373.0000000000001 31 0.0 0 @@ -4839,15 +4879,15 @@ LINE 8 0 10 -137.02325267042636 +117.02325267042654 20 -388.0000000000001 +373.0000000000001 30 0.0 11 -137.02325267042636 +117.02325267042654 21 -376.0000000000001 +361.00000000000017 31 0.0 0 @@ -4857,15 +4897,15 @@ LINE 8 0 10 -114.52325267042633 +94.52325267042652 20 -376.3333333333334 +361.33333333333354 30 0.0 11 -119.52325267042633 +99.52325267042653 21 -376.3333333333334 +361.33333333333354 31 0.0 0 @@ -4875,15 +4915,15 @@ LINE 8 0 10 -119.52325267042633 +99.52325267042653 20 -376.3333333333334 +361.33333333333354 30 0.0 11 -119.52325267042634 +99.52325267042654 21 -387.6666666666668 +372.6666666666668 31 0.0 0 @@ -4893,15 +4933,15 @@ LINE 8 0 10 -119.52325267042634 +99.52325267042654 20 -387.6666666666668 +372.6666666666668 30 0.0 11 -114.52325267042634 +94.52325267042653 21 -387.6666666666668 +372.6666666666668 31 0.0 0 @@ -4911,15 +4951,15 @@ LINE 8 0 10 -50.293912049626165 +51.013672124985426 20 -378.3985027328003 +363.1285927045407 30 0.0 11 -50.293912049626165 +51.013672124985426 21 -369.46616757760023 +354.37619756818043 31 0.0 0 @@ -4929,15 +4969,15 @@ LINE 8 0 10 -50.293912049626165 +51.013672124985426 20 -369.46616757760023 +354.37619756818043 30 0.0 11 -68.15858236002626 +68.51846239770595 21 -369.46616757760023 +354.37619756818043 31 0.0 0 @@ -4947,15 +4987,15 @@ LINE 8 0 10 -68.15858236002626 +68.51846239770595 20 -369.46616757760023 +354.37619756818043 30 0.0 11 -68.15858236002626 +68.51846239770595 21 -378.3985027328003 +363.1285927045407 31 0.0 0 @@ -4965,15 +5005,15 @@ LINE 8 0 10 -22.23674174086841 +21.79874965689743 20 -274.96789528790873 +261.98792080230675 30 0.0 11 -27.02781066601807 +26.83554914835048 21 -292.6965944551955 +279.27384350396056 31 0.0 0 @@ -4983,15 +5023,15 @@ LINE 8 0 10 -27.02781066601807 +26.83554914835048 20 -292.6965944551955 +279.27384350396056 30 0.0 11 -26.545125737085613 +26.3555123792512 21 -292.82703700723084 +279.4137173768344 31 0.0 0 @@ -5001,15 +5041,15 @@ LINE 8 0 10 -26.545125737085613 +26.3555123792512 20 -292.82703700723084 +279.4137173768344 30 0.0 11 -21.754056811935953 +21.318712887798146 21 -275.098337839944 +262.1277946751806 31 0.0 0 @@ -5019,15 +5059,15 @@ LINE 8 0 10 -21.754056811935953 +21.318712887798146 20 -275.098337839944 +262.1277946751806 30 0.0 11 -22.23674174086841 +21.79874965689743 21 -274.96789528790873 +261.98792080230675 31 0.0 0 @@ -5037,15 +5077,15 @@ LINE 8 0 10 -27.027810666018013 +26.835549148350314 20 -197.30340554480492 +190.72615649604003 30 0.0 11 -22.236741740868357 +21.798749656897318 21 -215.0321047120917 +208.01207919769385 31 0.0 0 @@ -5055,15 +5095,15 @@ LINE 8 0 10 -22.236741740868357 +21.798749656897318 20 -215.0321047120917 +208.01207919769385 30 0.0 11 -21.7540568119359 +21.31871288779803 21 -214.90166216005642 +207.87220532482004 31 0.0 0 @@ -5073,15 +5113,15 @@ LINE 8 0 10 -21.7540568119359 +21.31871288779803 20 -214.90166216005642 +207.87220532482004 30 0.0 11 -26.54512573708556 +26.355512379251028 21 -197.17296299276964 +190.58628262316623 31 0.0 0 @@ -5091,15 +5131,15 @@ LINE 8 0 10 -26.54512573708556 +26.355512379251028 20 -197.17296299276964 +190.58628262316623 30 0.0 11 -27.027810666018013 +26.835549148350314 21 -197.30340554480492 +190.72615649604003 31 0.0 0 @@ -5109,15 +5149,15 @@ LINE 8 0 10 -68.15858236002603 +68.51846239770558 20 -111.60149726720016 +106.87140729545979 30 0.0 11 -68.15858236002603 +68.51846239770559 21 -120.5338324224002 +115.62380243182007 31 0.0 0 @@ -5127,15 +5167,15 @@ LINE 8 0 10 -68.15858236002603 +68.51846239770559 20 -120.5338324224002 +115.62380243182007 30 0.0 11 -50.293912049625966 +51.01367212498506 21 -120.53383242240022 +115.6238024318201 31 0.0 0 @@ -5145,15 +5185,15 @@ LINE 8 0 10 -50.293912049625966 +51.01367212498506 20 -120.53383242240022 +115.6238024318201 30 0.0 11 -50.29391204962594 +51.01367212498503 21 -111.60149726720017 +106.87140729545983 31 0.0 0 @@ -5163,15 +5203,15 @@ LINE 8 0 10 -413.3565860037597 +287.52804294314717 20 -382.49999999999994 +363.12859270454044 30 0.0 11 -413.3565860037597 +287.52804294314717 21 -370.83333333333337 +354.3761975681802 31 0.0 0 @@ -5181,15 +5221,15 @@ LINE 8 0 10 -413.3565860037597 +287.52804294314717 20 -370.83333333333337 +354.3761975681802 30 0.0 11 -436.68991933709293 +305.0328332158677 21 -370.8333333333333 +354.3761975681802 31 0.0 0 @@ -5199,15 +5239,15 @@ LINE 8 0 10 -436.68991933709293 +305.0328332158677 20 -370.8333333333333 +354.3761975681802 30 0.0 11 -436.68991933709293 +305.0328332158677 21 -382.49999999999994 +363.12859270454044 31 0.0 0 @@ -5219,15 +5259,15 @@ DOTTED 8 0 10 -503.0232526704263 +399.04650534085283 20 -113.00000000000001 +108.00000000000001 30 0.0 11 -564.0232526704264 +460.04650534085283 21 -113.00000000000001 +108.00000000000001 31 0.0 0 @@ -5239,15 +5279,15 @@ DOTTED 8 0 10 -564.0232526704264 +460.04650534085283 20 -113.00000000000001 +108.00000000000001 30 0.0 11 -564.0232526704264 +460.04650534085283 21 -137.00000000000003 +132.0 31 0.0 0 @@ -5259,15 +5299,15 @@ DOTTED 8 0 10 -564.0232526704264 +460.04650534085283 20 -137.00000000000003 +132.0 30 0.0 11 -503.0232526704263 +399.04650534085283 21 -137.00000000000003 +132.0 31 0.0 0 @@ -5279,15 +5319,15 @@ DOTTED 8 0 10 -503.0232526704263 +399.04650534085283 20 -137.00000000000003 +132.0 30 0.0 11 -503.0232526704263 +399.04650534085283 21 -113.00000000000001 +108.00000000000001 31 0.0 0 @@ -5297,15 +5337,15 @@ LINE 8 0 10 -503.0232526704263 +399.04650534085283 20 -106.00000000000001 +101.00000000000001 30 0.0 11 -503.0232526704263 +399.04650534085283 21 -113.00000000000001 +108.00000000000001 31 0.0 0 @@ -5315,15 +5355,15 @@ LINE 8 0 10 -563.0232526704264 +459.0465053408528 20 -106.00000000000001 +101.00000000000001 30 0.0 11 -503.0232526704263 +399.04650534085283 21 -106.00000000000001 +101.00000000000001 31 0.0 0 @@ -5333,15 +5373,15 @@ LINE 8 0 10 -563.0232526704264 +459.0465053408528 20 -113.00000000000001 +108.00000000000001 30 0.0 11 -563.0232526704264 +459.0465053408528 21 -106.00000000000001 +101.00000000000001 31 0.0 0 @@ -5351,15 +5391,15 @@ LINE 8 0 10 -571.0232526704264 +467.04650534085283 20 -113.00000000000001 +108.00000000000001 30 0.0 11 -564.0232526704264 +460.04650534085283 21 -113.00000000000001 +108.00000000000001 31 0.0 0 @@ -5369,15 +5409,15 @@ LINE 8 0 10 -571.0232526704264 +467.04650534085283 20 -137.00000000000003 +132.0 30 0.0 11 -571.0232526704264 +467.04650534085283 21 -113.00000000000001 +108.00000000000001 31 0.0 0 @@ -5387,15 +5427,15 @@ LINE 8 0 10 -564.0232526704264 +460.04650534085283 20 -137.00000000000003 +132.0 30 0.0 11 -571.0232526704264 +467.04650534085283 21 -137.00000000000003 +132.0 31 0.0 0 @@ -5407,15 +5447,15 @@ DOTTED 8 0 10 -564.0232526704264 +460.04650534085283 20 -137.00000000000003 +132.0 30 0.0 11 -564.0232526704264 +460.04650534085283 21 -198.0 +193.00000000000003 31 0.0 0 @@ -5425,15 +5465,15 @@ LINE 8 0 10 -504.0232526704263 +400.0465053408528 20 -198.0 +193.00000000000003 30 0.0 11 -564.0232526704264 +460.04650534085283 21 -198.0 +193.00000000000003 31 0.0 0 @@ -5445,15 +5485,15 @@ DOTTED 8 0 10 -504.0232526704263 +400.0465053408528 20 -137.00000000000003 +132.0 30 0.0 11 -504.0232526704263 +400.0465053408528 21 -198.0 +193.00000000000003 31 0.0 0 @@ -5463,15 +5503,15 @@ LINE 8 0 10 -588.0232526704262 +484.04650534085283 20 -137.00000000000003 +132.0 30 0.0 11 -564.0232526704264 +460.04650534085283 21 -137.00000000000003 +132.0 31 0.0 0 @@ -5483,15 +5523,15 @@ DOTTED 8 0 10 -588.0232526704262 +484.04650534085283 20 -137.00000000000003 +132.0 30 0.0 11 -588.0232526704262 +484.04650534085283 21 -198.0 +193.00000000000003 31 0.0 0 @@ -5501,15 +5541,15 @@ LINE 8 0 10 -564.0232526704264 +460.04650534085283 20 -198.0 +193.00000000000003 30 0.0 11 -588.0232526704262 +484.04650534085283 21 -198.0 +193.00000000000003 31 0.0 0 @@ -5519,15 +5559,15 @@ LINE 8 0 10 -648.0232526704264 +544.0465053408527 20 -137.00000000000003 +132.0 30 0.0 11 -588.0232526704262 +484.04650534085283 21 -137.00000000000003 +132.0 31 0.0 0 @@ -5537,15 +5577,15 @@ LINE 8 0 10 -648.0232526704264 +544.0465053408527 20 -198.0 +193.00000000000003 30 0.0 11 -648.0232526704264 +544.0465053408527 21 -137.00000000000003 +132.0 31 0.0 0 @@ -5555,15 +5595,15 @@ LINE 8 0 10 -588.0232526704262 +484.04650534085283 20 -198.0 +193.00000000000003 30 0.0 11 -648.0232526704264 +544.0465053408527 21 -198.0 +193.00000000000003 31 0.0 0 @@ -5573,15 +5613,15 @@ LINE 8 0 10 -504.0232526704263 +400.0465053408528 20 -137.00000000000003 +132.0 30 0.0 11 -480.0232526704263 +376.04650534085283 21 -137.00000000000003 +132.0 31 0.0 0 @@ -5591,15 +5631,15 @@ LINE 8 0 10 -480.0232526704263 +376.04650534085283 20 -198.0 +193.00000000000003 30 0.0 11 -504.0232526704263 +400.0465053408528 21 -198.0 +193.00000000000003 31 0.0 0 @@ -5611,15 +5651,15 @@ DOTTED 8 0 10 -480.0232526704263 +376.04650534085283 20 -198.0 +193.00000000000003 30 0.0 11 -480.0232526704263 +376.04650534085283 21 -137.00000000000003 +132.0 31 0.0 0 @@ -5629,15 +5669,15 @@ LINE 8 0 10 -470.0232526704263 +366.04650534085283 20 -198.0 +193.00000000000003 30 0.0 11 -480.0232526704263 +376.04650534085283 21 -198.0 +193.00000000000003 31 0.0 0 @@ -5647,15 +5687,15 @@ LINE 8 0 10 -470.0232526704263 +366.04650534085283 20 -137.00000000000003 +132.0 30 0.0 11 -470.0232526704263 +366.04650534085283 21 -198.0 +193.00000000000003 31 0.0 0 @@ -5665,15 +5705,15 @@ LINE 8 0 10 -480.0232526704263 +376.04650534085283 20 -137.00000000000003 +132.0 30 0.0 11 -470.0232526704263 +366.04650534085283 21 -137.00000000000003 +132.0 31 0.0 0 @@ -5683,15 +5723,15 @@ LINE 8 0 10 -496.0232526704263 +392.04650534085283 20 -137.00000000000003 +132.0 30 0.0 11 -503.0232526704263 +399.04650534085283 21 -137.00000000000003 +132.0 31 0.0 0 @@ -5701,15 +5741,15 @@ LINE 8 0 10 -496.0232526704263 +392.04650534085283 20 -113.00000000000001 +108.00000000000001 30 0.0 11 -496.0232526704263 +392.04650534085283 21 -137.00000000000003 +132.0 31 0.0 0 @@ -5719,15 +5759,15 @@ LINE 8 0 10 -503.0232526704263 +399.04650534085283 20 -113.00000000000001 +108.00000000000001 30 0.0 11 -496.0232526704263 +392.04650534085283 21 -113.00000000000001 +108.00000000000001 31 0.0 0 @@ -5737,15 +5777,15 @@ LINE 8 0 10 -552.1141617613354 +448.1374144317619 20 -107.75000000000001 +102.75000000000001 30 0.0 11 -555.6141617613354 +451.6374144317619 21 -107.75000000000001 +102.75000000000001 31 0.0 0 @@ -5755,15 +5795,15 @@ LINE 8 0 10 -555.6141617613354 +451.6374144317619 20 -107.75000000000001 +102.75000000000001 30 0.0 11 -552.1141617613354 +448.1374144317619 21 -111.25000000000001 +106.25000000000001 31 0.0 0 @@ -5773,15 +5813,15 @@ LINE 8 0 10 -552.1141617613354 +448.1374144317619 20 -111.25000000000001 +106.25000000000001 30 0.0 11 -541.2050708522444 +437.228323522671 21 -111.25000000000001 +106.25000000000001 31 0.0 0 @@ -5791,15 +5831,15 @@ LINE 8 0 10 -541.2050708522444 +437.228323522671 20 -111.25000000000001 +106.25000000000001 30 0.0 11 -537.7050708522446 +433.72832352267096 21 -107.75000000000001 +102.75000000000001 31 0.0 0 @@ -5809,15 +5849,15 @@ LINE 8 0 10 -537.7050708522446 +433.72832352267096 20 -107.75000000000001 +102.75000000000001 30 0.0 11 -541.2050708522444 +437.228323522671 21 -107.75000000000001 +102.75000000000001 31 0.0 0 @@ -5827,15 +5867,15 @@ LINE 8 0 10 -524.8414344886082 +420.86468715903464 20 -107.75000000000001 +102.75000000000001 30 0.0 11 -528.3414344886082 +424.36468715903464 21 -107.75000000000001 +102.75000000000001 31 0.0 0 @@ -5845,15 +5885,15 @@ LINE 8 0 10 -528.3414344886082 +424.36468715903464 20 -107.75000000000001 +102.75000000000001 30 0.0 11 -524.8414344886082 +420.86468715903464 21 -111.25000000000001 +106.25000000000001 31 0.0 0 @@ -5863,15 +5903,15 @@ LINE 8 0 10 -524.8414344886082 +420.86468715903464 20 -111.25000000000001 +106.25000000000001 30 0.0 11 -513.9323435795172 +409.9555962499437 21 -111.25000000000001 +106.25000000000001 31 0.0 0 @@ -5881,15 +5921,15 @@ LINE 8 0 10 -513.9323435795172 +409.9555962499437 20 -111.25000000000001 +106.25000000000001 30 0.0 11 -510.43234357951724 +406.45559624994377 21 -107.75000000000001 +102.75000000000001 31 0.0 0 @@ -5899,15 +5939,15 @@ LINE 8 0 10 -510.43234357951724 +406.45559624994377 20 -107.75000000000001 +102.75000000000001 30 0.0 11 -513.9323435795172 +409.9555962499437 21 -107.75000000000001 +102.75000000000001 31 0.0 0 @@ -5917,15 +5957,15 @@ LINE 8 0 10 -569.2732526704264 +465.29650534085283 20 -129.0 +124.00000000000003 30 0.0 11 -565.7732526704262 +461.79650534085283 21 -129.0 +124.00000000000003 31 0.0 0 @@ -5935,15 +5975,15 @@ LINE 8 0 10 -565.7732526704262 +461.79650534085283 20 -129.0 +124.00000000000003 30 0.0 11 -565.7732526704262 +461.79650534085283 21 -121.00000000000001 +116.0 31 0.0 0 @@ -5953,15 +5993,15 @@ LINE 8 0 10 -565.7732526704262 +461.79650534085283 20 -121.00000000000001 +116.0 30 0.0 11 -569.2732526704264 +465.29650534085283 21 -121.00000000000001 +116.0 31 0.0 0 @@ -5971,15 +6011,15 @@ LINE 8 0 10 -511.5232526704263 +407.54650534085283 20 -188.50000000000003 +183.50000000000003 30 0.0 11 -511.5232526704263 +407.54650534085283 21 -170.5 +165.50000000000003 31 0.0 0 @@ -5989,15 +6029,15 @@ LINE 8 0 10 -511.5232526704263 +407.54650534085283 20 -170.5 +165.50000000000003 30 0.0 11 -546.5232526704264 +442.54650534085283 21 -170.5 +165.50000000000003 31 0.0 0 @@ -6007,15 +6047,15 @@ LINE 8 0 10 -546.5232526704264 +442.54650534085283 20 -170.5 +165.50000000000003 30 0.0 11 -546.5232526704264 +442.54650534085283 21 -188.50000000000003 +183.50000000000003 31 0.0 0 @@ -6025,15 +6065,15 @@ LINE 8 0 10 -546.5232526704264 +442.54650534085283 20 -188.50000000000003 +183.50000000000003 30 0.0 11 -511.5232526704263 +407.54650534085283 21 -188.50000000000003 +183.50000000000003 31 0.0 0 @@ -6043,15 +6083,15 @@ LINE 8 0 10 -564.5232526704264 +460.54650534085283 20 -150.25 +145.25 30 0.0 11 -564.5232526704264 +460.54650534085283 21 -147.25000000000003 +142.25000000000003 31 0.0 0 @@ -6061,15 +6101,15 @@ LINE 8 0 10 -564.5232526704264 +460.54650534085283 20 -147.25000000000003 +142.25000000000003 30 0.0 11 -567.5232526704262 +463.5465053408528 21 -147.25000000000003 +142.25000000000003 31 0.0 0 @@ -6079,15 +6119,15 @@ LINE 8 0 10 -567.5232526704262 +463.5465053408528 20 -147.25000000000003 +142.25000000000003 30 0.0 11 -567.5232526704262 +463.5465053408528 21 -150.25 +145.25 31 0.0 0 @@ -6097,15 +6137,15 @@ LINE 8 0 10 -567.5232526704262 +463.5465053408528 20 -150.25 +145.25 30 0.0 11 -564.5232526704264 +460.54650534085283 21 -150.25 +145.25 31 0.0 0 @@ -6115,15 +6155,15 @@ LINE 8 0 10 -585.5232526704262 +481.5465053408529 20 -149.25000000000003 +144.25000000000003 30 0.0 11 -585.5232526704262 +481.5465053408529 21 -148.25 +143.25 31 0.0 0 @@ -6133,15 +6173,15 @@ LINE 8 0 10 -585.5232526704262 +481.5465053408529 20 -148.25 +143.25 30 0.0 11 -586.5232526704262 +482.54650534085283 21 -148.25 +143.25 31 0.0 0 @@ -6151,15 +6191,15 @@ LINE 8 0 10 -586.5232526704262 +482.54650534085283 20 -148.25 +143.25 30 0.0 11 -586.5232526704262 +482.54650534085283 21 -149.25000000000003 +144.25000000000003 31 0.0 0 @@ -6169,15 +6209,15 @@ LINE 8 0 10 -586.5232526704262 +482.54650534085283 20 -149.25000000000003 +144.25000000000003 30 0.0 11 -585.5232526704262 +481.5465053408529 21 -149.25000000000003 +144.25000000000003 31 0.0 0 @@ -6187,15 +6227,15 @@ LINE 8 0 10 -565.5232526704264 +461.54650534085283 20 -151.75000000000003 +146.75000000000003 30 0.0 11 -565.5232526704264 +461.54650534085283 21 -150.75000000000003 +145.75 31 0.0 0 @@ -6205,15 +6245,15 @@ LINE 8 0 10 -565.5232526704264 +461.54650534085283 20 -150.75000000000003 +145.75 30 0.0 11 -566.5232526704264 +462.54650534085283 21 -150.75000000000003 +145.75 31 0.0 0 @@ -6223,15 +6263,15 @@ LINE 8 0 10 -566.5232526704264 +462.54650534085283 20 -150.75000000000003 +145.75 30 0.0 11 -566.5232526704264 +462.54650534085283 21 -151.75000000000003 +146.75000000000003 31 0.0 0 @@ -6241,15 +6281,15 @@ LINE 8 0 10 -566.5232526704264 +462.54650534085283 20 -151.75000000000003 +146.75000000000003 30 0.0 11 -565.5232526704264 +461.54650534085283 21 -151.75000000000003 +146.75000000000003 31 0.0 0 @@ -6259,15 +6299,15 @@ LINE 8 0 10 -585.5232526704262 +481.5465053408529 20 -151.75000000000003 +146.75000000000003 30 0.0 11 -585.5232526704262 +481.5465053408529 21 -150.75000000000003 +145.75 31 0.0 0 @@ -6277,15 +6317,15 @@ LINE 8 0 10 -585.5232526704262 +481.5465053408529 20 -150.75000000000003 +145.75 30 0.0 11 -586.5232526704262 +482.54650534085283 21 -150.75000000000003 +145.75 31 0.0 0 @@ -6295,15 +6335,15 @@ LINE 8 0 10 -586.5232526704262 +482.54650534085283 20 -150.75000000000003 +145.75 30 0.0 11 -586.5232526704262 +482.54650534085283 21 -151.75000000000003 +146.75000000000003 31 0.0 0 @@ -6313,15 +6353,15 @@ LINE 8 0 10 -586.5232526704262 +482.54650534085283 20 -151.75000000000003 +146.75000000000003 30 0.0 11 -585.5232526704262 +481.5465053408529 21 -151.75000000000003 +146.75000000000003 31 0.0 0 @@ -6331,15 +6371,15 @@ LINE 8 0 10 -565.5232526704264 +461.54650534085283 20 -154.25000000000003 +149.25000000000003 30 0.0 11 -565.5232526704264 +461.54650534085283 21 -153.25000000000003 +148.25 31 0.0 0 @@ -6349,15 +6389,15 @@ LINE 8 0 10 -565.5232526704264 +461.54650534085283 20 -153.25000000000003 +148.25 30 0.0 11 -566.5232526704264 +462.54650534085283 21 -153.25000000000003 +148.25 31 0.0 0 @@ -6367,15 +6407,15 @@ LINE 8 0 10 -566.5232526704264 +462.54650534085283 20 -153.25000000000003 +148.25 30 0.0 11 -566.5232526704264 +462.54650534085283 21 -154.25000000000003 +149.25000000000003 31 0.0 0 @@ -6385,15 +6425,15 @@ LINE 8 0 10 -566.5232526704264 +462.54650534085283 20 -154.25000000000003 +149.25000000000003 30 0.0 11 -565.5232526704264 +461.54650534085283 21 -154.25000000000003 +149.25000000000003 31 0.0 0 @@ -6403,15 +6443,15 @@ LINE 8 0 10 -585.5232526704262 +481.5465053408529 20 -154.25000000000003 +149.25000000000003 30 0.0 11 -585.5232526704262 +481.5465053408529 21 -153.25000000000003 +148.25 31 0.0 0 @@ -6421,15 +6461,15 @@ LINE 8 0 10 -585.5232526704262 +481.5465053408529 20 -153.25000000000003 +148.25 30 0.0 11 -586.5232526704262 +482.54650534085283 21 -153.25000000000003 +148.25 31 0.0 0 @@ -6439,15 +6479,15 @@ LINE 8 0 10 -586.5232526704262 +482.54650534085283 20 -153.25000000000003 +148.25 30 0.0 11 -586.5232526704262 +482.54650534085283 21 -154.25000000000003 +149.25000000000003 31 0.0 0 @@ -6457,15 +6497,15 @@ LINE 8 0 10 -586.5232526704262 +482.54650534085283 20 -154.25000000000003 +149.25000000000003 30 0.0 11 -585.5232526704262 +481.5465053408529 21 -154.25000000000003 +149.25000000000003 31 0.0 0 @@ -6475,15 +6515,15 @@ LINE 8 0 10 -565.5232526704264 +461.54650534085283 20 -156.75 +151.75000000000003 30 0.0 11 -565.5232526704264 +461.54650534085283 21 -155.75000000000003 +150.75000000000003 31 0.0 0 @@ -6493,15 +6533,15 @@ LINE 8 0 10 -565.5232526704264 +461.54650534085283 20 -155.75000000000003 +150.75000000000003 30 0.0 11 -566.5232526704264 +462.54650534085283 21 -155.75000000000003 +150.75000000000003 31 0.0 0 @@ -6511,15 +6551,15 @@ LINE 8 0 10 -566.5232526704264 +462.54650534085283 20 -155.75000000000003 +150.75000000000003 30 0.0 11 -566.5232526704264 +462.54650534085283 21 -156.75 +151.75000000000003 31 0.0 0 @@ -6529,15 +6569,15 @@ LINE 8 0 10 -566.5232526704264 +462.54650534085283 20 -156.75 +151.75000000000003 30 0.0 11 -565.5232526704264 +461.54650534085283 21 -156.75 +151.75000000000003 31 0.0 0 @@ -6547,15 +6587,15 @@ LINE 8 0 10 -585.5232526704262 +481.5465053408529 20 -156.75 +151.75000000000003 30 0.0 11 -585.5232526704262 +481.5465053408529 21 -155.75000000000003 +150.75000000000003 31 0.0 0 @@ -6565,15 +6605,15 @@ LINE 8 0 10 -585.5232526704262 +481.5465053408529 20 -155.75000000000003 +150.75000000000003 30 0.0 11 -586.5232526704262 +482.54650534085283 21 -155.75000000000003 +150.75000000000003 31 0.0 0 @@ -6583,15 +6623,15 @@ LINE 8 0 10 -586.5232526704262 +482.54650534085283 20 -155.75000000000003 +150.75000000000003 30 0.0 11 -586.5232526704262 +482.54650534085283 21 -156.75 +151.75000000000003 31 0.0 0 @@ -6601,15 +6641,15 @@ LINE 8 0 10 -586.5232526704262 +482.54650534085283 20 -156.75 +151.75000000000003 30 0.0 11 -585.5232526704262 +481.5465053408529 21 -156.75 +151.75000000000003 31 0.0 0 @@ -6619,15 +6659,15 @@ LINE 8 0 10 -565.5232526704264 +461.54650534085283 20 -159.25 +154.25000000000003 30 0.0 11 -565.5232526704264 +461.54650534085283 21 -158.25000000000003 +153.25000000000003 31 0.0 0 @@ -6637,15 +6677,15 @@ LINE 8 0 10 -565.5232526704264 +461.54650534085283 20 -158.25000000000003 +153.25000000000003 30 0.0 11 -566.5232526704264 +462.54650534085283 21 -158.25000000000003 +153.25000000000003 31 0.0 0 @@ -6655,15 +6695,15 @@ LINE 8 0 10 -566.5232526704264 +462.54650534085283 20 -158.25000000000003 +153.25000000000003 30 0.0 11 -566.5232526704264 +462.54650534085283 21 -159.25 +154.25000000000003 31 0.0 0 @@ -6673,15 +6713,15 @@ LINE 8 0 10 -566.5232526704264 +462.54650534085283 20 -159.25 +154.25000000000003 30 0.0 11 -565.5232526704264 +461.54650534085283 21 -159.25 +154.25000000000003 31 0.0 0 @@ -6691,15 +6731,15 @@ LINE 8 0 10 -585.5232526704262 +481.5465053408529 20 -159.25 +154.25000000000003 30 0.0 11 -585.5232526704262 +481.5465053408529 21 -158.25000000000003 +153.25000000000003 31 0.0 0 @@ -6709,15 +6749,15 @@ LINE 8 0 10 -585.5232526704262 +481.5465053408529 20 -158.25000000000003 +153.25000000000003 30 0.0 11 -586.5232526704262 +482.54650534085283 21 -158.25000000000003 +153.25000000000003 31 0.0 0 @@ -6727,15 +6767,15 @@ LINE 8 0 10 -586.5232526704262 +482.54650534085283 20 -158.25000000000003 +153.25000000000003 30 0.0 11 -586.5232526704262 +482.54650534085283 21 -159.25 +154.25000000000003 31 0.0 0 @@ -6745,15 +6785,15 @@ LINE 8 0 10 -586.5232526704262 +482.54650534085283 20 -159.25 +154.25000000000003 30 0.0 11 -585.5232526704262 +481.5465053408529 21 -159.25 +154.25000000000003 31 0.0 0 @@ -6763,15 +6803,15 @@ LINE 8 0 10 -565.5232526704264 +461.54650534085283 20 -161.75 +156.75 30 0.0 11 -565.5232526704264 +461.54650534085283 21 -160.75000000000003 +155.75000000000003 31 0.0 0 @@ -6781,15 +6821,15 @@ LINE 8 0 10 -565.5232526704264 +461.54650534085283 20 -160.75000000000003 +155.75000000000003 30 0.0 11 -566.5232526704264 +462.54650534085283 21 -160.75000000000003 +155.75000000000003 31 0.0 0 @@ -6799,15 +6839,15 @@ LINE 8 0 10 -566.5232526704264 +462.54650534085283 20 -160.75000000000003 +155.75000000000003 30 0.0 11 -566.5232526704264 +462.54650534085283 21 -161.75 +156.75 31 0.0 0 @@ -6817,15 +6857,15 @@ LINE 8 0 10 -566.5232526704264 +462.54650534085283 20 -161.75 +156.75 30 0.0 11 -565.5232526704264 +461.54650534085283 21 -161.75 +156.75 31 0.0 0 @@ -6835,15 +6875,15 @@ LINE 8 0 10 -585.5232526704262 +481.5465053408529 20 -161.75 +156.75 30 0.0 11 -585.5232526704262 +481.5465053408529 21 -160.75000000000003 +155.75000000000003 31 0.0 0 @@ -6853,15 +6893,15 @@ LINE 8 0 10 -585.5232526704262 +481.5465053408529 20 -160.75000000000003 +155.75000000000003 30 0.0 11 -586.5232526704262 +482.54650534085283 21 -160.75000000000003 +155.75000000000003 31 0.0 0 @@ -6871,15 +6911,15 @@ LINE 8 0 10 -586.5232526704262 +482.54650534085283 20 -160.75000000000003 +155.75000000000003 30 0.0 11 -586.5232526704262 +482.54650534085283 21 -161.75 +156.75 31 0.0 0 @@ -6889,15 +6929,15 @@ LINE 8 0 10 -586.5232526704262 +482.54650534085283 20 -161.75 +156.75 30 0.0 11 -585.5232526704262 +481.5465053408529 21 -161.75 +156.75 31 0.0 0 @@ -6907,15 +6947,15 @@ LINE 8 0 10 -565.5232526704264 +461.54650534085283 20 -164.25000000000003 +159.25 30 0.0 11 -565.5232526704264 +461.54650534085283 21 -163.25000000000003 +158.25000000000003 31 0.0 0 @@ -6925,13 +6965,301 @@ LINE 8 0 10 -565.5232526704264 +461.54650534085283 20 -163.25000000000003 +158.25000000000003 + 30 +0.0 + 11 +462.54650534085283 + 21 +158.25000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +462.54650534085283 + 20 +158.25000000000003 + 30 +0.0 + 11 +462.54650534085283 + 21 +159.25 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +462.54650534085283 + 20 +159.25 + 30 +0.0 + 11 +461.54650534085283 + 21 +159.25 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +481.5465053408529 + 20 +159.25 + 30 +0.0 + 11 +481.5465053408529 + 21 +158.25000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +481.5465053408529 + 20 +158.25000000000003 + 30 +0.0 + 11 +482.54650534085283 + 21 +158.25000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +482.54650534085283 + 20 +158.25000000000003 + 30 +0.0 + 11 +482.54650534085283 + 21 +159.25 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +482.54650534085283 + 20 +159.25 + 30 +0.0 + 11 +481.5465053408529 + 21 +159.25 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +461.54650534085283 + 20 +161.75 + 30 +0.0 + 11 +461.54650534085283 + 21 +160.75000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +461.54650534085283 + 20 +160.75000000000003 + 30 +0.0 + 11 +462.54650534085283 + 21 +160.75000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +462.54650534085283 + 20 +160.75000000000003 30 0.0 11 -566.5232526704264 +462.54650534085283 + 21 +161.75 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +462.54650534085283 + 20 +161.75 + 30 +0.0 + 11 +461.54650534085283 + 21 +161.75 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +481.5465053408529 + 20 +161.75 + 30 +0.0 + 11 +481.5465053408529 + 21 +160.75000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +481.5465053408529 + 20 +160.75000000000003 + 30 +0.0 + 11 +482.54650534085283 + 21 +160.75000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +482.54650534085283 + 20 +160.75000000000003 + 30 +0.0 + 11 +482.54650534085283 + 21 +161.75 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +482.54650534085283 + 20 +161.75 + 30 +0.0 + 11 +481.5465053408529 + 21 +161.75 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +461.54650534085283 + 20 +164.25000000000003 + 30 +0.0 + 11 +461.54650534085283 + 21 +163.25000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +461.54650534085283 + 20 +163.25000000000003 + 30 +0.0 + 11 +462.54650534085283 21 163.25000000000003 31 @@ -6943,13 +7271,13 @@ LINE 8 0 10 -566.5232526704264 +462.54650534085283 20 163.25000000000003 30 0.0 11 -566.5232526704264 +462.54650534085283 21 164.25000000000003 31 @@ -6961,13 +7289,13 @@ LINE 8 0 10 -566.5232526704264 +462.54650534085283 20 164.25000000000003 30 0.0 11 -565.5232526704264 +461.54650534085283 21 164.25000000000003 31 @@ -6979,13 +7307,13 @@ LINE 8 0 10 -585.5232526704262 +481.5465053408529 20 164.25000000000003 30 0.0 11 -585.5232526704262 +481.5465053408529 21 163.25000000000003 31 @@ -6997,13 +7325,13 @@ LINE 8 0 10 -585.5232526704262 +481.5465053408529 20 163.25000000000003 30 0.0 11 -586.5232526704262 +482.54650534085283 21 163.25000000000003 31 @@ -7015,13 +7343,13 @@ LINE 8 0 10 -586.5232526704262 +482.54650534085283 20 163.25000000000003 30 0.0 11 -586.5232526704262 +482.54650534085283 21 164.25000000000003 31 @@ -7033,13 +7361,13 @@ LINE 8 0 10 -586.5232526704262 +482.54650534085283 20 164.25000000000003 30 0.0 11 -585.5232526704262 +481.5465053408529 21 164.25000000000003 31 @@ -7051,13 +7379,13 @@ LINE 8 0 10 -565.5232526704264 +461.54650534085283 20 166.75000000000003 30 0.0 11 -565.5232526704264 +461.54650534085283 21 165.75 31 @@ -7069,13 +7397,13 @@ LINE 8 0 10 -565.5232526704264 +461.54650534085283 20 165.75 30 0.0 11 -566.5232526704264 +462.54650534085283 21 165.75 31 @@ -7087,13 +7415,13 @@ LINE 8 0 10 -566.5232526704264 +462.54650534085283 20 165.75 30 0.0 11 -566.5232526704264 +462.54650534085283 21 166.75000000000003 31 @@ -7105,13 +7433,13 @@ LINE 8 0 10 -566.5232526704264 +462.54650534085283 20 166.75000000000003 30 0.0 11 -565.5232526704264 +461.54650534085283 21 166.75000000000003 31 @@ -7123,13 +7451,13 @@ LINE 8 0 10 -585.5232526704262 +481.5465053408529 20 166.75000000000003 30 0.0 11 -585.5232526704262 +481.5465053408529 21 165.75 31 @@ -7141,13 +7469,13 @@ LINE 8 0 10 -585.5232526704262 +481.5465053408529 20 165.75 30 0.0 11 -586.5232526704262 +482.54650534085283 21 165.75 31 @@ -7159,13 +7487,13 @@ LINE 8 0 10 -586.5232526704262 +482.54650534085283 20 165.75 30 0.0 11 -586.5232526704262 +482.54650534085283 21 166.75000000000003 31 @@ -7177,13 +7505,13 @@ LINE 8 0 10 -586.5232526704262 +482.54650534085283 20 166.75000000000003 30 0.0 11 -585.5232526704262 +481.5465053408529 21 166.75000000000003 31 @@ -7195,13 +7523,13 @@ LINE 8 0 10 -565.5232526704264 +461.54650534085283 20 169.25000000000003 30 0.0 11 -565.5232526704264 +461.54650534085283 21 168.25 31 @@ -7213,13 +7541,13 @@ LINE 8 0 10 -565.5232526704264 +461.54650534085283 20 168.25 30 0.0 11 -566.5232526704264 +462.54650534085283 21 168.25 31 @@ -7231,13 +7559,13 @@ LINE 8 0 10 -566.5232526704264 +462.54650534085283 20 168.25 30 0.0 11 -566.5232526704264 +462.54650534085283 21 169.25000000000003 31 @@ -7249,13 +7577,13 @@ LINE 8 0 10 -566.5232526704264 +462.54650534085283 20 169.25000000000003 30 0.0 11 -565.5232526704264 +461.54650534085283 21 169.25000000000003 31 @@ -7267,13 +7595,13 @@ LINE 8 0 10 -585.5232526704262 +481.5465053408529 20 169.25000000000003 30 0.0 11 -585.5232526704262 +481.5465053408529 21 168.25 31 @@ -7285,13 +7613,13 @@ LINE 8 0 10 -585.5232526704262 +481.5465053408529 20 168.25 30 0.0 11 -586.5232526704262 +482.54650534085283 21 168.25 31 @@ -7303,13 +7631,13 @@ LINE 8 0 10 -586.5232526704262 +482.54650534085283 20 168.25 30 0.0 11 -586.5232526704262 +482.54650534085283 21 169.25000000000003 31 @@ -7321,13 +7649,13 @@ LINE 8 0 10 -586.5232526704262 +482.54650534085283 20 169.25000000000003 30 0.0 11 -585.5232526704262 +481.5465053408529 21 169.25000000000003 31 @@ -7339,13 +7667,13 @@ LINE 8 0 10 -565.5232526704264 +461.54650534085283 20 171.75000000000003 30 0.0 11 -565.5232526704264 +461.54650534085283 21 170.75 31 @@ -7357,13 +7685,13 @@ LINE 8 0 10 -565.5232526704264 +461.54650534085283 20 170.75 30 0.0 11 -566.5232526704264 +462.54650534085283 21 170.75 31 @@ -7375,13 +7703,13 @@ LINE 8 0 10 -566.5232526704264 +462.54650534085283 20 170.75 30 0.0 11 -566.5232526704264 +462.54650534085283 21 171.75000000000003 31 @@ -7393,13 +7721,13 @@ LINE 8 0 10 -566.5232526704264 +462.54650534085283 20 171.75000000000003 30 0.0 11 -565.5232526704264 +461.54650534085283 21 171.75000000000003 31 @@ -7411,13 +7739,13 @@ LINE 8 0 10 -585.5232526704262 +481.5465053408529 20 171.75000000000003 30 0.0 11 -585.5232526704262 +481.5465053408529 21 170.75 31 @@ -7429,13 +7757,13 @@ LINE 8 0 10 -585.5232526704262 +481.5465053408529 20 170.75 30 0.0 11 -586.5232526704262 +482.54650534085283 21 170.75 31 @@ -7447,13 +7775,13 @@ LINE 8 0 10 -586.5232526704262 +482.54650534085283 20 170.75 30 0.0 11 -586.5232526704262 +482.54650534085283 21 171.75000000000003 31 @@ -7465,13 +7793,13 @@ LINE 8 0 10 -586.5232526704262 +482.54650534085283 20 171.75000000000003 30 0.0 11 -585.5232526704262 +481.5465053408529 21 171.75000000000003 31 @@ -7483,13 +7811,13 @@ LINE 8 0 10 -565.5232526704264 +461.54650534085283 20 174.25000000000003 30 0.0 11 -565.5232526704264 +461.54650534085283 21 173.25000000000003 31 @@ -7501,13 +7829,13 @@ LINE 8 0 10 -565.5232526704264 +461.54650534085283 20 173.25000000000003 30 0.0 11 -566.5232526704264 +462.54650534085283 21 173.25000000000003 31 @@ -7519,13 +7847,13 @@ LINE 8 0 10 -566.5232526704264 +462.54650534085283 20 173.25000000000003 30 0.0 11 -566.5232526704264 +462.54650534085283 21 174.25000000000003 31 @@ -7537,13 +7865,13 @@ LINE 8 0 10 -566.5232526704264 +462.54650534085283 20 174.25000000000003 30 0.0 11 -565.5232526704264 +461.54650534085283 21 174.25000000000003 31 @@ -7555,13 +7883,13 @@ LINE 8 0 10 -585.5232526704262 +481.5465053408529 20 174.25000000000003 30 0.0 11 -585.5232526704262 +481.5465053408529 21 173.25000000000003 31 @@ -7573,13 +7901,13 @@ LINE 8 0 10 -585.5232526704262 +481.5465053408529 20 173.25000000000003 30 0.0 11 -586.5232526704262 +482.54650534085283 21 173.25000000000003 31 @@ -7591,13 +7919,13 @@ LINE 8 0 10 -586.5232526704262 +482.54650534085283 20 173.25000000000003 30 0.0 11 -586.5232526704262 +482.54650534085283 21 174.25000000000003 31 @@ -7609,13 +7937,13 @@ LINE 8 0 10 -586.5232526704262 +482.54650534085283 20 174.25000000000003 30 0.0 11 -585.5232526704262 +481.5465053408529 21 174.25000000000003 31 @@ -7627,13 +7955,13 @@ LINE 8 0 10 -565.5232526704264 +461.54650534085283 20 176.75000000000003 30 0.0 11 -565.5232526704264 +461.54650534085283 21 175.75000000000003 31 @@ -7645,13 +7973,13 @@ LINE 8 0 10 -565.5232526704264 +461.54650534085283 20 175.75000000000003 30 0.0 11 -566.5232526704264 +462.54650534085283 21 175.75000000000003 31 @@ -7663,13 +7991,13 @@ LINE 8 0 10 -566.5232526704264 +462.54650534085283 20 175.75000000000003 30 0.0 11 -566.5232526704264 +462.54650534085283 21 176.75000000000003 31 @@ -7681,13 +8009,13 @@ LINE 8 0 10 -566.5232526704264 +462.54650534085283 20 176.75000000000003 30 0.0 11 -565.5232526704264 +461.54650534085283 21 176.75000000000003 31 @@ -7699,13 +8027,13 @@ LINE 8 0 10 -585.5232526704262 +481.5465053408529 20 176.75000000000003 30 0.0 11 -585.5232526704262 +481.5465053408529 21 175.75000000000003 31 @@ -7717,13 +8045,13 @@ LINE 8 0 10 -585.5232526704262 +481.5465053408529 20 175.75000000000003 30 0.0 11 -586.5232526704262 +482.54650534085283 21 175.75000000000003 31 @@ -7735,13 +8063,13 @@ LINE 8 0 10 -586.5232526704262 +482.54650534085283 20 175.75000000000003 30 0.0 11 -586.5232526704262 +482.54650534085283 21 176.75000000000003 31 @@ -7753,13 +8081,13 @@ LINE 8 0 10 -586.5232526704262 +482.54650534085283 20 176.75000000000003 30 0.0 11 -585.5232526704262 +481.5465053408529 21 176.75000000000003 31 @@ -7771,13 +8099,13 @@ LINE 8 0 10 -565.5232526704264 +461.54650534085283 20 179.25000000000003 30 0.0 11 -565.5232526704264 +461.54650534085283 21 178.25000000000003 31 @@ -7789,13 +8117,13 @@ LINE 8 0 10 -565.5232526704264 +461.54650534085283 20 178.25000000000003 30 0.0 11 -566.5232526704264 +462.54650534085283 21 178.25000000000003 31 @@ -7807,13 +8135,13 @@ LINE 8 0 10 -566.5232526704264 +462.54650534085283 20 178.25000000000003 30 0.0 11 -566.5232526704264 +462.54650534085283 21 179.25000000000003 31 @@ -7825,13 +8153,13 @@ LINE 8 0 10 -566.5232526704264 +462.54650534085283 20 179.25000000000003 30 0.0 11 -565.5232526704264 +461.54650534085283 21 179.25000000000003 31 @@ -7843,13 +8171,13 @@ LINE 8 0 10 -585.5232526704262 +481.5465053408529 20 179.25000000000003 30 0.0 11 -585.5232526704262 +481.5465053408529 21 178.25000000000003 31 @@ -7861,13 +8189,13 @@ LINE 8 0 10 -585.5232526704262 +481.5465053408529 20 178.25000000000003 30 0.0 11 -586.5232526704262 +482.54650534085283 21 178.25000000000003 31 @@ -7879,13 +8207,13 @@ LINE 8 0 10 -586.5232526704262 +482.54650534085283 20 178.25000000000003 30 0.0 11 -586.5232526704262 +482.54650534085283 21 179.25000000000003 31 @@ -7897,13 +8225,13 @@ LINE 8 0 10 -586.5232526704262 +482.54650534085283 20 179.25000000000003 30 0.0 11 -585.5232526704262 +481.5465053408529 21 179.25000000000003 31 @@ -7915,13 +8243,13 @@ LINE 8 0 10 -565.5232526704264 +461.54650534085283 20 181.75 30 0.0 11 -565.5232526704264 +461.54650534085283 21 180.75000000000003 31 @@ -7933,13 +8261,13 @@ LINE 8 0 10 -565.5232526704264 +461.54650534085283 20 180.75000000000003 30 0.0 11 -566.5232526704264 +462.54650534085283 21 180.75000000000003 31 @@ -7951,13 +8279,13 @@ LINE 8 0 10 -566.5232526704264 +462.54650534085283 20 180.75000000000003 30 0.0 11 -566.5232526704264 +462.54650534085283 21 181.75 31 @@ -7969,13 +8297,13 @@ LINE 8 0 10 -566.5232526704264 +462.54650534085283 20 181.75 30 0.0 11 -565.5232526704264 +461.54650534085283 21 181.75 31 @@ -7987,15 +8315,15 @@ LINE 8 0 10 -585.5232526704262 +480.54650534085283 20 -181.75 +182.75000000000003 30 0.0 11 -585.5232526704262 +480.54650534085283 21 -180.75000000000003 +179.75 31 0.0 0 @@ -8005,15 +8333,15 @@ LINE 8 0 10 -585.5232526704262 +480.54650534085283 20 -180.75000000000003 +179.75 30 0.0 11 -586.5232526704262 +483.54650534085283 21 -180.75000000000003 +179.75 31 0.0 0 @@ -8023,15 +8351,15 @@ LINE 8 0 10 -586.5232526704262 +483.54650534085283 20 -180.75000000000003 +179.75 30 0.0 11 -586.5232526704262 +483.54650534085283 21 -181.75 +182.75000000000003 31 0.0 0 @@ -8041,15 +8369,15 @@ LINE 8 0 10 -586.5232526704262 +483.54650534085283 20 -181.75 +182.75000000000003 30 0.0 11 -585.5232526704262 +480.54650534085283 21 -181.75 +182.75000000000003 31 0.0 0 @@ -8059,15 +8387,15 @@ LINE 8 0 10 -565.5232526704264 +476.29650534085283 20 -184.25 +139.75000000000003 30 0.0 11 -565.5232526704264 +467.79650534085283 21 -183.25000000000003 +139.75000000000003 31 0.0 0 @@ -8077,15 +8405,15 @@ LINE 8 0 10 -565.5232526704264 +467.79650534085283 20 -183.25000000000003 +139.75000000000003 30 0.0 11 -566.5232526704264 +467.79650534085283 21 -183.25000000000003 +139.25 31 0.0 0 @@ -8095,15 +8423,15 @@ LINE 8 0 10 -566.5232526704264 +467.79650534085283 20 -183.25000000000003 +139.25 30 0.0 11 -566.5232526704264 +476.29650534085283 21 -184.25 +139.25 31 0.0 0 @@ -8113,15 +8441,15 @@ LINE 8 0 10 -566.5232526704264 +476.29650534085283 20 -184.25 +139.25 30 0.0 11 -565.5232526704264 +476.29650534085283 21 -184.25 +139.75000000000003 31 0.0 0 @@ -8131,15 +8459,15 @@ LINE 8 0 10 -585.5232526704262 +467.79650534085283 20 -184.25 +187.50000000000003 30 0.0 11 -585.5232526704262 +476.29650534085283 21 -183.25000000000003 +187.50000000000003 31 0.0 0 @@ -8149,15 +8477,15 @@ LINE 8 0 10 -585.5232526704262 +476.29650534085283 20 -183.25000000000003 +187.50000000000003 30 0.0 11 -586.5232526704262 +476.29650534085283 21 -183.25000000000003 +188.00000000000003 31 0.0 0 @@ -8167,15 +8495,15 @@ LINE 8 0 10 -586.5232526704262 +476.29650534085283 20 -183.25000000000003 +188.00000000000003 30 0.0 11 -586.5232526704262 +467.79650534085283 21 -184.25 +188.00000000000003 31 0.0 0 @@ -8185,15 +8513,15 @@ LINE 8 0 10 -586.5232526704262 +467.79650534085283 20 -184.25 +188.00000000000003 30 0.0 11 -585.5232526704262 +467.79650534085283 21 -184.25 +187.50000000000003 31 0.0 0 @@ -8203,15 +8531,15 @@ LINE 8 0 10 -565.5232526704264 +499.04650534085283 20 -186.75 +183.00000000000003 30 0.0 11 -565.5232526704264 +499.04650534085283 21 -185.75000000000003 +170.00000000000003 31 0.0 0 @@ -8221,15 +8549,15 @@ LINE 8 0 10 -565.5232526704264 +499.04650534085283 20 -185.75000000000003 +170.00000000000003 30 0.0 11 -566.5232526704264 +529.0465053408527 21 -185.75000000000003 +170.00000000000003 31 0.0 0 @@ -8239,15 +8567,15 @@ LINE 8 0 10 -566.5232526704264 +529.0465053408527 20 -185.75000000000003 +170.00000000000003 30 0.0 11 -566.5232526704264 +529.0465053408527 21 -186.75 +183.00000000000003 31 0.0 0 @@ -8257,15 +8585,15 @@ LINE 8 0 10 -566.5232526704264 +529.0465053408527 20 -186.75 +183.00000000000003 30 0.0 11 -565.5232526704264 +499.04650534085283 21 -186.75 +183.00000000000003 31 0.0 0 @@ -8275,15 +8603,15 @@ LINE 8 0 10 -584.5232526704264 +506.11468715903464 20 -187.75000000000003 +137.50000000000003 30 0.0 11 -584.5232526704264 +494.70559624994377 21 -184.75000000000003 +137.50000000000003 31 0.0 0 @@ -8293,15 +8621,15 @@ LINE 8 0 10 -584.5232526704264 +494.70559624994377 20 -184.75000000000003 +137.50000000000003 30 0.0 11 -587.5232526704262 +494.70559624994377 21 -184.75000000000003 +137.00000000000003 31 0.0 0 @@ -8311,15 +8639,15 @@ LINE 8 0 10 -587.5232526704262 +494.70559624994377 20 -184.75000000000003 +137.00000000000003 30 0.0 11 -587.5232526704262 +506.11468715903464 21 -187.75000000000003 +137.00000000000003 31 0.0 0 @@ -8329,15 +8657,15 @@ LINE 8 0 10 -587.5232526704262 +506.11468715903464 20 -187.75000000000003 +137.00000000000003 30 0.0 11 -584.5232526704264 +506.11468715903464 21 -187.75000000000003 +137.50000000000003 31 0.0 0 @@ -8347,15 +8675,15 @@ LINE 8 0 10 -580.2732526704264 +533.387414431762 20 -144.75000000000003 +137.50000000000003 30 0.0 11 -571.7732526704262 +521.978323522671 21 -144.75000000000003 +137.50000000000003 31 0.0 0 @@ -8365,15 +8693,15 @@ LINE 8 0 10 -571.7732526704262 +521.978323522671 20 -144.75000000000003 +137.50000000000003 30 0.0 11 -571.7732526704262 +521.978323522671 21 -144.25000000000003 +137.00000000000003 31 0.0 0 @@ -8383,15 +8711,15 @@ LINE 8 0 10 -571.7732526704262 +521.978323522671 20 -144.25000000000003 +137.00000000000003 30 0.0 11 -580.2732526704264 +533.387414431762 21 -144.25000000000003 +137.00000000000003 31 0.0 0 @@ -8401,15 +8729,15 @@ LINE 8 0 10 -580.2732526704264 +533.387414431762 20 -144.25000000000003 +137.00000000000003 30 0.0 11 -580.2732526704264 +533.387414431762 21 -144.75000000000003 +137.50000000000003 31 0.0 0 @@ -8419,15 +8747,15 @@ LINE 8 0 10 -571.7732526704262 +536.2965053408528 20 -192.50000000000003 +154.4318181818182 30 0.0 11 -580.2732526704264 +536.2965053408528 21 -192.50000000000003 +142.84090909090912 31 0.0 0 @@ -8437,15 +8765,15 @@ LINE 8 0 10 -580.2732526704264 +536.2965053408528 20 -192.50000000000003 +142.84090909090912 30 0.0 11 -580.2732526704264 +536.7965053408527 21 -193.00000000000003 +142.84090909090912 31 0.0 0 @@ -8455,15 +8783,15 @@ LINE 8 0 10 -580.2732526704264 +536.7965053408527 20 -193.00000000000003 +142.84090909090912 30 0.0 11 -571.7732526704262 +536.7965053408527 21 -193.00000000000003 +154.4318181818182 31 0.0 0 @@ -8473,15 +8801,15 @@ LINE 8 0 10 -571.7732526704262 +536.7965053408527 20 -193.00000000000003 +154.4318181818182 30 0.0 11 -571.7732526704262 +536.2965053408528 21 -192.50000000000003 +154.4318181818182 31 0.0 0 @@ -8491,15 +8819,15 @@ LINE 8 0 10 -603.0232526704264 +536.2965053408528 20 -188.00000000000003 +182.15909090909093 30 0.0 11 -603.0232526704264 +536.2965053408528 21 -175.0 +170.5681818181818 31 0.0 0 @@ -8509,15 +8837,15 @@ LINE 8 0 10 -603.0232526704264 +536.2965053408528 20 -175.0 +170.5681818181818 30 0.0 11 -633.0232526704262 +536.7965053408527 21 -175.0 +170.5681818181818 31 0.0 0 @@ -8527,15 +8855,15 @@ LINE 8 0 10 -633.0232526704262 +536.7965053408527 20 -175.0 +170.5681818181818 30 0.0 11 -633.0232526704262 +536.7965053408527 21 -188.00000000000003 +182.15909090909093 31 0.0 0 @@ -8545,15 +8873,15 @@ LINE 8 0 10 -633.0232526704262 +536.7965053408527 20 -188.00000000000003 +182.15909090909093 30 0.0 11 -603.0232526704264 +536.2965053408528 21 -188.00000000000003 +182.15909090909093 31 0.0 0 @@ -8563,15 +8891,15 @@ LINE 8 0 10 -610.0914344886081 +376.5465053408528 20 -142.50000000000003 +145.25 30 0.0 11 -598.6823435795171 +376.5465053408528 21 -142.50000000000003 +142.25000000000003 31 0.0 0 @@ -8581,15 +8909,15 @@ LINE 8 0 10 -598.6823435795171 +376.5465053408528 20 -142.50000000000003 +142.25000000000003 30 0.0 11 -598.6823435795171 +379.54650534085283 21 -142.00000000000003 +142.25000000000003 31 0.0 0 @@ -8599,15 +8927,15 @@ LINE 8 0 10 -598.6823435795171 +379.54650534085283 20 -142.00000000000003 +142.25000000000003 30 0.0 11 -610.0914344886081 +379.54650534085283 21 -142.00000000000003 +145.25 31 0.0 0 @@ -8617,15 +8945,15 @@ LINE 8 0 10 -610.0914344886081 +379.54650534085283 20 -142.00000000000003 +145.25 30 0.0 11 -610.0914344886081 +376.5465053408528 21 -142.50000000000003 +145.25 31 0.0 0 @@ -8635,15 +8963,15 @@ LINE 8 0 10 -637.3641617613355 +397.54650534085283 20 -142.50000000000003 +144.25000000000003 30 0.0 11 -625.9550708522444 +397.54650534085283 21 -142.50000000000003 +143.25 31 0.0 0 @@ -8653,15 +8981,15 @@ LINE 8 0 10 -625.9550708522444 +397.54650534085283 20 -142.50000000000003 +143.25 30 0.0 11 -625.9550708522444 +398.54650534085283 21 -142.00000000000003 +143.25 31 0.0 0 @@ -8671,15 +8999,15 @@ LINE 8 0 10 -625.9550708522444 +398.54650534085283 20 -142.00000000000003 +143.25 30 0.0 11 -637.3641617613355 +398.54650534085283 21 -142.00000000000003 +144.25000000000003 31 0.0 0 @@ -8689,15 +9017,15 @@ LINE 8 0 10 -637.3641617613355 +398.54650534085283 20 -142.00000000000003 +144.25000000000003 30 0.0 11 -637.3641617613355 +397.54650534085283 21 -142.50000000000003 +144.25000000000003 31 0.0 0 @@ -8707,15 +9035,15 @@ LINE 8 0 10 -640.2732526704264 +377.54650534085283 20 -159.43181818181822 +146.75000000000003 30 0.0 11 -640.2732526704264 +377.54650534085283 21 -147.84090909090912 +145.75 31 0.0 0 @@ -8725,15 +9053,15 @@ LINE 8 0 10 -640.2732526704264 +377.54650534085283 20 -147.84090909090912 +145.75 30 0.0 11 -640.7732526704264 +378.54650534085283 21 -147.84090909090912 +145.75 31 0.0 0 @@ -8743,15 +9071,15 @@ LINE 8 0 10 -640.7732526704264 +378.54650534085283 20 -147.84090909090912 +145.75 30 0.0 11 -640.7732526704264 +378.54650534085283 21 -159.43181818181822 +146.75000000000003 31 0.0 0 @@ -8761,15 +9089,15 @@ LINE 8 0 10 -640.7732526704264 +378.54650534085283 20 -159.43181818181822 +146.75000000000003 30 0.0 11 -640.2732526704264 +377.54650534085283 21 -159.43181818181822 +146.75000000000003 31 0.0 0 @@ -8779,15 +9107,15 @@ LINE 8 0 10 -640.2732526704264 +397.54650534085283 20 -187.15909090909093 +146.75000000000003 30 0.0 11 -640.2732526704264 +397.54650534085283 21 -175.5681818181818 +145.75 31 0.0 0 @@ -8797,15 +9125,15 @@ LINE 8 0 10 -640.2732526704264 +397.54650534085283 20 -175.5681818181818 +145.75 30 0.0 11 -640.7732526704264 +398.54650534085283 21 -175.5681818181818 +145.75 31 0.0 0 @@ -8815,15 +9143,15 @@ LINE 8 0 10 -640.7732526704264 +398.54650534085283 20 -175.5681818181818 +145.75 30 0.0 11 -640.7732526704264 +398.54650534085283 21 -187.15909090909093 +146.75000000000003 31 0.0 0 @@ -8833,15 +9161,15 @@ LINE 8 0 10 -640.7732526704264 +398.54650534085283 20 -187.15909090909093 +146.75000000000003 30 0.0 11 -640.2732526704264 +397.54650534085283 21 -187.15909090909093 +146.75000000000003 31 0.0 0 @@ -8851,15 +9179,15 @@ LINE 8 0 10 -480.5232526704263 +377.54650534085283 20 -150.25 +149.25000000000003 30 0.0 11 -480.5232526704263 +377.54650534085283 21 -147.25000000000003 +148.25 31 0.0 0 @@ -8869,15 +9197,15 @@ LINE 8 0 10 -480.5232526704263 +377.54650534085283 20 -147.25000000000003 +148.25 30 0.0 11 -483.5232526704263 +378.54650534085283 21 -147.25000000000003 +148.25 31 0.0 0 @@ -8887,15 +9215,15 @@ LINE 8 0 10 -483.5232526704263 +378.54650534085283 20 -147.25000000000003 +148.25 30 0.0 11 -483.5232526704263 +378.54650534085283 21 -150.25 +149.25000000000003 31 0.0 0 @@ -8905,15 +9233,15 @@ LINE 8 0 10 -483.5232526704263 +378.54650534085283 20 -150.25 +149.25000000000003 30 0.0 11 -480.5232526704263 +377.54650534085283 21 -150.25 +149.25000000000003 31 0.0 0 @@ -8923,13 +9251,13 @@ LINE 8 0 10 -501.5232526704263 +397.54650534085283 20 149.25000000000003 30 0.0 11 -501.5232526704263 +397.54650534085283 21 148.25 31 @@ -8941,13 +9269,13 @@ LINE 8 0 10 -501.5232526704263 +397.54650534085283 20 148.25 30 0.0 11 -502.5232526704263 +398.54650534085283 21 148.25 31 @@ -8959,13 +9287,13 @@ LINE 8 0 10 -502.5232526704263 +398.54650534085283 20 148.25 30 0.0 11 -502.5232526704263 +398.54650534085283 21 149.25000000000003 31 @@ -8977,13 +9305,13 @@ LINE 8 0 10 -502.5232526704263 +398.54650534085283 20 149.25000000000003 30 0.0 11 -501.5232526704263 +397.54650534085283 21 149.25000000000003 31 @@ -8995,13 +9323,13 @@ LINE 8 0 10 -481.5232526704263 +377.54650534085283 20 151.75000000000003 30 0.0 11 -481.5232526704263 +377.54650534085283 21 150.75000000000003 31 @@ -9013,13 +9341,13 @@ LINE 8 0 10 -481.5232526704263 +377.54650534085283 20 150.75000000000003 30 0.0 11 -482.52325267042636 +378.54650534085283 21 150.75000000000003 31 @@ -9031,13 +9359,13 @@ LINE 8 0 10 -482.52325267042636 +378.54650534085283 20 150.75000000000003 30 0.0 11 -482.52325267042636 +378.54650534085283 21 151.75000000000003 31 @@ -9049,13 +9377,13 @@ LINE 8 0 10 -482.52325267042636 +378.54650534085283 20 151.75000000000003 30 0.0 11 -481.5232526704263 +377.54650534085283 21 151.75000000000003 31 @@ -9067,13 +9395,13 @@ LINE 8 0 10 -501.5232526704263 +397.54650534085283 20 151.75000000000003 30 0.0 11 -501.5232526704263 +397.54650534085283 21 150.75000000000003 31 @@ -9085,13 +9413,13 @@ LINE 8 0 10 -501.5232526704263 +397.54650534085283 20 150.75000000000003 30 0.0 11 -502.5232526704263 +398.54650534085283 21 150.75000000000003 31 @@ -9103,13 +9431,13 @@ LINE 8 0 10 -502.5232526704263 +398.54650534085283 20 150.75000000000003 30 0.0 11 -502.5232526704263 +398.54650534085283 21 151.75000000000003 31 @@ -9121,13 +9449,13 @@ LINE 8 0 10 -502.5232526704263 +398.54650534085283 20 151.75000000000003 30 0.0 11 -501.5232526704263 +397.54650534085283 21 151.75000000000003 31 @@ -9139,13 +9467,13 @@ LINE 8 0 10 -481.5232526704263 +377.54650534085283 20 154.25000000000003 30 0.0 11 -481.5232526704263 +377.54650534085283 21 153.25000000000003 31 @@ -9157,13 +9485,13 @@ LINE 8 0 10 -481.5232526704263 +377.54650534085283 20 153.25000000000003 30 0.0 11 -482.52325267042636 +378.54650534085283 21 153.25000000000003 31 @@ -9175,13 +9503,13 @@ LINE 8 0 10 -482.52325267042636 +378.54650534085283 20 153.25000000000003 30 0.0 11 -482.52325267042636 +378.54650534085283 21 154.25000000000003 31 @@ -9193,13 +9521,13 @@ LINE 8 0 10 -482.52325267042636 +378.54650534085283 20 154.25000000000003 30 0.0 11 -481.5232526704263 +377.54650534085283 21 154.25000000000003 31 @@ -9211,13 +9539,13 @@ LINE 8 0 10 -501.5232526704263 +397.54650534085283 20 154.25000000000003 30 0.0 11 -501.5232526704263 +397.54650534085283 21 153.25000000000003 31 @@ -9229,13 +9557,13 @@ LINE 8 0 10 -501.5232526704263 +397.54650534085283 20 153.25000000000003 30 0.0 11 -502.5232526704263 +398.54650534085283 21 153.25000000000003 31 @@ -9247,13 +9575,13 @@ LINE 8 0 10 -502.5232526704263 +398.54650534085283 20 153.25000000000003 30 0.0 11 -502.5232526704263 +398.54650534085283 21 154.25000000000003 31 @@ -9265,13 +9593,13 @@ LINE 8 0 10 -502.5232526704263 +398.54650534085283 20 154.25000000000003 30 0.0 11 -501.5232526704263 +397.54650534085283 21 154.25000000000003 31 @@ -9283,13 +9611,13 @@ LINE 8 0 10 -481.5232526704263 +377.54650534085283 20 156.75 30 0.0 11 -481.5232526704263 +377.54650534085283 21 155.75000000000003 31 @@ -9301,13 +9629,13 @@ LINE 8 0 10 -481.5232526704263 +377.54650534085283 20 155.75000000000003 30 0.0 11 -482.52325267042636 +378.54650534085283 21 155.75000000000003 31 @@ -9319,13 +9647,13 @@ LINE 8 0 10 -482.52325267042636 +378.54650534085283 20 155.75000000000003 30 0.0 11 -482.52325267042636 +378.54650534085283 21 156.75 31 @@ -9337,13 +9665,13 @@ LINE 8 0 10 -482.52325267042636 +378.54650534085283 20 156.75 30 0.0 11 -481.5232526704263 +377.54650534085283 21 156.75 31 @@ -9355,13 +9683,13 @@ LINE 8 0 10 -501.5232526704263 +397.54650534085283 20 156.75 30 0.0 11 -501.5232526704263 +397.54650534085283 21 155.75000000000003 31 @@ -9373,13 +9701,13 @@ LINE 8 0 10 -501.5232526704263 +397.54650534085283 20 155.75000000000003 30 0.0 11 -502.5232526704263 +398.54650534085283 21 155.75000000000003 31 @@ -9391,13 +9719,13 @@ LINE 8 0 10 -502.5232526704263 +398.54650534085283 20 155.75000000000003 30 0.0 11 -502.5232526704263 +398.54650534085283 21 156.75 31 @@ -9409,13 +9737,13 @@ LINE 8 0 10 -502.5232526704263 +398.54650534085283 20 156.75 30 0.0 11 -501.5232526704263 +397.54650534085283 21 156.75 31 @@ -9427,13 +9755,13 @@ LINE 8 0 10 -481.5232526704263 +377.54650534085283 20 159.25 30 0.0 11 -481.5232526704263 +377.54650534085283 21 158.25000000000003 31 @@ -9445,13 +9773,13 @@ LINE 8 0 10 -481.5232526704263 +377.54650534085283 20 158.25000000000003 30 0.0 11 -482.52325267042636 +378.54650534085283 21 158.25000000000003 31 @@ -9463,13 +9791,13 @@ LINE 8 0 10 -482.52325267042636 +378.54650534085283 20 158.25000000000003 30 0.0 11 -482.52325267042636 +378.54650534085283 21 159.25 31 @@ -9481,13 +9809,13 @@ LINE 8 0 10 -482.52325267042636 +378.54650534085283 20 159.25 30 0.0 11 -481.5232526704263 +377.54650534085283 21 159.25 31 @@ -9499,13 +9827,13 @@ LINE 8 0 10 -501.5232526704263 +397.54650534085283 20 159.25 30 0.0 11 -501.5232526704263 +397.54650534085283 21 158.25000000000003 31 @@ -9517,13 +9845,13 @@ LINE 8 0 10 -501.5232526704263 +397.54650534085283 20 158.25000000000003 30 0.0 11 -502.5232526704263 +398.54650534085283 21 158.25000000000003 31 @@ -9535,13 +9863,13 @@ LINE 8 0 10 -502.5232526704263 +398.54650534085283 20 158.25000000000003 30 0.0 11 -502.5232526704263 +398.54650534085283 21 159.25 31 @@ -9553,13 +9881,13 @@ LINE 8 0 10 -502.5232526704263 +398.54650534085283 20 159.25 30 0.0 11 -501.5232526704263 +397.54650534085283 21 159.25 31 @@ -9571,13 +9899,13 @@ LINE 8 0 10 -481.5232526704263 +377.54650534085283 20 161.75 30 0.0 11 -481.5232526704263 +377.54650534085283 21 160.75000000000003 31 @@ -9589,13 +9917,13 @@ LINE 8 0 10 -481.5232526704263 +377.54650534085283 20 160.75000000000003 30 0.0 11 -482.52325267042636 +378.54650534085283 21 160.75000000000003 31 @@ -9607,13 +9935,13 @@ LINE 8 0 10 -482.52325267042636 +378.54650534085283 20 160.75000000000003 30 0.0 11 -482.52325267042636 +378.54650534085283 21 161.75 31 @@ -9625,13 +9953,13 @@ LINE 8 0 10 -482.52325267042636 +378.54650534085283 20 161.75 30 0.0 11 -481.5232526704263 +377.54650534085283 21 161.75 31 @@ -9643,13 +9971,13 @@ LINE 8 0 10 -501.5232526704263 +397.54650534085283 20 161.75 30 0.0 11 -501.5232526704263 +397.54650534085283 21 160.75000000000003 31 @@ -9661,13 +9989,13 @@ LINE 8 0 10 -501.5232526704263 +397.54650534085283 20 160.75000000000003 30 0.0 11 -502.5232526704263 +398.54650534085283 21 160.75000000000003 31 @@ -9679,13 +10007,13 @@ LINE 8 0 10 -502.5232526704263 +398.54650534085283 20 160.75000000000003 30 0.0 11 -502.5232526704263 +398.54650534085283 21 161.75 31 @@ -9697,13 +10025,13 @@ LINE 8 0 10 -502.5232526704263 +398.54650534085283 20 161.75 30 0.0 11 -501.5232526704263 +397.54650534085283 21 161.75 31 @@ -9715,13 +10043,13 @@ LINE 8 0 10 -481.5232526704263 +377.54650534085283 20 164.25000000000003 30 0.0 11 -481.5232526704263 +377.54650534085283 21 163.25000000000003 31 @@ -9733,13 +10061,13 @@ LINE 8 0 10 -481.5232526704263 +377.54650534085283 20 163.25000000000003 30 0.0 11 -482.52325267042636 +378.54650534085283 21 163.25000000000003 31 @@ -9751,13 +10079,13 @@ LINE 8 0 10 -482.52325267042636 +378.54650534085283 20 163.25000000000003 30 0.0 11 -482.52325267042636 +378.54650534085283 21 164.25000000000003 31 @@ -9769,13 +10097,13 @@ LINE 8 0 10 -482.52325267042636 +378.54650534085283 20 164.25000000000003 30 0.0 11 -481.5232526704263 +377.54650534085283 21 164.25000000000003 31 @@ -9787,13 +10115,13 @@ LINE 8 0 10 -501.5232526704263 +397.54650534085283 20 164.25000000000003 30 0.0 11 -501.5232526704263 +397.54650534085283 21 163.25000000000003 31 @@ -9805,13 +10133,13 @@ LINE 8 0 10 -501.5232526704263 +397.54650534085283 20 163.25000000000003 30 0.0 11 -502.5232526704263 +398.54650534085283 21 163.25000000000003 31 @@ -9823,13 +10151,13 @@ LINE 8 0 10 -502.5232526704263 +398.54650534085283 20 163.25000000000003 30 0.0 11 -502.5232526704263 +398.54650534085283 21 164.25000000000003 31 @@ -9841,13 +10169,13 @@ LINE 8 0 10 -502.5232526704263 +398.54650534085283 20 164.25000000000003 30 0.0 11 -501.5232526704263 +397.54650534085283 21 164.25000000000003 31 @@ -9859,13 +10187,13 @@ LINE 8 0 10 -481.5232526704263 +377.54650534085283 20 166.75000000000003 30 0.0 11 -481.5232526704263 +377.54650534085283 21 165.75 31 @@ -9877,13 +10205,13 @@ LINE 8 0 10 -481.5232526704263 +377.54650534085283 20 165.75 30 0.0 11 -482.52325267042636 +378.54650534085283 21 165.75 31 @@ -9895,13 +10223,13 @@ LINE 8 0 10 -482.52325267042636 +378.54650534085283 20 165.75 30 0.0 11 -482.52325267042636 +378.54650534085283 21 166.75000000000003 31 @@ -9913,13 +10241,13 @@ LINE 8 0 10 -482.52325267042636 +378.54650534085283 20 166.75000000000003 30 0.0 11 -481.5232526704263 +377.54650534085283 21 166.75000000000003 31 @@ -9931,13 +10259,13 @@ LINE 8 0 10 -501.5232526704263 +397.54650534085283 20 166.75000000000003 30 0.0 11 -501.5232526704263 +397.54650534085283 21 165.75 31 @@ -9949,13 +10277,13 @@ LINE 8 0 10 -501.5232526704263 +397.54650534085283 20 165.75 30 0.0 11 -502.5232526704263 +398.54650534085283 21 165.75 31 @@ -9967,13 +10295,13 @@ LINE 8 0 10 -502.5232526704263 +398.54650534085283 20 165.75 30 0.0 11 -502.5232526704263 +398.54650534085283 21 166.75000000000003 31 @@ -9985,13 +10313,13 @@ LINE 8 0 10 -502.5232526704263 +398.54650534085283 20 166.75000000000003 30 0.0 11 -501.5232526704263 +397.54650534085283 21 166.75000000000003 31 @@ -10003,13 +10331,13 @@ LINE 8 0 10 -481.5232526704263 +377.54650534085283 20 169.25000000000003 30 0.0 11 -481.5232526704263 +377.54650534085283 21 168.25 31 @@ -10021,13 +10349,13 @@ LINE 8 0 10 -481.5232526704263 +377.54650534085283 20 168.25 30 0.0 11 -482.52325267042636 +378.54650534085283 21 168.25 31 @@ -10039,13 +10367,13 @@ LINE 8 0 10 -482.52325267042636 +378.54650534085283 20 168.25 30 0.0 11 -482.52325267042636 +378.54650534085283 21 169.25000000000003 31 @@ -10057,13 +10385,13 @@ LINE 8 0 10 -482.52325267042636 +378.54650534085283 20 169.25000000000003 30 0.0 11 -481.5232526704263 +377.54650534085283 21 169.25000000000003 31 @@ -10075,13 +10403,13 @@ LINE 8 0 10 -501.5232526704263 +397.54650534085283 20 169.25000000000003 30 0.0 11 -501.5232526704263 +397.54650534085283 21 168.25 31 @@ -10093,13 +10421,13 @@ LINE 8 0 10 -501.5232526704263 +397.54650534085283 20 168.25 30 0.0 11 -502.5232526704263 +398.54650534085283 21 168.25 31 @@ -10111,13 +10439,13 @@ LINE 8 0 10 -502.5232526704263 +398.54650534085283 20 168.25 30 0.0 11 -502.5232526704263 +398.54650534085283 21 169.25000000000003 31 @@ -10129,13 +10457,13 @@ LINE 8 0 10 -502.5232526704263 +398.54650534085283 20 169.25000000000003 30 0.0 11 -501.5232526704263 +397.54650534085283 21 169.25000000000003 31 @@ -10147,13 +10475,13 @@ LINE 8 0 10 -481.5232526704263 +377.54650534085283 20 171.75000000000003 30 0.0 11 -481.5232526704263 +377.54650534085283 21 170.75 31 @@ -10165,13 +10493,13 @@ LINE 8 0 10 -481.5232526704263 +377.54650534085283 20 170.75 30 0.0 11 -482.52325267042636 +378.54650534085283 21 170.75 31 @@ -10183,13 +10511,13 @@ LINE 8 0 10 -482.52325267042636 +378.54650534085283 20 170.75 30 0.0 11 -482.52325267042636 +378.54650534085283 21 171.75000000000003 31 @@ -10201,13 +10529,13 @@ LINE 8 0 10 -482.52325267042636 +378.54650534085283 20 171.75000000000003 30 0.0 11 -481.5232526704263 +377.54650534085283 21 171.75000000000003 31 @@ -10219,13 +10547,13 @@ LINE 8 0 10 -501.5232526704263 +397.54650534085283 20 171.75000000000003 30 0.0 11 -501.5232526704263 +397.54650534085283 21 170.75 31 @@ -10237,13 +10565,13 @@ LINE 8 0 10 -501.5232526704263 +397.54650534085283 20 170.75 30 0.0 11 -502.5232526704263 +398.54650534085283 21 170.75 31 @@ -10255,13 +10583,13 @@ LINE 8 0 10 -502.5232526704263 +398.54650534085283 20 170.75 30 0.0 11 -502.5232526704263 +398.54650534085283 21 171.75000000000003 31 @@ -10273,13 +10601,13 @@ LINE 8 0 10 -502.5232526704263 +398.54650534085283 20 171.75000000000003 30 0.0 11 -501.5232526704263 +397.54650534085283 21 171.75000000000003 31 @@ -10291,13 +10619,13 @@ LINE 8 0 10 -481.5232526704263 +377.54650534085283 20 174.25000000000003 30 0.0 11 -481.5232526704263 +377.54650534085283 21 173.25000000000003 31 @@ -10309,13 +10637,13 @@ LINE 8 0 10 -481.5232526704263 +377.54650534085283 20 173.25000000000003 30 0.0 11 -482.52325267042636 +378.54650534085283 21 173.25000000000003 31 @@ -10327,13 +10655,13 @@ LINE 8 0 10 -482.52325267042636 +378.54650534085283 20 173.25000000000003 30 0.0 11 -482.52325267042636 +378.54650534085283 21 174.25000000000003 31 @@ -10345,13 +10673,13 @@ LINE 8 0 10 -482.52325267042636 +378.54650534085283 20 174.25000000000003 30 0.0 11 -481.5232526704263 +377.54650534085283 21 174.25000000000003 31 @@ -10363,13 +10691,13 @@ LINE 8 0 10 -501.5232526704263 +397.54650534085283 20 174.25000000000003 30 0.0 11 -501.5232526704263 +397.54650534085283 21 173.25000000000003 31 @@ -10381,13 +10709,13 @@ LINE 8 0 10 -501.5232526704263 +397.54650534085283 20 173.25000000000003 30 0.0 11 -502.5232526704263 +398.54650534085283 21 173.25000000000003 31 @@ -10399,13 +10727,13 @@ LINE 8 0 10 -502.5232526704263 +398.54650534085283 20 173.25000000000003 30 0.0 11 -502.5232526704263 +398.54650534085283 21 174.25000000000003 31 @@ -10417,13 +10745,13 @@ LINE 8 0 10 -502.5232526704263 +398.54650534085283 20 174.25000000000003 30 0.0 11 -501.5232526704263 +397.54650534085283 21 174.25000000000003 31 @@ -10435,13 +10763,13 @@ LINE 8 0 10 -481.5232526704263 +377.54650534085283 20 176.75000000000003 30 0.0 11 -481.5232526704263 +377.54650534085283 21 175.75000000000003 31 @@ -10453,13 +10781,13 @@ LINE 8 0 10 -481.5232526704263 +377.54650534085283 20 175.75000000000003 30 0.0 11 -482.52325267042636 +378.54650534085283 21 175.75000000000003 31 @@ -10471,13 +10799,13 @@ LINE 8 0 10 -482.52325267042636 +378.54650534085283 20 175.75000000000003 30 0.0 11 -482.52325267042636 +378.54650534085283 21 176.75000000000003 31 @@ -10489,13 +10817,13 @@ LINE 8 0 10 -482.52325267042636 +378.54650534085283 20 176.75000000000003 30 0.0 11 -481.5232526704263 +377.54650534085283 21 176.75000000000003 31 @@ -10507,13 +10835,13 @@ LINE 8 0 10 -501.5232526704263 +397.54650534085283 20 176.75000000000003 30 0.0 11 -501.5232526704263 +397.54650534085283 21 175.75000000000003 31 @@ -10525,13 +10853,13 @@ LINE 8 0 10 -501.5232526704263 +397.54650534085283 20 175.75000000000003 30 0.0 11 -502.5232526704263 +398.54650534085283 21 175.75000000000003 31 @@ -10543,13 +10871,13 @@ LINE 8 0 10 -502.5232526704263 +398.54650534085283 20 175.75000000000003 30 0.0 11 -502.5232526704263 +398.54650534085283 21 176.75000000000003 31 @@ -10561,13 +10889,13 @@ LINE 8 0 10 -502.5232526704263 +398.54650534085283 20 176.75000000000003 30 0.0 11 -501.5232526704263 +397.54650534085283 21 176.75000000000003 31 @@ -10579,13 +10907,13 @@ LINE 8 0 10 -481.5232526704263 +377.54650534085283 20 179.25000000000003 30 0.0 11 -481.5232526704263 +377.54650534085283 21 178.25000000000003 31 @@ -10597,13 +10925,13 @@ LINE 8 0 10 -481.5232526704263 +377.54650534085283 20 178.25000000000003 30 0.0 11 -482.52325267042636 +378.54650534085283 21 178.25000000000003 31 @@ -10615,13 +10943,13 @@ LINE 8 0 10 -482.52325267042636 +378.54650534085283 20 178.25000000000003 30 0.0 11 -482.52325267042636 +378.54650534085283 21 179.25000000000003 31 @@ -10633,13 +10961,13 @@ LINE 8 0 10 -482.52325267042636 +378.54650534085283 20 179.25000000000003 30 0.0 11 -481.5232526704263 +377.54650534085283 21 179.25000000000003 31 @@ -10651,13 +10979,13 @@ LINE 8 0 10 -501.5232526704263 +397.54650534085283 20 179.25000000000003 30 0.0 11 -501.5232526704263 +397.54650534085283 21 178.25000000000003 31 @@ -10669,13 +10997,13 @@ LINE 8 0 10 -501.5232526704263 +397.54650534085283 20 178.25000000000003 30 0.0 11 -502.5232526704263 +398.54650534085283 21 178.25000000000003 31 @@ -10687,13 +11015,13 @@ LINE 8 0 10 -502.5232526704263 +398.54650534085283 20 178.25000000000003 30 0.0 11 -502.5232526704263 +398.54650534085283 21 179.25000000000003 31 @@ -10705,13 +11033,13 @@ LINE 8 0 10 -502.5232526704263 +398.54650534085283 20 179.25000000000003 30 0.0 11 -501.5232526704263 +397.54650534085283 21 179.25000000000003 31 @@ -10723,85 +11051,13 @@ LINE 8 0 10 -481.5232526704263 - 20 -181.75 - 30 -0.0 - 11 -481.5232526704263 - 21 -180.75000000000003 - 31 -0.0 - 0 -LINE - 62 -5 - 8 -0 - 10 -481.5232526704263 - 20 -180.75000000000003 - 30 -0.0 - 11 -482.52325267042636 - 21 -180.75000000000003 - 31 -0.0 - 0 -LINE - 62 -5 - 8 -0 - 10 -482.52325267042636 - 20 -180.75000000000003 - 30 -0.0 - 11 -482.52325267042636 - 21 -181.75 - 31 -0.0 - 0 -LINE - 62 -5 - 8 -0 - 10 -482.52325267042636 - 20 -181.75 - 30 -0.0 - 11 -481.5232526704263 - 21 -181.75 - 31 -0.0 - 0 -LINE - 62 -5 - 8 -0 - 10 -501.5232526704263 +377.54650534085283 20 181.75 30 0.0 11 -501.5232526704263 +377.54650534085283 21 180.75000000000003 31 @@ -10813,13 +11069,13 @@ LINE 8 0 10 -501.5232526704263 +377.54650534085283 20 180.75000000000003 30 0.0 11 -502.5232526704263 +378.54650534085283 21 180.75000000000003 31 @@ -10831,13 +11087,13 @@ LINE 8 0 10 -502.5232526704263 +378.54650534085283 20 180.75000000000003 30 0.0 11 -502.5232526704263 +378.54650534085283 21 181.75 31 @@ -10849,13 +11105,13 @@ LINE 8 0 10 -502.5232526704263 +378.54650534085283 20 181.75 30 0.0 11 -501.5232526704263 +377.54650534085283 21 181.75 31 @@ -10867,231 +11123,15 @@ LINE 8 0 10 -481.5232526704263 - 20 -184.25 - 30 -0.0 - 11 -481.5232526704263 - 21 -183.25000000000003 - 31 -0.0 - 0 -LINE - 62 -5 - 8 -0 - 10 -481.5232526704263 - 20 -183.25000000000003 - 30 -0.0 - 11 -482.52325267042636 - 21 -183.25000000000003 - 31 -0.0 - 0 -LINE - 62 -5 - 8 -0 - 10 -482.52325267042636 - 20 -183.25000000000003 - 30 -0.0 - 11 -482.52325267042636 - 21 -184.25 - 31 -0.0 - 0 -LINE - 62 -5 - 8 -0 - 10 -482.52325267042636 - 20 -184.25 - 30 -0.0 - 11 -481.5232526704263 - 21 -184.25 - 31 -0.0 - 0 -LINE - 62 -5 - 8 -0 - 10 -501.5232526704263 - 20 -184.25 - 30 -0.0 - 11 -501.5232526704263 - 21 -183.25000000000003 - 31 -0.0 - 0 -LINE - 62 -5 - 8 -0 - 10 -501.5232526704263 - 20 -183.25000000000003 - 30 -0.0 - 11 -502.5232526704263 - 21 -183.25000000000003 - 31 -0.0 - 0 -LINE - 62 -5 - 8 -0 - 10 -502.5232526704263 - 20 -183.25000000000003 - 30 -0.0 - 11 -502.5232526704263 - 21 -184.25 - 31 -0.0 - 0 -LINE - 62 -5 - 8 -0 - 10 -502.5232526704263 - 20 -184.25 - 30 -0.0 - 11 -501.5232526704263 - 21 -184.25 - 31 -0.0 - 0 -LINE - 62 -5 - 8 -0 - 10 -481.5232526704263 - 20 -186.75 - 30 -0.0 - 11 -481.5232526704263 - 21 -185.75000000000003 - 31 -0.0 - 0 -LINE - 62 -5 - 8 -0 - 10 -481.5232526704263 - 20 -185.75000000000003 - 30 -0.0 - 11 -482.52325267042636 - 21 -185.75000000000003 - 31 -0.0 - 0 -LINE - 62 -5 - 8 -0 - 10 -482.52325267042636 - 20 -185.75000000000003 - 30 -0.0 - 11 -482.52325267042636 - 21 -186.75 - 31 -0.0 - 0 -LINE - 62 -5 - 8 -0 - 10 -482.52325267042636 - 20 -186.75 - 30 -0.0 - 11 -481.5232526704263 - 21 -186.75 - 31 -0.0 - 0 -LINE - 62 -5 - 8 -0 - 10 -500.5232526704263 +396.54650534085283 20 -187.75000000000003 +182.75000000000003 30 0.0 11 -500.5232526704263 +396.54650534085283 21 -184.75000000000003 +179.75 31 0.0 0 @@ -11101,15 +11141,15 @@ LINE 8 0 10 -500.5232526704263 +396.54650534085283 20 -184.75000000000003 +179.75 30 0.0 11 -503.5232526704263 +399.5465053408528 21 -184.75000000000003 +179.75 31 0.0 0 @@ -11119,15 +11159,15 @@ LINE 8 0 10 -503.5232526704263 +399.5465053408528 20 -184.75000000000003 +179.75 30 0.0 11 -503.5232526704263 +399.5465053408528 21 -187.75000000000003 +182.75000000000003 31 0.0 0 @@ -11137,15 +11177,15 @@ LINE 8 0 10 -503.5232526704263 +399.5465053408528 20 -187.75000000000003 +182.75000000000003 30 0.0 11 -500.5232526704263 +396.54650534085283 21 -187.75000000000003 +182.75000000000003 31 0.0 0 @@ -11155,15 +11195,15 @@ LINE 8 0 10 -496.27325267042636 +392.29650534085283 20 -144.75000000000003 +139.75000000000003 30 0.0 11 -487.7732526704263 +383.79650534085283 21 -144.75000000000003 +139.75000000000003 31 0.0 0 @@ -11173,15 +11213,15 @@ LINE 8 0 10 -487.7732526704263 +383.79650534085283 20 -144.75000000000003 +139.75000000000003 30 0.0 11 -487.7732526704263 +383.79650534085283 21 -144.25000000000003 +139.25 31 0.0 0 @@ -11191,15 +11231,15 @@ LINE 8 0 10 -487.7732526704263 +383.79650534085283 20 -144.25000000000003 +139.25 30 0.0 11 -496.27325267042636 +392.29650534085283 21 -144.25000000000003 +139.25 31 0.0 0 @@ -11209,15 +11249,15 @@ LINE 8 0 10 -496.27325267042636 +392.29650534085283 20 -144.25000000000003 +139.25 30 0.0 11 -496.27325267042636 +392.29650534085283 21 -144.75000000000003 +139.75000000000003 31 0.0 0 @@ -11227,15 +11267,15 @@ LINE 8 0 10 -487.7732526704263 +383.79650534085283 20 -192.50000000000003 +187.50000000000003 30 0.0 11 -496.27325267042636 +392.29650534085283 21 -192.50000000000003 +187.50000000000003 31 0.0 0 @@ -11245,15 +11285,15 @@ LINE 8 0 10 -496.27325267042636 +392.29650534085283 20 -192.50000000000003 +187.50000000000003 30 0.0 11 -496.27325267042636 +392.29650534085283 21 -193.00000000000003 +188.00000000000003 31 0.0 0 @@ -11263,15 +11303,15 @@ LINE 8 0 10 -496.27325267042636 +392.29650534085283 20 -193.00000000000003 +188.00000000000003 30 0.0 11 -487.7732526704263 +383.79650534085283 21 -193.00000000000003 +188.00000000000003 31 0.0 0 @@ -11281,15 +11321,15 @@ LINE 8 0 10 -487.7732526704263 +383.79650534085283 20 -193.00000000000003 +188.00000000000003 30 0.0 11 -487.7732526704263 +383.79650534085283 21 -192.50000000000003 +187.50000000000003 31 0.0 0 @@ -11299,15 +11339,15 @@ LINE 8 0 10 -472.5232526704263 +368.54650534085283 20 -148.09090909090912 +143.09090909090912 30 0.0 11 -477.5232526704263 +373.54650534085283 21 -148.09090909090912 +143.09090909090912 31 0.0 0 @@ -11317,15 +11357,15 @@ LINE 8 0 10 -477.5232526704263 +373.54650534085283 20 -148.09090909090912 +143.09090909090912 30 0.0 11 -477.5232526704263 +373.54650534085283 21 -159.1818181818182 +154.1818181818182 31 0.0 0 @@ -11335,15 +11375,15 @@ LINE 8 0 10 -477.5232526704263 +373.54650534085283 20 -159.1818181818182 +154.1818181818182 30 0.0 11 -472.5232526704263 +368.54650534085283 21 -159.1818181818182 +154.1818181818182 31 0.0 0 @@ -11353,15 +11393,15 @@ LINE 8 0 10 -472.5232526704263 +368.54650534085283 20 -175.81818181818184 +170.8181818181818 30 0.0 11 -477.5232526704263 +373.54650534085283 21 -175.81818181818184 +170.8181818181818 31 0.0 0 @@ -11371,15 +11411,15 @@ LINE 8 0 10 -477.5232526704263 +373.54650534085283 20 -175.81818181818184 +170.8181818181818 30 0.0 11 -477.5232526704263 +373.54650534085283 21 -186.90909090909093 +181.90909090909093 31 0.0 0 @@ -11389,15 +11429,15 @@ LINE 8 0 10 -477.5232526704263 +373.54650534085283 20 -186.90909090909093 +181.90909090909093 30 0.0 11 -472.5232526704263 +368.54650534085283 21 -186.90909090909093 +181.90909090909093 31 0.0 0 @@ -11407,15 +11447,15 @@ LINE 8 0 10 -497.7732526704263 +393.79650534085283 20 -121.00000000000001 +116.0 30 0.0 11 -501.2732526704263 +397.29650534085283 21 -121.00000000000001 +116.0 31 0.0 0 @@ -11425,15 +11465,15 @@ LINE 8 0 10 -501.2732526704263 +397.29650534085283 20 -121.00000000000001 +116.0 30 0.0 11 -501.2732526704263 +397.29650534085283 21 -129.0 +124.00000000000003 31 0.0 0 @@ -11443,15 +11483,15 @@ LINE 8 0 10 -501.2732526704263 +397.29650534085283 20 -129.0 +124.00000000000003 30 0.0 11 -497.7732526704263 +393.79650534085283 21 -129.0 +124.00000000000003 31 0.0 0 diff --git a/rocolib/output/DoubleServoMount/graph-anim.svg b/rocolib/output/DoubleServoMount/graph-anim.svg new file mode 100644 index 0000000000000000000000000000000000000000..92c3ded07cbdf0bcd3741bda1c41010489eebe09 --- /dev/null +++ b/rocolib/output/DoubleServoMount/graph-anim.svg @@ -0,0 +1,103 @@ +<?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="172.000000mm" version="1.1" viewBox="0.000000 0.000000 245.000000 172.000000" width="245.000000mm"> + <defs/> + <line stroke="#000000" x1="70.00000000000001" x2="34.0" y1="74.0" y2="74.0"/> + <line opacity="0.5" stroke="#ff0000" x1="70.00000000000001" x2="70.00000000000001" y1="74.0" y2="98.00000000000001"/> + <line stroke="#000000" x1="34.0" x2="70.00000000000001" y1="98.00000000000001" y2="98.00000000000001"/> + <line stroke="#000000" x1="70.00000000000001" x2="115.00000000000001" y1="98.00000000000001" y2="98.00000000000001"/> + <line stroke="#000000" x1="115.00000000000001" x2="70.00000000000001" y1="74.0" y2="74.0"/> + <line stroke="#000000" x1="120.00000000000001" x2="115.00000000000001" y1="74.0" y2="74.0"/> + <line stroke="#000000" x1="120.00000000000001" x2="120.00000000000001" y1="98.00000000000001" y2="74.0"/> + <line stroke="#000000" x1="115.00000000000001" x2="120.00000000000001" y1="98.00000000000001" y2="98.00000000000001"/> + <line stroke="#000000" x1="0.0" x2="34.0" y1="98.00000000000001" y2="98.00000000000001"/> + <line stroke="#000000" x1="0.0" x2="0.0" y1="74.0" y2="98.00000000000001"/> + <line opacity="0.5" stroke="#0000ff" x1="34.0" x2="0.0" y1="74.0" y2="74.0"/> + <line stroke="#000000" x1="34.0" x2="34.0" y1="74.0" y2="54.00000000000001"/> + <line stroke="#000000" x1="0.0" x2="0.0" y1="54.00000000000001" y2="74.0"/> + <line opacity="0.5" stroke="#0000ff" x1="34.0" x2="0.0" y1="54.00000000000001" y2="54.00000000000001"/> + <line stroke="#000000" x1="34.0" x2="34.0" y1="54.00000000000001" y2="30.000000000000004"/> + <line stroke="#000000" x1="0.0" x2="0.0" y1="30.000000000000004" y2="54.00000000000001"/> + <line opacity="0.5" stroke="#0000ff" x1="34.0" x2="0.0" y1="30.000000000000004" y2="30.000000000000004"/> + <line stroke="#000000" x1="34.0" x2="34.0" y1="30.000000000000004" y2="10.000000000000002"/> + <line stroke="#000000" x1="0.0" x2="0.0" y1="10.000000000000002" y2="30.000000000000004"/> + <line opacity="0.5" stroke="#0000ff" x1="0.0" x2="34.0" y1="10.000000000000002" y2="10.000000000000002"/> + <line stroke="#000000" x1="0.0" x2="0.0" y1="0.0" y2="10.000000000000002"/> + <line stroke="#000000" x1="34.0" x2="0.0" y1="0.0" y2="0.0"/> + <line stroke="#000000" x1="34.0" x2="34.0" y1="10.000000000000002" y2="0.0"/> + <line stroke="#888888" x1="118.75000000000001" x2="118.75000000000001" y1="90.0" y2="92.50000000000001"/> + <line stroke="#888888" x1="118.75000000000001" x2="116.25000000000001" y1="92.50000000000001" y2="90.0"/> + <line stroke="#888888" x1="116.25000000000001" x2="116.25000000000001" y1="90.0" y2="82.0"/> + <line stroke="#888888" x1="116.25000000000001" x2="118.75000000000001" y1="82.0" y2="79.5"/> + <line stroke="#888888" x1="118.75000000000001" x2="118.75000000000001" y1="79.5" y2="82.0"/> + <line stroke="#888888" x1="11.08333333333333" x2="22.916666666666668" y1="90.25000000000001" y2="90.25000000000001"/> + <line stroke="#888888" x1="22.916666666666668" x2="22.916666666666668" y1="90.25000000000001" y2="90.75000000000001"/> + <line stroke="#888888" x1="22.916666666666668" x2="11.08333333333333" y1="90.75000000000001" y2="90.75000000000001"/> + <line stroke="#888888" x1="11.08333333333333" x2="11.08333333333333" y1="90.75000000000001" y2="90.25000000000001"/> + <line stroke="#888888" x1="23.000000000000004" x2="23.000000000000004" y1="55.00000000000001" y2="59.00000000000001"/> + <line stroke="#888888" x1="23.000000000000004" x2="11.000000000000002" y1="59.00000000000001" y2="59.00000000000001"/> + <line stroke="#888888" x1="11.000000000000002" x2="11.000000000000002" y1="59.00000000000001" y2="55.00000000000001"/> + <line stroke="#888888" x1="11.000000000000002" x2="23.000000000000004" y1="55.00000000000001" y2="55.00000000000001"/> + <line stroke="#888888" x1="21.500000000000004" x2="21.500000000000004" y1="67.00000000000001" y2="71.00000000000001"/> + <line stroke="#888888" x1="21.500000000000004" x2="12.5" y1="71.00000000000001" y2="71.00000000000001"/> + <line stroke="#888888" x1="12.5" x2="12.5" y1="71.00000000000001" y2="67.00000000000001"/> + <line stroke="#888888" x1="12.5" x2="21.500000000000004" y1="67.00000000000001" y2="67.00000000000001"/> + <line stroke="#888888" x1="23.000000000000004" x2="23.000000000000004" y1="30.500000000000004" y2="53.5"/> + <line stroke="#888888" x1="23.000000000000004" x2="11.000000000000002" y1="53.5" y2="53.5"/> + <line stroke="#888888" x1="11.000000000000002" x2="11.000000000000002" y1="53.5" y2="30.500000000000004"/> + <line stroke="#888888" x1="11.000000000000002" x2="23.000000000000004" y1="30.500000000000004" y2="30.500000000000004"/> + <line stroke="#888888" x1="23.000000000000004" x2="23.000000000000004" y1="25.0" y2="29.0"/> + <line stroke="#888888" x1="23.000000000000004" x2="11.000000000000002" y1="29.0" y2="29.0"/> + <line stroke="#888888" x1="11.000000000000002" x2="11.000000000000002" y1="29.0" y2="25.0"/> + <line stroke="#888888" x1="11.000000000000002" x2="23.000000000000004" y1="25.0" y2="25.0"/> + <line stroke="#888888" x1="22.666666666666668" x2="22.666666666666668" y1="2.5000000000000004" y2="7.500000000000001"/> + <line stroke="#888888" x1="22.666666666666668" x2="11.33333333333333" y1="7.500000000000001" y2="7.500000000000001"/> + <line stroke="#888888" x1="11.33333333333333" x2="11.33333333333333" y1="7.500000000000001" y2="2.5000000000000004"/> + <line stroke="#000000" x1="200.0" x2="164.0" y1="74.0" y2="74.0"/> + <line opacity="0.5" stroke="#ff0000" x1="200.0" x2="200.0" y1="74.0" y2="98.00000000000001"/> + <line stroke="#000000" x1="164.0" x2="200.0" y1="98.00000000000001" y2="98.00000000000001"/> + <line stroke="#000000" x1="200.0" x2="245.00000000000003" y1="98.00000000000001" y2="98.00000000000001"/> + <line stroke="#000000" x1="245.00000000000003" x2="200.0" y1="74.0" y2="74.0"/> + <line stroke="#000000" x1="245.00000000000003" x2="245.00000000000003" y1="98.00000000000001" y2="74.0"/> + <line stroke="#000000" x1="130.0" x2="130.0" y1="74.0" y2="98.00000000000001"/> + <line stroke="#000000" x1="164.0" x2="130.0" y1="74.0" y2="74.0"/> + <line opacity="0.5" stroke="#0000ff" x1="130.0" x2="164.0" y1="98.00000000000001" y2="98.00000000000001"/> + <line stroke="#000000" x1="130.0" x2="130.0" y1="98.00000000000001" y2="118.00000000000001"/> + <line stroke="#000000" x1="164.0" x2="164.0" y1="118.00000000000001" y2="98.00000000000001"/> + <line opacity="0.5" stroke="#0000ff" x1="130.0" x2="164.0" y1="118.00000000000001" y2="118.00000000000001"/> + <line stroke="#000000" x1="130.0" x2="130.0" y1="118.00000000000001" y2="142.00000000000003"/> + <line stroke="#000000" x1="164.0" x2="164.0" y1="142.00000000000003" y2="118.00000000000001"/> + <line opacity="0.5" stroke="#0000ff" x1="130.0" x2="164.0" y1="142.00000000000003" y2="142.00000000000003"/> + <line stroke="#000000" x1="130.0" x2="130.0" y1="142.00000000000003" y2="162.00000000000003"/> + <line stroke="#000000" x1="164.0" x2="164.0" y1="162.00000000000003" y2="142.00000000000003"/> + <line opacity="0.5" stroke="#0000ff" x1="164.0" x2="130.0" y1="162.00000000000003" y2="162.00000000000003"/> + <line stroke="#000000" x1="164.0" x2="164.0" y1="172.00000000000003" y2="162.00000000000003"/> + <line stroke="#000000" x1="130.0" x2="164.0" y1="172.00000000000003" y2="172.00000000000003"/> + <line stroke="#000000" x1="130.0" x2="130.0" y1="162.00000000000003" y2="172.00000000000003"/> + <line stroke="#888888" x1="241.00000000000003" x2="241.00000000000003" y1="90.25000000000001" y2="81.75"/> + <line stroke="#888888" x1="241.00000000000003" x2="241.50000000000003" y1="81.75" y2="81.75"/> + <line stroke="#888888" x1="241.50000000000003" x2="241.50000000000003" y1="81.75" y2="90.25000000000001"/> + <line stroke="#888888" x1="241.50000000000003" x2="241.00000000000003" y1="90.25000000000001" y2="90.25000000000001"/> + <line stroke="#888888" x1="152.91666666666669" x2="141.08333333333334" y1="81.75" y2="81.75"/> + <line stroke="#888888" x1="141.08333333333334" x2="141.08333333333334" y1="81.75" y2="81.25000000000001"/> + <line stroke="#888888" x1="141.08333333333334" x2="152.91666666666669" y1="81.25000000000001" y2="81.25000000000001"/> + <line stroke="#888888" x1="152.91666666666669" x2="152.91666666666669" y1="81.25000000000001" y2="81.75"/> + <line stroke="#888888" x1="141.0" x2="141.0" y1="117.00000000000001" y2="113.00000000000001"/> + <line stroke="#888888" x1="141.0" x2="153.00000000000003" y1="113.00000000000001" y2="113.00000000000001"/> + <line stroke="#888888" x1="153.00000000000003" x2="153.00000000000003" y1="113.00000000000001" y2="117.00000000000001"/> + <line stroke="#888888" x1="153.00000000000003" x2="141.0" y1="117.00000000000001" y2="117.00000000000001"/> + <line stroke="#888888" x1="142.50000000000003" x2="142.50000000000003" y1="105.00000000000001" y2="101.00000000000001"/> + <line stroke="#888888" x1="142.50000000000003" x2="151.50000000000003" y1="101.00000000000001" y2="101.00000000000001"/> + <line stroke="#888888" x1="151.50000000000003" x2="151.50000000000003" y1="101.00000000000001" y2="105.00000000000001"/> + <line stroke="#888888" x1="151.50000000000003" x2="142.50000000000003" y1="105.00000000000001" y2="105.00000000000001"/> + <line stroke="#888888" x1="141.0" x2="141.0" y1="141.5" y2="118.50000000000001"/> + <line stroke="#888888" x1="141.0" x2="153.00000000000003" y1="118.50000000000001" y2="118.50000000000001"/> + <line stroke="#888888" x1="153.00000000000003" x2="153.00000000000003" y1="118.50000000000001" y2="141.5"/> + <line stroke="#888888" x1="153.00000000000003" x2="141.0" y1="141.5" y2="141.5"/> + <line stroke="#888888" x1="141.0" x2="141.0" y1="147.00000000000003" y2="143.0"/> + <line stroke="#888888" x1="141.0" x2="153.00000000000003" y1="143.0" y2="143.0"/> + <line stroke="#888888" x1="153.00000000000003" x2="153.00000000000003" y1="143.0" y2="147.00000000000003"/> + <line stroke="#888888" x1="153.00000000000003" x2="141.0" y1="147.00000000000003" y2="147.00000000000003"/> + <line stroke="#888888" x1="141.33333333333334" x2="141.33333333333334" y1="169.50000000000003" y2="164.50000000000003"/> + <line stroke="#888888" x1="141.33333333333334" x2="152.66666666666666" y1="164.50000000000003" y2="164.50000000000003"/> + <line stroke="#888888" x1="152.66666666666666" x2="152.66666666666666" y1="164.50000000000003" y2="169.50000000000003"/> +</svg> diff --git a/rocolib/output/DoubleServoMount/graph-autofold-default.dxf b/rocolib/output/DoubleServoMount/graph-autofold-default.dxf new file mode 100644 index 0000000000000000000000000000000000000000..e5f04d7ab57ec36438b2f8c35325fe976456952e --- /dev/null +++ b/rocolib/output/DoubleServoMount/graph-autofold-default.dxf @@ -0,0 +1,2774 @@ + 0 +SECTION + 2 +HEADER + 9 +$ACADVER + 1 +AC1009 + 9 +$INSBASE + 10 +0.0 + 20 +0.0 + 30 +0.0 + 9 +$EXTMIN + 10 +0.0 + 20 +0.0 + 30 +0.0 + 9 +$EXTMAX + 10 +100.0 + 20 +100.0 + 30 +0.0 + 9 +$UNITMODE + 70 +0 + 9 +$AUNITS + 70 +0 + 9 +$ANGBASE + 50 +0.0 + 9 +$ANGDIR + 70 +0 + 0 +ENDSEC + 0 +SECTION + 2 +TABLES + 0 +TABLE + 2 +LTYPE + 70 +20 + 0 +LTYPE + 2 +CONTINUOUS + 70 +0 + 3 +Solid + 72 +65 + 73 +0 + 40 +0.0 + 0 +LTYPE + 2 +CENTER + 70 +0 + 3 +Center ____ _ ____ _ ____ _ ____ _ ____ _ ____ + 72 +65 + 73 +4 + 40 +2.0 + 49 +1.25 + 49 +-0.25 + 49 +0.25 + 49 +-0.25 + 0 +LTYPE + 2 +CENTERX2 + 70 +0 + 3 +Center (2x) ________ __ ________ __ ________ + 72 +65 + 73 +4 + 40 +3.5 + 49 +2.5 + 49 +-0.25 + 49 +0.5 + 49 +-0.25 + 0 +LTYPE + 2 +CENTER2 + 70 +0 + 3 +Center (.5x) ____ _ ____ _ ____ _ ____ _ ____ + 72 +65 + 73 +4 + 40 +1.0 + 49 +0.625 + 49 +-0.125 + 49 +0.125 + 49 +-0.125 + 0 +LTYPE + 2 +DASHED + 70 +0 + 3 +Dashed __ __ __ __ __ __ __ __ __ __ __ __ __ _ + 72 +65 + 73 +2 + 40 +0.6 + 49 +0.5 + 49 +-0.1 + 0 +LTYPE + 2 +DASHEDX2 + 70 +0 + 3 +Dashed (2x) ____ ____ ____ ____ ____ ____ + 72 +65 + 73 +2 + 40 +1.2 + 49 +1.0 + 49 +-0.2 + 0 +LTYPE + 2 +DASHED2 + 70 +0 + 3 +Dashed (.5x) _ _ _ _ _ _ _ _ _ _ _ _ _ _ + 72 +65 + 73 +2 + 40 +0.3 + 49 +0.25 + 49 +-0.05 + 0 +LTYPE + 2 +PHANTOM + 70 +0 + 3 +Phantom ______ __ __ ______ __ __ ______ + 72 +65 + 73 +6 + 40 +2.5 + 49 +1.25 + 49 +-0.25 + 49 +0.25 + 49 +-0.25 + 49 +0.25 + 49 +-0.25 + 0 +LTYPE + 2 +PHANTOMX2 + 70 +0 + 3 +Phantom (2x)____________ ____ ____ ____________ + 72 +65 + 73 +6 + 40 +4.25 + 49 +2.5 + 49 +-0.25 + 49 +0.5 + 49 +-0.25 + 49 +0.5 + 49 +-0.25 + 0 +LTYPE + 2 +PHANTOM2 + 70 +0 + 3 +Phantom (.5x) ___ _ _ ___ _ _ ___ _ _ ___ _ _ ___ + 72 +65 + 73 +6 + 40 +1.25 + 49 +0.625 + 49 +-0.125 + 49 +0.125 + 49 +-0.125 + 49 +0.125 + 49 +-0.125 + 0 +LTYPE + 2 +DASHDOT + 70 +0 + 3 +Dash dot __ . __ . __ . __ . __ . __ . __ . __ + 72 +65 + 73 +4 + 40 +1.4 + 49 +1.0 + 49 +-0.2 + 49 +0.0 + 49 +-0.2 + 0 +LTYPE + 2 +DASHDOTX2 + 70 +0 + 3 +Dash dot (2x) ____ . ____ . ____ . ____ + 72 +65 + 73 +4 + 40 +2.4 + 49 +2.0 + 49 +-0.2 + 49 +0.0 + 49 +-0.2 + 0 +LTYPE + 2 +DASHDOT2 + 70 +0 + 3 +Dash dot (.5x) _ . _ . _ . _ . _ . _ . _ . _ + 72 +65 + 73 +4 + 40 +0.7 + 49 +0.5 + 49 +-0.1 + 49 +0.0 + 49 +-0.1 + 0 +LTYPE + 2 +DOT + 70 +0 + 3 +Dot . . . . . . . . . . . . . . . . + 72 +65 + 73 +2 + 40 +0.2 + 49 +0.0 + 49 +-0.2 + 0 +LTYPE + 2 +DOTX2 + 70 +0 + 3 +Dot (2x) . . . . . . . . + 72 +65 + 73 +2 + 40 +0.4 + 49 +0.0 + 49 +-0.4 + 0 +LTYPE + 2 +DOT2 + 70 +0 + 3 +Dot (.5) . . . . . . . . . . . . . . . . . . . + 72 +65 + 73 +2 + 40 +0.1 + 49 +0.0 + 49 +-0.1 + 0 +LTYPE + 2 +DIVIDE + 70 +0 + 3 +Divide __ . . __ . . __ . . __ . . __ . . __ + 72 +65 + 73 +6 + 40 +1.6 + 49 +1.0 + 49 +-0.2 + 49 +0.0 + 49 +-0.2 + 49 +0.0 + 49 +-0.2 + 0 +LTYPE + 2 +DIVIDEX2 + 70 +0 + 3 +Divide (2x) ____ . . ____ . . ____ . . ____ + 72 +65 + 73 +6 + 40 +2.6 + 49 +2.0 + 49 +-0.2 + 49 +0.0 + 49 +-0.2 + 49 +0.0 + 49 +-0.2 + 0 +LTYPE + 2 +DIVIDE2 + 70 +0 + 3 +Divide(.5x) _ . _ . _ . _ . _ . _ . _ . _ + 72 +65 + 73 +6 + 40 +0.8 + 49 +0.5 + 49 +-0.1 + 49 +0.0 + 49 +-0.1 + 49 +0.0 + 49 +-0.1 + 0 +LTYPE + 2 +DOTTED + 70 +0 + 3 + + 72 +65 + 73 +2 + 40 +1.0 + 49 +0.0 + 49 +-1.0 + 0 +ENDTAB + 0 +TABLE + 2 +LAYER + 70 +8 + 0 +LAYER + 2 +DIMENSIONS + 70 +0 + 62 +1 + 6 +CONTINUOUS + 0 +LAYER + 2 +TABLEBACKGROUND + 70 +0 + 62 +1 + 6 +CONTINUOUS + 0 +LAYER + 2 +TABLECONTENT + 70 +0 + 62 +1 + 6 +CONTINUOUS + 0 +LAYER + 2 +TABLEGRID + 70 +0 + 62 +1 + 6 +CONTINUOUS + 0 +LAYER + 2 +VIEWPORTS + 70 +0 + 62 +7 + 6 +CONTINUOUS + 0 +LAYER + 2 +0 + 70 +0 + 62 +1 + 6 +CONTINUOUS + 0 +LAYER + 2 +-90 + 70 +0 + 62 +1 + 6 +CONTINUOUS + 0 +LAYER + 2 +90 + 70 +0 + 62 +1 + 6 +CONTINUOUS + 0 +ENDTAB + 0 +TABLE + 2 +STYLE + 70 +12 + 0 +STYLE + 2 +STANDARD + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +arial.ttf + 4 + + 0 +STYLE + 2 +ARIAL + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +arial.ttf + 4 + + 0 +STYLE + 2 +ARIAL_BOLD + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +arialbd.ttf + 4 + + 0 +STYLE + 2 +ARIAL_ITALIC + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +ariali.ttf + 4 + + 0 +STYLE + 2 +ARIAL_BOLD_ITALIC + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +arialbi.ttf + 4 + + 0 +STYLE + 2 +ARIAL_BLACK + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +ariblk.ttf + 4 + + 0 +STYLE + 2 +ISOCPEUR + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +isocpeur.ttf + 4 + + 0 +STYLE + 2 +ISOCPEUR_ITALIC + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +isocpeui.ttf + 4 + + 0 +STYLE + 2 +TIMES + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +times.ttf + 4 + + 0 +STYLE + 2 +TIMES_BOLD + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +timesbd.ttf + 4 + + 0 +STYLE + 2 +TIMES_ITALIC + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +timesi.ttf + 4 + + 0 +STYLE + 2 +TIMES_BOLD_ITALIC + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +timesbi.ttf + 4 + + 0 +ENDTAB + 0 +TABLE + 2 +VIEW + 70 +0 + 0 +ENDTAB + 0 +TABLE + 2 +APPID + 70 +1 + 0 +APPID + 2 +DXFWRITE + 70 +0 + 0 +ENDTAB + 0 +TABLE + 2 +VPORT + 70 +0 + 0 +ENDTAB + 0 +TABLE + 2 +UCS + 70 +0 + 0 +ENDTAB + 0 +ENDSEC + 0 +SECTION + 2 +BLOCKS + 0 +ENDSEC + 0 +SECTION + 2 +ENTITIES + 0 +VIEWPORT + 8 +VIEWPORTS + 67 +1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +1.0 + 41 +1.0 + 68 +1 + 69 +1 +1001 +ACAD +1000 +MVIEW +1002 +{ +1070 +16 +1010 +0.0 +1020 +0.0 +1030 +0.0 +1010 +0.0 +1020 +0.0 +1030 +0.0 +1040 +0.0 +1040 +1.0 +1040 +0.0 +1040 +0.0 +1040 +50.0 +1040 +0.0 +1040 +0.0 +1070 +0 +1070 +100 +1070 +1 +1070 +3 +1070 +0 +1070 +0 +1070 +0 +1070 +0 +1040 +0.0 +1040 +0.0 +1040 +0.0 +1040 +0.1 +1040 +0.1 +1040 +0.1 +1040 +0.1 +1070 +0 +1002 +{ +1002 +} +1002 +} + 0 +LINE + 62 +5 + 8 +cut + 10 +70.00000000000001 + 20 +74.0 + 30 +0.0 + 11 +34.0 + 21 +74.0 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +-90 + 10 +70.00000000000001 + 20 +74.0 + 30 +0.0 + 11 +70.00000000000001 + 21 +98.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +34.0 + 20 +98.00000000000001 + 30 +0.0 + 11 +70.00000000000001 + 21 +98.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +70.00000000000001 + 20 +98.00000000000001 + 30 +0.0 + 11 +115.00000000000001 + 21 +98.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +115.00000000000001 + 20 +74.0 + 30 +0.0 + 11 +70.00000000000001 + 21 +74.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +120.00000000000001 + 20 +74.0 + 30 +0.0 + 11 +115.00000000000001 + 21 +74.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +120.00000000000001 + 20 +98.00000000000001 + 30 +0.0 + 11 +120.00000000000001 + 21 +74.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +115.00000000000001 + 20 +98.00000000000001 + 30 +0.0 + 11 +120.00000000000001 + 21 +98.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +0.0 + 20 +98.00000000000001 + 30 +0.0 + 11 +34.0 + 21 +98.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +0.0 + 20 +74.0 + 30 +0.0 + 11 +0.0 + 21 +98.00000000000001 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +90 + 10 +34.0 + 20 +74.0 + 30 +0.0 + 11 +0.0 + 21 +74.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +34.0 + 20 +74.0 + 30 +0.0 + 11 +34.0 + 21 +54.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +0.0 + 20 +54.00000000000001 + 30 +0.0 + 11 +0.0 + 21 +74.0 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +90 + 10 +34.0 + 20 +54.00000000000001 + 30 +0.0 + 11 +0.0 + 21 +54.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +34.0 + 20 +54.00000000000001 + 30 +0.0 + 11 +34.0 + 21 +30.000000000000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +0.0 + 20 +30.000000000000004 + 30 +0.0 + 11 +0.0 + 21 +54.00000000000001 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +90 + 10 +34.0 + 20 +30.000000000000004 + 30 +0.0 + 11 +0.0 + 21 +30.000000000000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +34.0 + 20 +30.000000000000004 + 30 +0.0 + 11 +34.0 + 21 +10.000000000000002 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +0.0 + 20 +10.000000000000002 + 30 +0.0 + 11 +0.0 + 21 +30.000000000000004 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +90 + 10 +0.0 + 20 +10.000000000000002 + 30 +0.0 + 11 +34.0 + 21 +10.000000000000002 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +0.0 + 20 +0.0 + 30 +0.0 + 11 +0.0 + 21 +10.000000000000002 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +34.0 + 20 +0.0 + 30 +0.0 + 11 +0.0 + 21 +0.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +34.0 + 20 +10.000000000000002 + 30 +0.0 + 11 +34.0 + 21 +0.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +118.75000000000001 + 20 +90.0 + 30 +0.0 + 11 +118.75000000000001 + 21 +92.50000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +118.75000000000001 + 20 +92.50000000000001 + 30 +0.0 + 11 +116.25000000000001 + 21 +90.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +116.25000000000001 + 20 +90.0 + 30 +0.0 + 11 +116.25000000000001 + 21 +82.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +116.25000000000001 + 20 +82.0 + 30 +0.0 + 11 +118.75000000000001 + 21 +79.5 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +118.75000000000001 + 20 +79.5 + 30 +0.0 + 11 +118.75000000000001 + 21 +82.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +11.08333333333333 + 20 +90.25000000000001 + 30 +0.0 + 11 +22.916666666666668 + 21 +90.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +22.916666666666668 + 20 +90.25000000000001 + 30 +0.0 + 11 +22.916666666666668 + 21 +90.75000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +22.916666666666668 + 20 +90.75000000000001 + 30 +0.0 + 11 +11.08333333333333 + 21 +90.75000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +11.08333333333333 + 20 +90.75000000000001 + 30 +0.0 + 11 +11.08333333333333 + 21 +90.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +23.000000000000004 + 20 +55.00000000000001 + 30 +0.0 + 11 +23.000000000000004 + 21 +59.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +23.000000000000004 + 20 +59.00000000000001 + 30 +0.0 + 11 +11.000000000000002 + 21 +59.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +11.000000000000002 + 20 +59.00000000000001 + 30 +0.0 + 11 +11.000000000000002 + 21 +55.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +11.000000000000002 + 20 +55.00000000000001 + 30 +0.0 + 11 +23.000000000000004 + 21 +55.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +21.500000000000004 + 20 +67.00000000000001 + 30 +0.0 + 11 +21.500000000000004 + 21 +71.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +21.500000000000004 + 20 +71.00000000000001 + 30 +0.0 + 11 +12.5 + 21 +71.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +12.5 + 20 +71.00000000000001 + 30 +0.0 + 11 +12.5 + 21 +67.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +12.5 + 20 +67.00000000000001 + 30 +0.0 + 11 +21.500000000000004 + 21 +67.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +23.000000000000004 + 20 +30.500000000000004 + 30 +0.0 + 11 +23.000000000000004 + 21 +53.5 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +23.000000000000004 + 20 +53.5 + 30 +0.0 + 11 +11.000000000000002 + 21 +53.5 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +11.000000000000002 + 20 +53.5 + 30 +0.0 + 11 +11.000000000000002 + 21 +30.500000000000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +11.000000000000002 + 20 +30.500000000000004 + 30 +0.0 + 11 +23.000000000000004 + 21 +30.500000000000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +23.000000000000004 + 20 +25.0 + 30 +0.0 + 11 +23.000000000000004 + 21 +29.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +23.000000000000004 + 20 +29.0 + 30 +0.0 + 11 +11.000000000000002 + 21 +29.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +11.000000000000002 + 20 +29.0 + 30 +0.0 + 11 +11.000000000000002 + 21 +25.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +11.000000000000002 + 20 +25.0 + 30 +0.0 + 11 +23.000000000000004 + 21 +25.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +22.666666666666668 + 20 +2.5000000000000004 + 30 +0.0 + 11 +22.666666666666668 + 21 +7.500000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +22.666666666666668 + 20 +7.500000000000001 + 30 +0.0 + 11 +11.33333333333333 + 21 +7.500000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +11.33333333333333 + 20 +7.500000000000001 + 30 +0.0 + 11 +11.33333333333333 + 21 +2.5000000000000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +200.0 + 20 +74.0 + 30 +0.0 + 11 +164.0 + 21 +74.0 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +-90 + 10 +200.0 + 20 +74.0 + 30 +0.0 + 11 +200.0 + 21 +98.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +164.0 + 20 +98.00000000000001 + 30 +0.0 + 11 +200.0 + 21 +98.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +200.0 + 20 +98.00000000000001 + 30 +0.0 + 11 +245.00000000000003 + 21 +98.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +245.00000000000003 + 20 +74.0 + 30 +0.0 + 11 +200.0 + 21 +74.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +245.00000000000003 + 20 +98.00000000000001 + 30 +0.0 + 11 +245.00000000000003 + 21 +74.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +130.0 + 20 +74.0 + 30 +0.0 + 11 +130.0 + 21 +98.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +164.0 + 20 +74.0 + 30 +0.0 + 11 +130.0 + 21 +74.0 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +90 + 10 +130.0 + 20 +98.00000000000001 + 30 +0.0 + 11 +164.0 + 21 +98.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +130.0 + 20 +98.00000000000001 + 30 +0.0 + 11 +130.0 + 21 +118.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +164.0 + 20 +118.00000000000001 + 30 +0.0 + 11 +164.0 + 21 +98.00000000000001 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +90 + 10 +130.0 + 20 +118.00000000000001 + 30 +0.0 + 11 +164.0 + 21 +118.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +130.0 + 20 +118.00000000000001 + 30 +0.0 + 11 +130.0 + 21 +142.00000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +164.0 + 20 +142.00000000000003 + 30 +0.0 + 11 +164.0 + 21 +118.00000000000001 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +90 + 10 +130.0 + 20 +142.00000000000003 + 30 +0.0 + 11 +164.0 + 21 +142.00000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +130.0 + 20 +142.00000000000003 + 30 +0.0 + 11 +130.0 + 21 +162.00000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +164.0 + 20 +162.00000000000003 + 30 +0.0 + 11 +164.0 + 21 +142.00000000000003 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +90 + 10 +164.0 + 20 +162.00000000000003 + 30 +0.0 + 11 +130.0 + 21 +162.00000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +164.0 + 20 +172.00000000000003 + 30 +0.0 + 11 +164.0 + 21 +162.00000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +130.0 + 20 +172.00000000000003 + 30 +0.0 + 11 +164.0 + 21 +172.00000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +130.0 + 20 +162.00000000000003 + 30 +0.0 + 11 +130.0 + 21 +172.00000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +241.00000000000003 + 20 +90.25000000000001 + 30 +0.0 + 11 +241.00000000000003 + 21 +81.75 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +241.00000000000003 + 20 +81.75 + 30 +0.0 + 11 +241.50000000000003 + 21 +81.75 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +241.50000000000003 + 20 +81.75 + 30 +0.0 + 11 +241.50000000000003 + 21 +90.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +241.50000000000003 + 20 +90.25000000000001 + 30 +0.0 + 11 +241.00000000000003 + 21 +90.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +152.91666666666669 + 20 +81.75 + 30 +0.0 + 11 +141.08333333333334 + 21 +81.75 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +141.08333333333334 + 20 +81.75 + 30 +0.0 + 11 +141.08333333333334 + 21 +81.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +141.08333333333334 + 20 +81.25000000000001 + 30 +0.0 + 11 +152.91666666666669 + 21 +81.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +152.91666666666669 + 20 +81.25000000000001 + 30 +0.0 + 11 +152.91666666666669 + 21 +81.75 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +141.0 + 20 +117.00000000000001 + 30 +0.0 + 11 +141.0 + 21 +113.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +141.0 + 20 +113.00000000000001 + 30 +0.0 + 11 +153.00000000000003 + 21 +113.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +153.00000000000003 + 20 +113.00000000000001 + 30 +0.0 + 11 +153.00000000000003 + 21 +117.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +153.00000000000003 + 20 +117.00000000000001 + 30 +0.0 + 11 +141.0 + 21 +117.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +142.50000000000003 + 20 +105.00000000000001 + 30 +0.0 + 11 +142.50000000000003 + 21 +101.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +142.50000000000003 + 20 +101.00000000000001 + 30 +0.0 + 11 +151.50000000000003 + 21 +101.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +151.50000000000003 + 20 +101.00000000000001 + 30 +0.0 + 11 +151.50000000000003 + 21 +105.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +151.50000000000003 + 20 +105.00000000000001 + 30 +0.0 + 11 +142.50000000000003 + 21 +105.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +141.0 + 20 +141.5 + 30 +0.0 + 11 +141.0 + 21 +118.50000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +141.0 + 20 +118.50000000000001 + 30 +0.0 + 11 +153.00000000000003 + 21 +118.50000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +153.00000000000003 + 20 +118.50000000000001 + 30 +0.0 + 11 +153.00000000000003 + 21 +141.5 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +153.00000000000003 + 20 +141.5 + 30 +0.0 + 11 +141.0 + 21 +141.5 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +141.0 + 20 +147.00000000000003 + 30 +0.0 + 11 +141.0 + 21 +143.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +141.0 + 20 +143.0 + 30 +0.0 + 11 +153.00000000000003 + 21 +143.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +153.00000000000003 + 20 +143.0 + 30 +0.0 + 11 +153.00000000000003 + 21 +147.00000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +153.00000000000003 + 20 +147.00000000000003 + 30 +0.0 + 11 +141.0 + 21 +147.00000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +141.33333333333334 + 20 +169.50000000000003 + 30 +0.0 + 11 +141.33333333333334 + 21 +164.50000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +141.33333333333334 + 20 +164.50000000000003 + 30 +0.0 + 11 +152.66666666666666 + 21 +164.50000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +152.66666666666666 + 20 +164.50000000000003 + 30 +0.0 + 11 +152.66666666666666 + 21 +169.50000000000003 + 31 +0.0 + 0 +ENDSEC + 0 +EOF diff --git a/rocolib/output/DoubleServoMount/graph-autofold-graph.dxf b/rocolib/output/DoubleServoMount/graph-autofold-graph.dxf new file mode 100644 index 0000000000000000000000000000000000000000..8fd79cba12e47f4ed73c32c715b6fb226d5c0417 --- /dev/null +++ b/rocolib/output/DoubleServoMount/graph-autofold-graph.dxf @@ -0,0 +1,2744 @@ + 0 +SECTION + 2 +HEADER + 9 +$ACADVER + 1 +AC1009 + 9 +$INSBASE + 10 +0.0 + 20 +0.0 + 30 +0.0 + 9 +$EXTMIN + 10 +0.0 + 20 +0.0 + 30 +0.0 + 9 +$EXTMAX + 10 +100.0 + 20 +100.0 + 30 +0.0 + 9 +$UNITMODE + 70 +0 + 9 +$AUNITS + 70 +0 + 9 +$ANGBASE + 50 +0.0 + 9 +$ANGDIR + 70 +0 + 0 +ENDSEC + 0 +SECTION + 2 +TABLES + 0 +TABLE + 2 +LTYPE + 70 +20 + 0 +LTYPE + 2 +CONTINUOUS + 70 +0 + 3 +Solid + 72 +65 + 73 +0 + 40 +0.0 + 0 +LTYPE + 2 +CENTER + 70 +0 + 3 +Center ____ _ ____ _ ____ _ ____ _ ____ _ ____ + 72 +65 + 73 +4 + 40 +2.0 + 49 +1.25 + 49 +-0.25 + 49 +0.25 + 49 +-0.25 + 0 +LTYPE + 2 +CENTERX2 + 70 +0 + 3 +Center (2x) ________ __ ________ __ ________ + 72 +65 + 73 +4 + 40 +3.5 + 49 +2.5 + 49 +-0.25 + 49 +0.5 + 49 +-0.25 + 0 +LTYPE + 2 +CENTER2 + 70 +0 + 3 +Center (.5x) ____ _ ____ _ ____ _ ____ _ ____ + 72 +65 + 73 +4 + 40 +1.0 + 49 +0.625 + 49 +-0.125 + 49 +0.125 + 49 +-0.125 + 0 +LTYPE + 2 +DASHED + 70 +0 + 3 +Dashed __ __ __ __ __ __ __ __ __ __ __ __ __ _ + 72 +65 + 73 +2 + 40 +0.6 + 49 +0.5 + 49 +-0.1 + 0 +LTYPE + 2 +DASHEDX2 + 70 +0 + 3 +Dashed (2x) ____ ____ ____ ____ ____ ____ + 72 +65 + 73 +2 + 40 +1.2 + 49 +1.0 + 49 +-0.2 + 0 +LTYPE + 2 +DASHED2 + 70 +0 + 3 +Dashed (.5x) _ _ _ _ _ _ _ _ _ _ _ _ _ _ + 72 +65 + 73 +2 + 40 +0.3 + 49 +0.25 + 49 +-0.05 + 0 +LTYPE + 2 +PHANTOM + 70 +0 + 3 +Phantom ______ __ __ ______ __ __ ______ + 72 +65 + 73 +6 + 40 +2.5 + 49 +1.25 + 49 +-0.25 + 49 +0.25 + 49 +-0.25 + 49 +0.25 + 49 +-0.25 + 0 +LTYPE + 2 +PHANTOMX2 + 70 +0 + 3 +Phantom (2x)____________ ____ ____ ____________ + 72 +65 + 73 +6 + 40 +4.25 + 49 +2.5 + 49 +-0.25 + 49 +0.5 + 49 +-0.25 + 49 +0.5 + 49 +-0.25 + 0 +LTYPE + 2 +PHANTOM2 + 70 +0 + 3 +Phantom (.5x) ___ _ _ ___ _ _ ___ _ _ ___ _ _ ___ + 72 +65 + 73 +6 + 40 +1.25 + 49 +0.625 + 49 +-0.125 + 49 +0.125 + 49 +-0.125 + 49 +0.125 + 49 +-0.125 + 0 +LTYPE + 2 +DASHDOT + 70 +0 + 3 +Dash dot __ . __ . __ . __ . __ . __ . __ . __ + 72 +65 + 73 +4 + 40 +1.4 + 49 +1.0 + 49 +-0.2 + 49 +0.0 + 49 +-0.2 + 0 +LTYPE + 2 +DASHDOTX2 + 70 +0 + 3 +Dash dot (2x) ____ . ____ . ____ . ____ + 72 +65 + 73 +4 + 40 +2.4 + 49 +2.0 + 49 +-0.2 + 49 +0.0 + 49 +-0.2 + 0 +LTYPE + 2 +DASHDOT2 + 70 +0 + 3 +Dash dot (.5x) _ . _ . _ . _ . _ . _ . _ . _ + 72 +65 + 73 +4 + 40 +0.7 + 49 +0.5 + 49 +-0.1 + 49 +0.0 + 49 +-0.1 + 0 +LTYPE + 2 +DOT + 70 +0 + 3 +Dot . . . . . . . . . . . . . . . . + 72 +65 + 73 +2 + 40 +0.2 + 49 +0.0 + 49 +-0.2 + 0 +LTYPE + 2 +DOTX2 + 70 +0 + 3 +Dot (2x) . . . . . . . . + 72 +65 + 73 +2 + 40 +0.4 + 49 +0.0 + 49 +-0.4 + 0 +LTYPE + 2 +DOT2 + 70 +0 + 3 +Dot (.5) . . . . . . . . . . . . . . . . . . . + 72 +65 + 73 +2 + 40 +0.1 + 49 +0.0 + 49 +-0.1 + 0 +LTYPE + 2 +DIVIDE + 70 +0 + 3 +Divide __ . . __ . . __ . . __ . . __ . . __ + 72 +65 + 73 +6 + 40 +1.6 + 49 +1.0 + 49 +-0.2 + 49 +0.0 + 49 +-0.2 + 49 +0.0 + 49 +-0.2 + 0 +LTYPE + 2 +DIVIDEX2 + 70 +0 + 3 +Divide (2x) ____ . . ____ . . ____ . . ____ + 72 +65 + 73 +6 + 40 +2.6 + 49 +2.0 + 49 +-0.2 + 49 +0.0 + 49 +-0.2 + 49 +0.0 + 49 +-0.2 + 0 +LTYPE + 2 +DIVIDE2 + 70 +0 + 3 +Divide(.5x) _ . _ . _ . _ . _ . _ . _ . _ + 72 +65 + 73 +6 + 40 +0.8 + 49 +0.5 + 49 +-0.1 + 49 +0.0 + 49 +-0.1 + 49 +0.0 + 49 +-0.1 + 0 +LTYPE + 2 +DOTTED + 70 +0 + 3 + + 72 +65 + 73 +2 + 40 +1.0 + 49 +0.0 + 49 +-1.0 + 0 +ENDTAB + 0 +TABLE + 2 +LAYER + 70 +5 + 0 +LAYER + 2 +DIMENSIONS + 70 +0 + 62 +1 + 6 +CONTINUOUS + 0 +LAYER + 2 +TABLEBACKGROUND + 70 +0 + 62 +1 + 6 +CONTINUOUS + 0 +LAYER + 2 +TABLECONTENT + 70 +0 + 62 +1 + 6 +CONTINUOUS + 0 +LAYER + 2 +TABLEGRID + 70 +0 + 62 +1 + 6 +CONTINUOUS + 0 +LAYER + 2 +VIEWPORTS + 70 +0 + 62 +7 + 6 +CONTINUOUS + 0 +ENDTAB + 0 +TABLE + 2 +STYLE + 70 +12 + 0 +STYLE + 2 +STANDARD + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +arial.ttf + 4 + + 0 +STYLE + 2 +ARIAL + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +arial.ttf + 4 + + 0 +STYLE + 2 +ARIAL_BOLD + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +arialbd.ttf + 4 + + 0 +STYLE + 2 +ARIAL_ITALIC + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +ariali.ttf + 4 + + 0 +STYLE + 2 +ARIAL_BOLD_ITALIC + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +arialbi.ttf + 4 + + 0 +STYLE + 2 +ARIAL_BLACK + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +ariblk.ttf + 4 + + 0 +STYLE + 2 +ISOCPEUR + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +isocpeur.ttf + 4 + + 0 +STYLE + 2 +ISOCPEUR_ITALIC + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +isocpeui.ttf + 4 + + 0 +STYLE + 2 +TIMES + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +times.ttf + 4 + + 0 +STYLE + 2 +TIMES_BOLD + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +timesbd.ttf + 4 + + 0 +STYLE + 2 +TIMES_ITALIC + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +timesi.ttf + 4 + + 0 +STYLE + 2 +TIMES_BOLD_ITALIC + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +timesbi.ttf + 4 + + 0 +ENDTAB + 0 +TABLE + 2 +VIEW + 70 +0 + 0 +ENDTAB + 0 +TABLE + 2 +APPID + 70 +1 + 0 +APPID + 2 +DXFWRITE + 70 +0 + 0 +ENDTAB + 0 +TABLE + 2 +VPORT + 70 +0 + 0 +ENDTAB + 0 +TABLE + 2 +UCS + 70 +0 + 0 +ENDTAB + 0 +ENDSEC + 0 +SECTION + 2 +BLOCKS + 0 +ENDSEC + 0 +SECTION + 2 +ENTITIES + 0 +VIEWPORT + 8 +VIEWPORTS + 67 +1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +1.0 + 41 +1.0 + 68 +1 + 69 +1 +1001 +ACAD +1000 +MVIEW +1002 +{ +1070 +16 +1010 +0.0 +1020 +0.0 +1030 +0.0 +1010 +0.0 +1020 +0.0 +1030 +0.0 +1040 +0.0 +1040 +1.0 +1040 +0.0 +1040 +0.0 +1040 +50.0 +1040 +0.0 +1040 +0.0 +1070 +0 +1070 +100 +1070 +1 +1070 +3 +1070 +0 +1070 +0 +1070 +0 +1070 +0 +1040 +0.0 +1040 +0.0 +1040 +0.0 +1040 +0.1 +1040 +0.1 +1040 +0.1 +1040 +0.1 +1070 +0 +1002 +{ +1002 +} +1002 +} + 0 +LINE + 62 +5 + 8 +0 + 10 +70.00000000000001 + 20 +74.0 + 30 +0.0 + 11 +34.0 + 21 +74.0 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +70.00000000000001 + 20 +74.0 + 30 +0.0 + 11 +70.00000000000001 + 21 +98.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +34.0 + 20 +98.00000000000001 + 30 +0.0 + 11 +70.00000000000001 + 21 +98.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +70.00000000000001 + 20 +98.00000000000001 + 30 +0.0 + 11 +115.00000000000001 + 21 +98.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +115.00000000000001 + 20 +74.0 + 30 +0.0 + 11 +70.00000000000001 + 21 +74.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +120.00000000000001 + 20 +74.0 + 30 +0.0 + 11 +115.00000000000001 + 21 +74.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +120.00000000000001 + 20 +98.00000000000001 + 30 +0.0 + 11 +120.00000000000001 + 21 +74.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +115.00000000000001 + 20 +98.00000000000001 + 30 +0.0 + 11 +120.00000000000001 + 21 +98.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +0.0 + 20 +98.00000000000001 + 30 +0.0 + 11 +34.0 + 21 +98.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +0.0 + 20 +74.0 + 30 +0.0 + 11 +0.0 + 21 +98.00000000000001 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +34.0 + 20 +74.0 + 30 +0.0 + 11 +0.0 + 21 +74.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +34.0 + 20 +74.0 + 30 +0.0 + 11 +34.0 + 21 +54.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +0.0 + 20 +54.00000000000001 + 30 +0.0 + 11 +0.0 + 21 +74.0 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +34.0 + 20 +54.00000000000001 + 30 +0.0 + 11 +0.0 + 21 +54.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +34.0 + 20 +54.00000000000001 + 30 +0.0 + 11 +34.0 + 21 +30.000000000000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +0.0 + 20 +30.000000000000004 + 30 +0.0 + 11 +0.0 + 21 +54.00000000000001 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +34.0 + 20 +30.000000000000004 + 30 +0.0 + 11 +0.0 + 21 +30.000000000000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +34.0 + 20 +30.000000000000004 + 30 +0.0 + 11 +34.0 + 21 +10.000000000000002 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +0.0 + 20 +10.000000000000002 + 30 +0.0 + 11 +0.0 + 21 +30.000000000000004 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +0.0 + 20 +10.000000000000002 + 30 +0.0 + 11 +34.0 + 21 +10.000000000000002 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 11 +0.0 + 21 +10.000000000000002 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +34.0 + 20 +0.0 + 30 +0.0 + 11 +0.0 + 21 +0.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +34.0 + 20 +10.000000000000002 + 30 +0.0 + 11 +34.0 + 21 +0.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +118.75000000000001 + 20 +90.0 + 30 +0.0 + 11 +118.75000000000001 + 21 +92.50000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +118.75000000000001 + 20 +92.50000000000001 + 30 +0.0 + 11 +116.25000000000001 + 21 +90.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +116.25000000000001 + 20 +90.0 + 30 +0.0 + 11 +116.25000000000001 + 21 +82.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +116.25000000000001 + 20 +82.0 + 30 +0.0 + 11 +118.75000000000001 + 21 +79.5 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +118.75000000000001 + 20 +79.5 + 30 +0.0 + 11 +118.75000000000001 + 21 +82.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +11.08333333333333 + 20 +90.25000000000001 + 30 +0.0 + 11 +22.916666666666668 + 21 +90.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +22.916666666666668 + 20 +90.25000000000001 + 30 +0.0 + 11 +22.916666666666668 + 21 +90.75000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +22.916666666666668 + 20 +90.75000000000001 + 30 +0.0 + 11 +11.08333333333333 + 21 +90.75000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +11.08333333333333 + 20 +90.75000000000001 + 30 +0.0 + 11 +11.08333333333333 + 21 +90.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +23.000000000000004 + 20 +55.00000000000001 + 30 +0.0 + 11 +23.000000000000004 + 21 +59.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +23.000000000000004 + 20 +59.00000000000001 + 30 +0.0 + 11 +11.000000000000002 + 21 +59.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +11.000000000000002 + 20 +59.00000000000001 + 30 +0.0 + 11 +11.000000000000002 + 21 +55.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +11.000000000000002 + 20 +55.00000000000001 + 30 +0.0 + 11 +23.000000000000004 + 21 +55.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +21.500000000000004 + 20 +67.00000000000001 + 30 +0.0 + 11 +21.500000000000004 + 21 +71.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +21.500000000000004 + 20 +71.00000000000001 + 30 +0.0 + 11 +12.5 + 21 +71.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +12.5 + 20 +71.00000000000001 + 30 +0.0 + 11 +12.5 + 21 +67.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +12.5 + 20 +67.00000000000001 + 30 +0.0 + 11 +21.500000000000004 + 21 +67.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +23.000000000000004 + 20 +30.500000000000004 + 30 +0.0 + 11 +23.000000000000004 + 21 +53.5 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +23.000000000000004 + 20 +53.5 + 30 +0.0 + 11 +11.000000000000002 + 21 +53.5 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +11.000000000000002 + 20 +53.5 + 30 +0.0 + 11 +11.000000000000002 + 21 +30.500000000000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +11.000000000000002 + 20 +30.500000000000004 + 30 +0.0 + 11 +23.000000000000004 + 21 +30.500000000000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +23.000000000000004 + 20 +25.0 + 30 +0.0 + 11 +23.000000000000004 + 21 +29.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +23.000000000000004 + 20 +29.0 + 30 +0.0 + 11 +11.000000000000002 + 21 +29.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +11.000000000000002 + 20 +29.0 + 30 +0.0 + 11 +11.000000000000002 + 21 +25.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +11.000000000000002 + 20 +25.0 + 30 +0.0 + 11 +23.000000000000004 + 21 +25.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +22.666666666666668 + 20 +2.5000000000000004 + 30 +0.0 + 11 +22.666666666666668 + 21 +7.500000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +22.666666666666668 + 20 +7.500000000000001 + 30 +0.0 + 11 +11.33333333333333 + 21 +7.500000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +11.33333333333333 + 20 +7.500000000000001 + 30 +0.0 + 11 +11.33333333333333 + 21 +2.5000000000000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +200.0 + 20 +74.0 + 30 +0.0 + 11 +164.0 + 21 +74.0 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +200.0 + 20 +74.0 + 30 +0.0 + 11 +200.0 + 21 +98.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +164.0 + 20 +98.00000000000001 + 30 +0.0 + 11 +200.0 + 21 +98.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +200.0 + 20 +98.00000000000001 + 30 +0.0 + 11 +245.00000000000003 + 21 +98.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +245.00000000000003 + 20 +74.0 + 30 +0.0 + 11 +200.0 + 21 +74.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +245.00000000000003 + 20 +98.00000000000001 + 30 +0.0 + 11 +245.00000000000003 + 21 +74.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +130.0 + 20 +74.0 + 30 +0.0 + 11 +130.0 + 21 +98.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +164.0 + 20 +74.0 + 30 +0.0 + 11 +130.0 + 21 +74.0 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +130.0 + 20 +98.00000000000001 + 30 +0.0 + 11 +164.0 + 21 +98.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +130.0 + 20 +98.00000000000001 + 30 +0.0 + 11 +130.0 + 21 +118.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +164.0 + 20 +118.00000000000001 + 30 +0.0 + 11 +164.0 + 21 +98.00000000000001 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +130.0 + 20 +118.00000000000001 + 30 +0.0 + 11 +164.0 + 21 +118.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +130.0 + 20 +118.00000000000001 + 30 +0.0 + 11 +130.0 + 21 +142.00000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +164.0 + 20 +142.00000000000003 + 30 +0.0 + 11 +164.0 + 21 +118.00000000000001 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +130.0 + 20 +142.00000000000003 + 30 +0.0 + 11 +164.0 + 21 +142.00000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +130.0 + 20 +142.00000000000003 + 30 +0.0 + 11 +130.0 + 21 +162.00000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +164.0 + 20 +162.00000000000003 + 30 +0.0 + 11 +164.0 + 21 +142.00000000000003 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +164.0 + 20 +162.00000000000003 + 30 +0.0 + 11 +130.0 + 21 +162.00000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +164.0 + 20 +172.00000000000003 + 30 +0.0 + 11 +164.0 + 21 +162.00000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +130.0 + 20 +172.00000000000003 + 30 +0.0 + 11 +164.0 + 21 +172.00000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +130.0 + 20 +162.00000000000003 + 30 +0.0 + 11 +130.0 + 21 +172.00000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +241.00000000000003 + 20 +90.25000000000001 + 30 +0.0 + 11 +241.00000000000003 + 21 +81.75 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +241.00000000000003 + 20 +81.75 + 30 +0.0 + 11 +241.50000000000003 + 21 +81.75 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +241.50000000000003 + 20 +81.75 + 30 +0.0 + 11 +241.50000000000003 + 21 +90.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +241.50000000000003 + 20 +90.25000000000001 + 30 +0.0 + 11 +241.00000000000003 + 21 +90.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +152.91666666666669 + 20 +81.75 + 30 +0.0 + 11 +141.08333333333334 + 21 +81.75 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +141.08333333333334 + 20 +81.75 + 30 +0.0 + 11 +141.08333333333334 + 21 +81.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +141.08333333333334 + 20 +81.25000000000001 + 30 +0.0 + 11 +152.91666666666669 + 21 +81.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +152.91666666666669 + 20 +81.25000000000001 + 30 +0.0 + 11 +152.91666666666669 + 21 +81.75 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +141.0 + 20 +117.00000000000001 + 30 +0.0 + 11 +141.0 + 21 +113.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +141.0 + 20 +113.00000000000001 + 30 +0.0 + 11 +153.00000000000003 + 21 +113.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +153.00000000000003 + 20 +113.00000000000001 + 30 +0.0 + 11 +153.00000000000003 + 21 +117.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +153.00000000000003 + 20 +117.00000000000001 + 30 +0.0 + 11 +141.0 + 21 +117.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +142.50000000000003 + 20 +105.00000000000001 + 30 +0.0 + 11 +142.50000000000003 + 21 +101.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +142.50000000000003 + 20 +101.00000000000001 + 30 +0.0 + 11 +151.50000000000003 + 21 +101.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +151.50000000000003 + 20 +101.00000000000001 + 30 +0.0 + 11 +151.50000000000003 + 21 +105.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +151.50000000000003 + 20 +105.00000000000001 + 30 +0.0 + 11 +142.50000000000003 + 21 +105.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +141.0 + 20 +141.5 + 30 +0.0 + 11 +141.0 + 21 +118.50000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +141.0 + 20 +118.50000000000001 + 30 +0.0 + 11 +153.00000000000003 + 21 +118.50000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +153.00000000000003 + 20 +118.50000000000001 + 30 +0.0 + 11 +153.00000000000003 + 21 +141.5 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +153.00000000000003 + 20 +141.5 + 30 +0.0 + 11 +141.0 + 21 +141.5 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +141.0 + 20 +147.00000000000003 + 30 +0.0 + 11 +141.0 + 21 +143.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +141.0 + 20 +143.0 + 30 +0.0 + 11 +153.00000000000003 + 21 +143.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +153.00000000000003 + 20 +143.0 + 30 +0.0 + 11 +153.00000000000003 + 21 +147.00000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +153.00000000000003 + 20 +147.00000000000003 + 30 +0.0 + 11 +141.0 + 21 +147.00000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +141.33333333333334 + 20 +169.50000000000003 + 30 +0.0 + 11 +141.33333333333334 + 21 +164.50000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +141.33333333333334 + 20 +164.50000000000003 + 30 +0.0 + 11 +152.66666666666666 + 21 +164.50000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +152.66666666666666 + 20 +164.50000000000003 + 30 +0.0 + 11 +152.66666666666666 + 21 +169.50000000000003 + 31 +0.0 + 0 +ENDSEC + 0 +EOF diff --git a/rocolib/output/DoubleServoMount/graph-lasercutter.svg b/rocolib/output/DoubleServoMount/graph-lasercutter.svg new file mode 100644 index 0000000000000000000000000000000000000000..3794729b567dbf4100e3e07ae885b52b31ce3445 --- /dev/null +++ b/rocolib/output/DoubleServoMount/graph-lasercutter.svg @@ -0,0 +1,103 @@ +<?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="172.000000mm" version="1.1" viewBox="0.000000 0.000000 245.000000 172.000000" width="245.000000mm"> + <defs/> + <line stroke="#000000" x1="70.00000000000001" x2="34.0" y1="74.0" y2="74.0"/> + <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="70.00000000000001" x2="70.00000000000001" y1="74.0" y2="98.00000000000001"/> + <line stroke="#000000" x1="34.0" x2="70.00000000000001" y1="98.00000000000001" y2="98.00000000000001"/> + <line stroke="#000000" x1="70.00000000000001" x2="115.00000000000001" y1="98.00000000000001" y2="98.00000000000001"/> + <line stroke="#000000" x1="115.00000000000001" x2="70.00000000000001" y1="74.0" y2="74.0"/> + <line stroke="#000000" x1="120.00000000000001" x2="115.00000000000001" y1="74.0" y2="74.0"/> + <line stroke="#000000" x1="120.00000000000001" x2="120.00000000000001" y1="98.00000000000001" y2="74.0"/> + <line stroke="#000000" x1="115.00000000000001" x2="120.00000000000001" y1="98.00000000000001" y2="98.00000000000001"/> + <line stroke="#000000" x1="0.0" x2="34.0" y1="98.00000000000001" y2="98.00000000000001"/> + <line stroke="#000000" x1="0.0" x2="0.0" y1="74.0" y2="98.00000000000001"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="34.0" x2="0.0" y1="74.0" y2="74.0"/> + <line stroke="#000000" x1="34.0" x2="34.0" y1="74.0" y2="54.00000000000001"/> + <line stroke="#000000" x1="0.0" x2="0.0" y1="54.00000000000001" y2="74.0"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="34.0" x2="0.0" y1="54.00000000000001" y2="54.00000000000001"/> + <line stroke="#000000" x1="34.0" x2="34.0" y1="54.00000000000001" y2="30.000000000000004"/> + <line stroke="#000000" x1="0.0" x2="0.0" y1="30.000000000000004" y2="54.00000000000001"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="34.0" x2="0.0" y1="30.000000000000004" y2="30.000000000000004"/> + <line stroke="#000000" x1="34.0" x2="34.0" y1="30.000000000000004" y2="10.000000000000002"/> + <line stroke="#000000" x1="0.0" x2="0.0" y1="10.000000000000002" y2="30.000000000000004"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="0.0" x2="34.0" y1="10.000000000000002" y2="10.000000000000002"/> + <line stroke="#000000" x1="0.0" x2="0.0" y1="0.0" y2="10.000000000000002"/> + <line stroke="#000000" x1="34.0" x2="0.0" y1="0.0" y2="0.0"/> + <line stroke="#000000" x1="34.0" x2="34.0" y1="10.000000000000002" y2="0.0"/> + <line stroke="#888888" x1="118.75000000000001" x2="118.75000000000001" y1="90.0" y2="92.50000000000001"/> + <line stroke="#888888" x1="118.75000000000001" x2="116.25000000000001" y1="92.50000000000001" y2="90.0"/> + <line stroke="#888888" x1="116.25000000000001" x2="116.25000000000001" y1="90.0" y2="82.0"/> + <line stroke="#888888" x1="116.25000000000001" x2="118.75000000000001" y1="82.0" y2="79.5"/> + <line stroke="#888888" x1="118.75000000000001" x2="118.75000000000001" y1="79.5" y2="82.0"/> + <line stroke="#888888" x1="11.08333333333333" x2="22.916666666666668" y1="90.25000000000001" y2="90.25000000000001"/> + <line stroke="#888888" x1="22.916666666666668" x2="22.916666666666668" y1="90.25000000000001" y2="90.75000000000001"/> + <line stroke="#888888" x1="22.916666666666668" x2="11.08333333333333" y1="90.75000000000001" y2="90.75000000000001"/> + <line stroke="#888888" x1="11.08333333333333" x2="11.08333333333333" y1="90.75000000000001" y2="90.25000000000001"/> + <line stroke="#888888" x1="23.000000000000004" x2="23.000000000000004" y1="55.00000000000001" y2="59.00000000000001"/> + <line stroke="#888888" x1="23.000000000000004" x2="11.000000000000002" y1="59.00000000000001" y2="59.00000000000001"/> + <line stroke="#888888" x1="11.000000000000002" x2="11.000000000000002" y1="59.00000000000001" y2="55.00000000000001"/> + <line stroke="#888888" x1="11.000000000000002" x2="23.000000000000004" y1="55.00000000000001" y2="55.00000000000001"/> + <line stroke="#888888" x1="21.500000000000004" x2="21.500000000000004" y1="67.00000000000001" y2="71.00000000000001"/> + <line stroke="#888888" x1="21.500000000000004" x2="12.5" y1="71.00000000000001" y2="71.00000000000001"/> + <line stroke="#888888" x1="12.5" x2="12.5" y1="71.00000000000001" y2="67.00000000000001"/> + <line stroke="#888888" x1="12.5" x2="21.500000000000004" y1="67.00000000000001" y2="67.00000000000001"/> + <line stroke="#888888" x1="23.000000000000004" x2="23.000000000000004" y1="30.500000000000004" y2="53.5"/> + <line stroke="#888888" x1="23.000000000000004" x2="11.000000000000002" y1="53.5" y2="53.5"/> + <line stroke="#888888" x1="11.000000000000002" x2="11.000000000000002" y1="53.5" y2="30.500000000000004"/> + <line stroke="#888888" x1="11.000000000000002" x2="23.000000000000004" y1="30.500000000000004" y2="30.500000000000004"/> + <line stroke="#888888" x1="23.000000000000004" x2="23.000000000000004" y1="25.0" y2="29.0"/> + <line stroke="#888888" x1="23.000000000000004" x2="11.000000000000002" y1="29.0" y2="29.0"/> + <line stroke="#888888" x1="11.000000000000002" x2="11.000000000000002" y1="29.0" y2="25.0"/> + <line stroke="#888888" x1="11.000000000000002" x2="23.000000000000004" y1="25.0" y2="25.0"/> + <line stroke="#888888" x1="22.666666666666668" x2="22.666666666666668" y1="2.5000000000000004" y2="7.500000000000001"/> + <line stroke="#888888" x1="22.666666666666668" x2="11.33333333333333" y1="7.500000000000001" y2="7.500000000000001"/> + <line stroke="#888888" x1="11.33333333333333" x2="11.33333333333333" y1="7.500000000000001" y2="2.5000000000000004"/> + <line stroke="#000000" x1="200.0" x2="164.0" y1="74.0" y2="74.0"/> + <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="200.0" x2="200.0" y1="74.0" y2="98.00000000000001"/> + <line stroke="#000000" x1="164.0" x2="200.0" y1="98.00000000000001" y2="98.00000000000001"/> + <line stroke="#000000" x1="200.0" x2="245.00000000000003" y1="98.00000000000001" y2="98.00000000000001"/> + <line stroke="#000000" x1="245.00000000000003" x2="200.0" y1="74.0" y2="74.0"/> + <line stroke="#000000" x1="245.00000000000003" x2="245.00000000000003" y1="98.00000000000001" y2="74.0"/> + <line stroke="#000000" x1="130.0" x2="130.0" y1="74.0" y2="98.00000000000001"/> + <line stroke="#000000" x1="164.0" x2="130.0" y1="74.0" y2="74.0"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="130.0" x2="164.0" y1="98.00000000000001" y2="98.00000000000001"/> + <line stroke="#000000" x1="130.0" x2="130.0" y1="98.00000000000001" y2="118.00000000000001"/> + <line stroke="#000000" x1="164.0" x2="164.0" y1="118.00000000000001" y2="98.00000000000001"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="130.0" x2="164.0" y1="118.00000000000001" y2="118.00000000000001"/> + <line stroke="#000000" x1="130.0" x2="130.0" y1="118.00000000000001" y2="142.00000000000003"/> + <line stroke="#000000" x1="164.0" x2="164.0" y1="142.00000000000003" y2="118.00000000000001"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="130.0" x2="164.0" y1="142.00000000000003" y2="142.00000000000003"/> + <line stroke="#000000" x1="130.0" x2="130.0" y1="142.00000000000003" y2="162.00000000000003"/> + <line stroke="#000000" x1="164.0" x2="164.0" y1="162.00000000000003" y2="142.00000000000003"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="164.0" x2="130.0" y1="162.00000000000003" y2="162.00000000000003"/> + <line stroke="#000000" x1="164.0" x2="164.0" y1="172.00000000000003" y2="162.00000000000003"/> + <line stroke="#000000" x1="130.0" x2="164.0" y1="172.00000000000003" y2="172.00000000000003"/> + <line stroke="#000000" x1="130.0" x2="130.0" y1="162.00000000000003" y2="172.00000000000003"/> + <line stroke="#888888" x1="241.00000000000003" x2="241.00000000000003" y1="90.25000000000001" y2="81.75"/> + <line stroke="#888888" x1="241.00000000000003" x2="241.50000000000003" y1="81.75" y2="81.75"/> + <line stroke="#888888" x1="241.50000000000003" x2="241.50000000000003" y1="81.75" y2="90.25000000000001"/> + <line stroke="#888888" x1="241.50000000000003" x2="241.00000000000003" y1="90.25000000000001" y2="90.25000000000001"/> + <line stroke="#888888" x1="152.91666666666669" x2="141.08333333333334" y1="81.75" y2="81.75"/> + <line stroke="#888888" x1="141.08333333333334" x2="141.08333333333334" y1="81.75" y2="81.25000000000001"/> + <line stroke="#888888" x1="141.08333333333334" x2="152.91666666666669" y1="81.25000000000001" y2="81.25000000000001"/> + <line stroke="#888888" x1="152.91666666666669" x2="152.91666666666669" y1="81.25000000000001" y2="81.75"/> + <line stroke="#888888" x1="141.0" x2="141.0" y1="117.00000000000001" y2="113.00000000000001"/> + <line stroke="#888888" x1="141.0" x2="153.00000000000003" y1="113.00000000000001" y2="113.00000000000001"/> + <line stroke="#888888" x1="153.00000000000003" x2="153.00000000000003" y1="113.00000000000001" y2="117.00000000000001"/> + <line stroke="#888888" x1="153.00000000000003" x2="141.0" y1="117.00000000000001" y2="117.00000000000001"/> + <line stroke="#888888" x1="142.50000000000003" x2="142.50000000000003" y1="105.00000000000001" y2="101.00000000000001"/> + <line stroke="#888888" x1="142.50000000000003" x2="151.50000000000003" y1="101.00000000000001" y2="101.00000000000001"/> + <line stroke="#888888" x1="151.50000000000003" x2="151.50000000000003" y1="101.00000000000001" y2="105.00000000000001"/> + <line stroke="#888888" x1="151.50000000000003" x2="142.50000000000003" y1="105.00000000000001" y2="105.00000000000001"/> + <line stroke="#888888" x1="141.0" x2="141.0" y1="141.5" y2="118.50000000000001"/> + <line stroke="#888888" x1="141.0" x2="153.00000000000003" y1="118.50000000000001" y2="118.50000000000001"/> + <line stroke="#888888" x1="153.00000000000003" x2="153.00000000000003" y1="118.50000000000001" y2="141.5"/> + <line stroke="#888888" x1="153.00000000000003" x2="141.0" y1="141.5" y2="141.5"/> + <line stroke="#888888" x1="141.0" x2="141.0" y1="147.00000000000003" y2="143.0"/> + <line stroke="#888888" x1="141.0" x2="153.00000000000003" y1="143.0" y2="143.0"/> + <line stroke="#888888" x1="153.00000000000003" x2="153.00000000000003" y1="143.0" y2="147.00000000000003"/> + <line stroke="#888888" x1="153.00000000000003" x2="141.0" y1="147.00000000000003" y2="147.00000000000003"/> + <line stroke="#888888" x1="141.33333333333334" x2="141.33333333333334" y1="169.50000000000003" y2="164.50000000000003"/> + <line stroke="#888888" x1="141.33333333333334" x2="152.66666666666666" y1="164.50000000000003" y2="164.50000000000003"/> + <line stroke="#888888" x1="152.66666666666666" x2="152.66666666666666" y1="164.50000000000003" y2="169.50000000000003"/> +</svg> diff --git a/rocolib/output/DoubleServoMount/graph-model.png b/rocolib/output/DoubleServoMount/graph-model.png new file mode 100644 index 0000000000000000000000000000000000000000..56b95822715cbccd896b021622a638370e24b846 Binary files /dev/null and b/rocolib/output/DoubleServoMount/graph-model.png differ diff --git a/rocolib/output/DoubleServoMount/graph-model.stl b/rocolib/output/DoubleServoMount/graph-model.stl new file mode 100644 index 0000000000000000000000000000000000000000..52b0d166641aed4d427b35c2f9800f7c885e16d5 --- /dev/null +++ b/rocolib/output/DoubleServoMount/graph-model.stl @@ -0,0 +1,548 @@ +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +endsolid python diff --git a/rocolib/output/DoubleServoMount/graph-silhouette.dxf b/rocolib/output/DoubleServoMount/graph-silhouette.dxf new file mode 100644 index 0000000000000000000000000000000000000000..d54091a997c370880e903fa20443013b446433f2 --- /dev/null +++ b/rocolib/output/DoubleServoMount/graph-silhouette.dxf @@ -0,0 +1,2744 @@ + 0 +SECTION + 2 +HEADER + 9 +$ACADVER + 1 +AC1009 + 9 +$INSBASE + 10 +0.0 + 20 +0.0 + 30 +0.0 + 9 +$EXTMIN + 10 +0.0 + 20 +0.0 + 30 +0.0 + 9 +$EXTMAX + 10 +100.0 + 20 +100.0 + 30 +0.0 + 9 +$UNITMODE + 70 +0 + 9 +$AUNITS + 70 +0 + 9 +$ANGBASE + 50 +0.0 + 9 +$ANGDIR + 70 +0 + 0 +ENDSEC + 0 +SECTION + 2 +TABLES + 0 +TABLE + 2 +LTYPE + 70 +20 + 0 +LTYPE + 2 +CONTINUOUS + 70 +0 + 3 +Solid + 72 +65 + 73 +0 + 40 +0.0 + 0 +LTYPE + 2 +CENTER + 70 +0 + 3 +Center ____ _ ____ _ ____ _ ____ _ ____ _ ____ + 72 +65 + 73 +4 + 40 +2.0 + 49 +1.25 + 49 +-0.25 + 49 +0.25 + 49 +-0.25 + 0 +LTYPE + 2 +CENTERX2 + 70 +0 + 3 +Center (2x) ________ __ ________ __ ________ + 72 +65 + 73 +4 + 40 +3.5 + 49 +2.5 + 49 +-0.25 + 49 +0.5 + 49 +-0.25 + 0 +LTYPE + 2 +CENTER2 + 70 +0 + 3 +Center (.5x) ____ _ ____ _ ____ _ ____ _ ____ + 72 +65 + 73 +4 + 40 +1.0 + 49 +0.625 + 49 +-0.125 + 49 +0.125 + 49 +-0.125 + 0 +LTYPE + 2 +DASHED + 70 +0 + 3 +Dashed __ __ __ __ __ __ __ __ __ __ __ __ __ _ + 72 +65 + 73 +2 + 40 +0.6 + 49 +0.5 + 49 +-0.1 + 0 +LTYPE + 2 +DASHEDX2 + 70 +0 + 3 +Dashed (2x) ____ ____ ____ ____ ____ ____ + 72 +65 + 73 +2 + 40 +1.2 + 49 +1.0 + 49 +-0.2 + 0 +LTYPE + 2 +DASHED2 + 70 +0 + 3 +Dashed (.5x) _ _ _ _ _ _ _ _ _ _ _ _ _ _ + 72 +65 + 73 +2 + 40 +0.3 + 49 +0.25 + 49 +-0.05 + 0 +LTYPE + 2 +PHANTOM + 70 +0 + 3 +Phantom ______ __ __ ______ __ __ ______ + 72 +65 + 73 +6 + 40 +2.5 + 49 +1.25 + 49 +-0.25 + 49 +0.25 + 49 +-0.25 + 49 +0.25 + 49 +-0.25 + 0 +LTYPE + 2 +PHANTOMX2 + 70 +0 + 3 +Phantom (2x)____________ ____ ____ ____________ + 72 +65 + 73 +6 + 40 +4.25 + 49 +2.5 + 49 +-0.25 + 49 +0.5 + 49 +-0.25 + 49 +0.5 + 49 +-0.25 + 0 +LTYPE + 2 +PHANTOM2 + 70 +0 + 3 +Phantom (.5x) ___ _ _ ___ _ _ ___ _ _ ___ _ _ ___ + 72 +65 + 73 +6 + 40 +1.25 + 49 +0.625 + 49 +-0.125 + 49 +0.125 + 49 +-0.125 + 49 +0.125 + 49 +-0.125 + 0 +LTYPE + 2 +DASHDOT + 70 +0 + 3 +Dash dot __ . __ . __ . __ . __ . __ . __ . __ + 72 +65 + 73 +4 + 40 +1.4 + 49 +1.0 + 49 +-0.2 + 49 +0.0 + 49 +-0.2 + 0 +LTYPE + 2 +DASHDOTX2 + 70 +0 + 3 +Dash dot (2x) ____ . ____ . ____ . ____ + 72 +65 + 73 +4 + 40 +2.4 + 49 +2.0 + 49 +-0.2 + 49 +0.0 + 49 +-0.2 + 0 +LTYPE + 2 +DASHDOT2 + 70 +0 + 3 +Dash dot (.5x) _ . _ . _ . _ . _ . _ . _ . _ + 72 +65 + 73 +4 + 40 +0.7 + 49 +0.5 + 49 +-0.1 + 49 +0.0 + 49 +-0.1 + 0 +LTYPE + 2 +DOT + 70 +0 + 3 +Dot . . . . . . . . . . . . . . . . + 72 +65 + 73 +2 + 40 +0.2 + 49 +0.0 + 49 +-0.2 + 0 +LTYPE + 2 +DOTX2 + 70 +0 + 3 +Dot (2x) . . . . . . . . + 72 +65 + 73 +2 + 40 +0.4 + 49 +0.0 + 49 +-0.4 + 0 +LTYPE + 2 +DOT2 + 70 +0 + 3 +Dot (.5) . . . . . . . . . . . . . . . . . . . + 72 +65 + 73 +2 + 40 +0.1 + 49 +0.0 + 49 +-0.1 + 0 +LTYPE + 2 +DIVIDE + 70 +0 + 3 +Divide __ . . __ . . __ . . __ . . __ . . __ + 72 +65 + 73 +6 + 40 +1.6 + 49 +1.0 + 49 +-0.2 + 49 +0.0 + 49 +-0.2 + 49 +0.0 + 49 +-0.2 + 0 +LTYPE + 2 +DIVIDEX2 + 70 +0 + 3 +Divide (2x) ____ . . ____ . . ____ . . ____ + 72 +65 + 73 +6 + 40 +2.6 + 49 +2.0 + 49 +-0.2 + 49 +0.0 + 49 +-0.2 + 49 +0.0 + 49 +-0.2 + 0 +LTYPE + 2 +DIVIDE2 + 70 +0 + 3 +Divide(.5x) _ . _ . _ . _ . _ . _ . _ . _ + 72 +65 + 73 +6 + 40 +0.8 + 49 +0.5 + 49 +-0.1 + 49 +0.0 + 49 +-0.1 + 49 +0.0 + 49 +-0.1 + 0 +LTYPE + 2 +DOTTED + 70 +0 + 3 + + 72 +65 + 73 +2 + 40 +1.0 + 49 +0.0 + 49 +-1.0 + 0 +ENDTAB + 0 +TABLE + 2 +LAYER + 70 +5 + 0 +LAYER + 2 +DIMENSIONS + 70 +0 + 62 +1 + 6 +CONTINUOUS + 0 +LAYER + 2 +TABLEBACKGROUND + 70 +0 + 62 +1 + 6 +CONTINUOUS + 0 +LAYER + 2 +TABLECONTENT + 70 +0 + 62 +1 + 6 +CONTINUOUS + 0 +LAYER + 2 +TABLEGRID + 70 +0 + 62 +1 + 6 +CONTINUOUS + 0 +LAYER + 2 +VIEWPORTS + 70 +0 + 62 +7 + 6 +CONTINUOUS + 0 +ENDTAB + 0 +TABLE + 2 +STYLE + 70 +12 + 0 +STYLE + 2 +STANDARD + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +arial.ttf + 4 + + 0 +STYLE + 2 +ARIAL + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +arial.ttf + 4 + + 0 +STYLE + 2 +ARIAL_BOLD + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +arialbd.ttf + 4 + + 0 +STYLE + 2 +ARIAL_ITALIC + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +ariali.ttf + 4 + + 0 +STYLE + 2 +ARIAL_BOLD_ITALIC + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +arialbi.ttf + 4 + + 0 +STYLE + 2 +ARIAL_BLACK + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +ariblk.ttf + 4 + + 0 +STYLE + 2 +ISOCPEUR + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +isocpeur.ttf + 4 + + 0 +STYLE + 2 +ISOCPEUR_ITALIC + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +isocpeui.ttf + 4 + + 0 +STYLE + 2 +TIMES + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +times.ttf + 4 + + 0 +STYLE + 2 +TIMES_BOLD + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +timesbd.ttf + 4 + + 0 +STYLE + 2 +TIMES_ITALIC + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +timesi.ttf + 4 + + 0 +STYLE + 2 +TIMES_BOLD_ITALIC + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +timesbi.ttf + 4 + + 0 +ENDTAB + 0 +TABLE + 2 +VIEW + 70 +0 + 0 +ENDTAB + 0 +TABLE + 2 +APPID + 70 +1 + 0 +APPID + 2 +DXFWRITE + 70 +0 + 0 +ENDTAB + 0 +TABLE + 2 +VPORT + 70 +0 + 0 +ENDTAB + 0 +TABLE + 2 +UCS + 70 +0 + 0 +ENDTAB + 0 +ENDSEC + 0 +SECTION + 2 +BLOCKS + 0 +ENDSEC + 0 +SECTION + 2 +ENTITIES + 0 +VIEWPORT + 8 +VIEWPORTS + 67 +1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +1.0 + 41 +1.0 + 68 +1 + 69 +1 +1001 +ACAD +1000 +MVIEW +1002 +{ +1070 +16 +1010 +0.0 +1020 +0.0 +1030 +0.0 +1010 +0.0 +1020 +0.0 +1030 +0.0 +1040 +0.0 +1040 +1.0 +1040 +0.0 +1040 +0.0 +1040 +50.0 +1040 +0.0 +1040 +0.0 +1070 +0 +1070 +100 +1070 +1 +1070 +3 +1070 +0 +1070 +0 +1070 +0 +1070 +0 +1040 +0.0 +1040 +0.0 +1040 +0.0 +1040 +0.1 +1040 +0.1 +1040 +0.1 +1040 +0.1 +1070 +0 +1002 +{ +1002 +} +1002 +} + 0 +LINE + 62 +5 + 8 +0 + 10 +70.00000000000001 + 20 +74.0 + 30 +0.0 + 11 +34.0 + 21 +74.0 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +3 + 8 +0 + 10 +70.00000000000001 + 20 +74.0 + 30 +0.0 + 11 +70.00000000000001 + 21 +98.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +34.0 + 20 +98.00000000000001 + 30 +0.0 + 11 +70.00000000000001 + 21 +98.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +70.00000000000001 + 20 +98.00000000000001 + 30 +0.0 + 11 +115.00000000000001 + 21 +98.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +115.00000000000001 + 20 +74.0 + 30 +0.0 + 11 +70.00000000000001 + 21 +74.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +120.00000000000001 + 20 +74.0 + 30 +0.0 + 11 +115.00000000000001 + 21 +74.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +120.00000000000001 + 20 +98.00000000000001 + 30 +0.0 + 11 +120.00000000000001 + 21 +74.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +115.00000000000001 + 20 +98.00000000000001 + 30 +0.0 + 11 +120.00000000000001 + 21 +98.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +0.0 + 20 +98.00000000000001 + 30 +0.0 + 11 +34.0 + 21 +98.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +0.0 + 20 +74.0 + 30 +0.0 + 11 +0.0 + 21 +98.00000000000001 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +34.0 + 20 +74.0 + 30 +0.0 + 11 +0.0 + 21 +74.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +34.0 + 20 +74.0 + 30 +0.0 + 11 +34.0 + 21 +54.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +0.0 + 20 +54.00000000000001 + 30 +0.0 + 11 +0.0 + 21 +74.0 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +34.0 + 20 +54.00000000000001 + 30 +0.0 + 11 +0.0 + 21 +54.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +34.0 + 20 +54.00000000000001 + 30 +0.0 + 11 +34.0 + 21 +30.000000000000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +0.0 + 20 +30.000000000000004 + 30 +0.0 + 11 +0.0 + 21 +54.00000000000001 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +34.0 + 20 +30.000000000000004 + 30 +0.0 + 11 +0.0 + 21 +30.000000000000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +34.0 + 20 +30.000000000000004 + 30 +0.0 + 11 +34.0 + 21 +10.000000000000002 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +0.0 + 20 +10.000000000000002 + 30 +0.0 + 11 +0.0 + 21 +30.000000000000004 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +0.0 + 20 +10.000000000000002 + 30 +0.0 + 11 +34.0 + 21 +10.000000000000002 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 11 +0.0 + 21 +10.000000000000002 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +34.0 + 20 +0.0 + 30 +0.0 + 11 +0.0 + 21 +0.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +34.0 + 20 +10.000000000000002 + 30 +0.0 + 11 +34.0 + 21 +0.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +118.75000000000001 + 20 +90.0 + 30 +0.0 + 11 +118.75000000000001 + 21 +92.50000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +118.75000000000001 + 20 +92.50000000000001 + 30 +0.0 + 11 +116.25000000000001 + 21 +90.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +116.25000000000001 + 20 +90.0 + 30 +0.0 + 11 +116.25000000000001 + 21 +82.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +116.25000000000001 + 20 +82.0 + 30 +0.0 + 11 +118.75000000000001 + 21 +79.5 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +118.75000000000001 + 20 +79.5 + 30 +0.0 + 11 +118.75000000000001 + 21 +82.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +11.08333333333333 + 20 +90.25000000000001 + 30 +0.0 + 11 +22.916666666666668 + 21 +90.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +22.916666666666668 + 20 +90.25000000000001 + 30 +0.0 + 11 +22.916666666666668 + 21 +90.75000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +22.916666666666668 + 20 +90.75000000000001 + 30 +0.0 + 11 +11.08333333333333 + 21 +90.75000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +11.08333333333333 + 20 +90.75000000000001 + 30 +0.0 + 11 +11.08333333333333 + 21 +90.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +23.000000000000004 + 20 +55.00000000000001 + 30 +0.0 + 11 +23.000000000000004 + 21 +59.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +23.000000000000004 + 20 +59.00000000000001 + 30 +0.0 + 11 +11.000000000000002 + 21 +59.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +11.000000000000002 + 20 +59.00000000000001 + 30 +0.0 + 11 +11.000000000000002 + 21 +55.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +11.000000000000002 + 20 +55.00000000000001 + 30 +0.0 + 11 +23.000000000000004 + 21 +55.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +21.500000000000004 + 20 +67.00000000000001 + 30 +0.0 + 11 +21.500000000000004 + 21 +71.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +21.500000000000004 + 20 +71.00000000000001 + 30 +0.0 + 11 +12.5 + 21 +71.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +12.5 + 20 +71.00000000000001 + 30 +0.0 + 11 +12.5 + 21 +67.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +12.5 + 20 +67.00000000000001 + 30 +0.0 + 11 +21.500000000000004 + 21 +67.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +23.000000000000004 + 20 +30.500000000000004 + 30 +0.0 + 11 +23.000000000000004 + 21 +53.5 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +23.000000000000004 + 20 +53.5 + 30 +0.0 + 11 +11.000000000000002 + 21 +53.5 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +11.000000000000002 + 20 +53.5 + 30 +0.0 + 11 +11.000000000000002 + 21 +30.500000000000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +11.000000000000002 + 20 +30.500000000000004 + 30 +0.0 + 11 +23.000000000000004 + 21 +30.500000000000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +23.000000000000004 + 20 +25.0 + 30 +0.0 + 11 +23.000000000000004 + 21 +29.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +23.000000000000004 + 20 +29.0 + 30 +0.0 + 11 +11.000000000000002 + 21 +29.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +11.000000000000002 + 20 +29.0 + 30 +0.0 + 11 +11.000000000000002 + 21 +25.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +11.000000000000002 + 20 +25.0 + 30 +0.0 + 11 +23.000000000000004 + 21 +25.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +22.666666666666668 + 20 +2.5000000000000004 + 30 +0.0 + 11 +22.666666666666668 + 21 +7.500000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +22.666666666666668 + 20 +7.500000000000001 + 30 +0.0 + 11 +11.33333333333333 + 21 +7.500000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +11.33333333333333 + 20 +7.500000000000001 + 30 +0.0 + 11 +11.33333333333333 + 21 +2.5000000000000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +200.0 + 20 +74.0 + 30 +0.0 + 11 +164.0 + 21 +74.0 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +3 + 8 +0 + 10 +200.0 + 20 +74.0 + 30 +0.0 + 11 +200.0 + 21 +98.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +164.0 + 20 +98.00000000000001 + 30 +0.0 + 11 +200.0 + 21 +98.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +200.0 + 20 +98.00000000000001 + 30 +0.0 + 11 +245.00000000000003 + 21 +98.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +245.00000000000003 + 20 +74.0 + 30 +0.0 + 11 +200.0 + 21 +74.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +245.00000000000003 + 20 +98.00000000000001 + 30 +0.0 + 11 +245.00000000000003 + 21 +74.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +130.0 + 20 +74.0 + 30 +0.0 + 11 +130.0 + 21 +98.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +164.0 + 20 +74.0 + 30 +0.0 + 11 +130.0 + 21 +74.0 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +130.0 + 20 +98.00000000000001 + 30 +0.0 + 11 +164.0 + 21 +98.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +130.0 + 20 +98.00000000000001 + 30 +0.0 + 11 +130.0 + 21 +118.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +164.0 + 20 +118.00000000000001 + 30 +0.0 + 11 +164.0 + 21 +98.00000000000001 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +130.0 + 20 +118.00000000000001 + 30 +0.0 + 11 +164.0 + 21 +118.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +130.0 + 20 +118.00000000000001 + 30 +0.0 + 11 +130.0 + 21 +142.00000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +164.0 + 20 +142.00000000000003 + 30 +0.0 + 11 +164.0 + 21 +118.00000000000001 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +130.0 + 20 +142.00000000000003 + 30 +0.0 + 11 +164.0 + 21 +142.00000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +130.0 + 20 +142.00000000000003 + 30 +0.0 + 11 +130.0 + 21 +162.00000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +164.0 + 20 +162.00000000000003 + 30 +0.0 + 11 +164.0 + 21 +142.00000000000003 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +164.0 + 20 +162.00000000000003 + 30 +0.0 + 11 +130.0 + 21 +162.00000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +164.0 + 20 +172.00000000000003 + 30 +0.0 + 11 +164.0 + 21 +162.00000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +130.0 + 20 +172.00000000000003 + 30 +0.0 + 11 +164.0 + 21 +172.00000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +130.0 + 20 +162.00000000000003 + 30 +0.0 + 11 +130.0 + 21 +172.00000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +241.00000000000003 + 20 +90.25000000000001 + 30 +0.0 + 11 +241.00000000000003 + 21 +81.75 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +241.00000000000003 + 20 +81.75 + 30 +0.0 + 11 +241.50000000000003 + 21 +81.75 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +241.50000000000003 + 20 +81.75 + 30 +0.0 + 11 +241.50000000000003 + 21 +90.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +241.50000000000003 + 20 +90.25000000000001 + 30 +0.0 + 11 +241.00000000000003 + 21 +90.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +152.91666666666669 + 20 +81.75 + 30 +0.0 + 11 +141.08333333333334 + 21 +81.75 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +141.08333333333334 + 20 +81.75 + 30 +0.0 + 11 +141.08333333333334 + 21 +81.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +141.08333333333334 + 20 +81.25000000000001 + 30 +0.0 + 11 +152.91666666666669 + 21 +81.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +152.91666666666669 + 20 +81.25000000000001 + 30 +0.0 + 11 +152.91666666666669 + 21 +81.75 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +141.0 + 20 +117.00000000000001 + 30 +0.0 + 11 +141.0 + 21 +113.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +141.0 + 20 +113.00000000000001 + 30 +0.0 + 11 +153.00000000000003 + 21 +113.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +153.00000000000003 + 20 +113.00000000000001 + 30 +0.0 + 11 +153.00000000000003 + 21 +117.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +153.00000000000003 + 20 +117.00000000000001 + 30 +0.0 + 11 +141.0 + 21 +117.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +142.50000000000003 + 20 +105.00000000000001 + 30 +0.0 + 11 +142.50000000000003 + 21 +101.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +142.50000000000003 + 20 +101.00000000000001 + 30 +0.0 + 11 +151.50000000000003 + 21 +101.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +151.50000000000003 + 20 +101.00000000000001 + 30 +0.0 + 11 +151.50000000000003 + 21 +105.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +151.50000000000003 + 20 +105.00000000000001 + 30 +0.0 + 11 +142.50000000000003 + 21 +105.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +141.0 + 20 +141.5 + 30 +0.0 + 11 +141.0 + 21 +118.50000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +141.0 + 20 +118.50000000000001 + 30 +0.0 + 11 +153.00000000000003 + 21 +118.50000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +153.00000000000003 + 20 +118.50000000000001 + 30 +0.0 + 11 +153.00000000000003 + 21 +141.5 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +153.00000000000003 + 20 +141.5 + 30 +0.0 + 11 +141.0 + 21 +141.5 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +141.0 + 20 +147.00000000000003 + 30 +0.0 + 11 +141.0 + 21 +143.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +141.0 + 20 +143.0 + 30 +0.0 + 11 +153.00000000000003 + 21 +143.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +153.00000000000003 + 20 +143.0 + 30 +0.0 + 11 +153.00000000000003 + 21 +147.00000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +153.00000000000003 + 20 +147.00000000000003 + 30 +0.0 + 11 +141.0 + 21 +147.00000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +141.33333333333334 + 20 +169.50000000000003 + 30 +0.0 + 11 +141.33333333333334 + 21 +164.50000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +141.33333333333334 + 20 +164.50000000000003 + 30 +0.0 + 11 +152.66666666666666 + 21 +164.50000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +152.66666666666666 + 20 +164.50000000000003 + 30 +0.0 + 11 +152.66666666666666 + 21 +169.50000000000003 + 31 +0.0 + 0 +ENDSEC + 0 +EOF diff --git a/rocolib/output/DoubleServoMount/tree.png b/rocolib/output/DoubleServoMount/tree.png new file mode 100644 index 0000000000000000000000000000000000000000..1f1603cd1814602937a93b557a76ee3d81ec7734 Binary files /dev/null and b/rocolib/output/DoubleServoMount/tree.png differ diff --git a/rocolib/output/ServoMountAndStack/graph-anim.svg b/rocolib/output/ServoMountAndStack/graph-anim.svg new file mode 100644 index 0000000000000000000000000000000000000000..cb06156e22a340c54458975bb61a997c8a5abd62 --- /dev/null +++ b/rocolib/output/ServoMountAndStack/graph-anim.svg @@ -0,0 +1,502 @@ +<?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="179.000000mm" version="1.1" viewBox="0.000000 0.000000 433.000000 179.000000" width="433.000000mm"> + <defs/> + <line stroke="#000000" x1="70.00000000000001" x2="34.0" y1="74.0" y2="74.0"/> + <line opacity="0.5" stroke="#ff0000" x1="70.00000000000001" x2="70.00000000000001" y1="74.0" y2="98.00000000000001"/> + <line stroke="#000000" x1="34.0" x2="70.00000000000001" y1="98.00000000000001" y2="98.00000000000001"/> + <line stroke="#000000" x1="70.00000000000001" x2="115.00000000000001" y1="98.00000000000001" y2="98.00000000000001"/> + <line stroke="#000000" x1="115.00000000000001" x2="70.00000000000001" y1="74.0" y2="74.0"/> + <line stroke="#000000" x1="120.00000000000001" x2="115.00000000000001" y1="74.0" y2="74.0"/> + <line stroke="#000000" x1="120.00000000000001" x2="120.00000000000001" y1="98.00000000000001" y2="74.0"/> + <line stroke="#000000" x1="115.00000000000001" x2="120.00000000000001" y1="98.00000000000001" y2="98.00000000000001"/> + <line stroke="#000000" x1="0.0" x2="34.0" y1="98.00000000000001" y2="98.00000000000001"/> + <line opacity="0.5" stroke="#0000ff" x1="34.0" x2="0.0" y1="74.0" y2="74.0"/> + <line stroke="#000000" x1="0.0" x2="0.0" y1="74.0" y2="1.0000000000000002"/> + <line stroke="#000000" x1="0.0" x2="0.0" y1="108.00000000000001" y2="98.00000000000001"/> + <line stroke="#000000" x1="0.0" x2="0.0" y1="169.00000000000003" y2="169.00000000000003"/> + <line stroke="#000000" x1="0.0" x2="0.0" y1="1.0000000000000002" y2="169.00000000000003"/> + <line stroke="#000000" x1="0.0" x2="0.0" y1="1.0000000000000002" y2="1.0000000000000002"/> + <line opacity="0.25" stroke="#0000ff" x1="36.138621999185304" x2="36.138621999185304" y1="108.00000000000001" y2="169.00000000000003"/> + <line stroke="#000000" x1="0.0" x2="36.138621999185304" y1="169.00000000000003" y2="169.00000000000003"/> + <line stroke="#000000" x1="36.138621999185304" x2="0.0" y1="108.00000000000001" y2="108.00000000000001"/> + <line opacity="0.25" stroke="#0000ff" x1="60.13862199918531" x2="60.13862199918531" y1="169.00000000000003" y2="108.00000000000001"/> + <line opacity="0.5" stroke="#0000ff" x1="60.13862199918531" x2="36.138621999185304" y1="169.00000000000003" y2="169.00000000000003"/> + <line stroke="#000000" x1="96.27724399837062" x2="60.13862199918531" y1="108.00000000000001" y2="108.00000000000001"/> + <line stroke="#000000" x1="60.13862199918531" x2="96.27724399837062" y1="169.00000000000003" y2="169.00000000000003"/> + <line stroke="#000000" x1="106.27724399837062" x2="96.27724399837062" y1="108.00000000000001" y2="108.00000000000001"/> + <line stroke="#000000" x1="106.27724399837062" x2="106.27724399837062" y1="169.00000000000003" y2="108.00000000000001"/> + <line stroke="#000000" x1="96.27724399837062" x2="106.27724399837062" y1="169.00000000000003" y2="169.00000000000003"/> + <line stroke="#000000" x1="60.13862199918531" x2="60.13862199918531" y1="179.00000000000003" y2="169.00000000000003"/> + <line stroke="#000000" x1="36.138621999185304" x2="60.13862199918531" y1="179.00000000000003" y2="179.00000000000003"/> + <line stroke="#000000" x1="36.138621999185304" x2="36.138621999185304" y1="169.00000000000003" y2="179.00000000000003"/> + <line stroke="#000000" x1="36.138621999185304" x2="36.138621999185304" y1="98.00000000000001" y2="108.00000000000001"/> + <line stroke="#000000" x1="60.13862199918531" x2="36.138621999185304" y1="98.00000000000001" y2="98.00000000000001"/> + <line stroke="#000000" x1="60.13862199918531" x2="60.13862199918531" y1="108.00000000000001" y2="98.00000000000001"/> + <line stroke="#000000" x1="34.0" x2="34.0" y1="74.0" y2="54.00000000000001"/> + <line stroke="#000000" x1="0.0" x2="0.0" y1="54.00000000000001" y2="74.0"/> + <line opacity="0.5" stroke="#0000ff" x1="34.0" x2="0.0" y1="54.00000000000001" y2="54.00000000000001"/> + <line stroke="#000000" x1="34.0" x2="34.0" y1="54.00000000000001" y2="30.000000000000004"/> + <line stroke="#000000" x1="0.0" x2="0.0" y1="30.000000000000004" y2="54.00000000000001"/> + <line opacity="0.5" stroke="#0000ff" x1="34.0" x2="0.0" y1="30.000000000000004" y2="30.000000000000004"/> + <line stroke="#000000" x1="34.0" x2="34.0" y1="30.000000000000004" y2="10.000000000000002"/> + <line stroke="#000000" x1="0.0" x2="0.0" y1="10.000000000000002" y2="30.000000000000004"/> + <line opacity="0.5" stroke="#0000ff" x1="0.0" x2="34.0" y1="10.000000000000002" y2="10.000000000000002"/> + <line stroke="#000000" x1="0.0" x2="0.0" y1="0.0" y2="10.000000000000002"/> + <line stroke="#000000" x1="34.0" x2="0.0" y1="0.0" y2="0.0"/> + <line stroke="#000000" x1="34.0" x2="34.0" y1="10.000000000000002" y2="0.0"/> + <line stroke="#888888" x1="118.75000000000001" x2="118.75000000000001" y1="90.0" y2="92.50000000000001"/> + <line stroke="#888888" x1="118.75000000000001" x2="116.25000000000001" y1="92.50000000000001" y2="90.0"/> + <line stroke="#888888" x1="116.25000000000001" x2="116.25000000000001" y1="90.0" y2="82.0"/> + <line stroke="#888888" x1="116.25000000000001" x2="118.75000000000001" y1="82.0" y2="79.5"/> + <line stroke="#888888" x1="118.75000000000001" x2="118.75000000000001" y1="79.5" y2="82.0"/> + <line stroke="#888888" x1="11.08333333333333" x2="22.916666666666668" y1="90.25000000000001" y2="90.25000000000001"/> + <line stroke="#888888" x1="22.916666666666668" x2="22.916666666666668" y1="90.25000000000001" y2="90.75000000000001"/> + <line stroke="#888888" x1="22.916666666666668" x2="11.08333333333333" y1="90.75000000000001" y2="90.75000000000001"/> + <line stroke="#888888" x1="11.08333333333333" x2="11.08333333333333" y1="90.75000000000001" y2="90.25000000000001"/> + <line stroke="#888888" x1="54.63862199918531" x2="54.63862199918531" y1="126.00000000000001" y2="137.00000000000003"/> + <line stroke="#888888" x1="54.63862199918531" x2="41.63862199918531" y1="137.00000000000003" y2="137.00000000000003"/> + <line stroke="#888888" x1="41.63862199918531" x2="41.63862199918531" y1="137.00000000000003" y2="126.00000000000001"/> + <line stroke="#888888" x1="41.63862199918531" x2="54.63862199918531" y1="126.00000000000001" y2="126.00000000000001"/> + <line stroke="#888888" x1="53.13862199918531" x2="53.13862199918531" y1="157.50000000000003" y2="163.5"/> + <line stroke="#888888" x1="53.13862199918531" x2="43.13862199918531" y1="163.5" y2="163.5"/> + <line stroke="#888888" x1="43.13862199918531" x2="43.13862199918531" y1="163.5" y2="157.50000000000003"/> + <line stroke="#888888" x1="43.13862199918531" x2="53.13862199918531" y1="157.50000000000003" y2="157.50000000000003"/> + <line stroke="#888888" x1="103.77724399837062" x2="98.77724399837062" y1="157.9090909090909" y2="157.9090909090909"/> + <line stroke="#888888" x1="98.77724399837062" x2="98.77724399837062" y1="157.9090909090909" y2="146.81818181818184"/> + <line stroke="#888888" x1="98.77724399837062" x2="103.77724399837062" y1="146.81818181818184" y2="146.81818181818184"/> + <line stroke="#888888" x1="103.77724399837062" x2="98.77724399837062" y1="130.18181818181822" y2="130.18181818181822"/> + <line stroke="#888888" x1="98.77724399837062" x2="98.77724399837062" y1="130.18181818181822" y2="119.09090909090911"/> + <line stroke="#888888" x1="98.77724399837062" x2="103.77724399837062" y1="119.09090909090911" y2="119.09090909090911"/> + <line stroke="#888888" x1="44.138621999185304" x2="44.138621999185304" y1="176.50000000000003" y2="171.50000000000003"/> + <line stroke="#888888" x1="44.138621999185304" x2="52.13862199918531" y1="171.50000000000003" y2="171.50000000000003"/> + <line stroke="#888888" x1="52.13862199918531" x2="52.13862199918531" y1="171.50000000000003" y2="176.50000000000003"/> + <line stroke="#888888" x1="52.13862199918531" x2="52.13862199918531" y1="100.50000000000001" y2="105.50000000000001"/> + <line stroke="#888888" x1="52.13862199918531" x2="44.138621999185304" y1="105.50000000000001" y2="105.50000000000001"/> + <line stroke="#888888" x1="44.138621999185304" x2="44.138621999185304" y1="105.50000000000001" y2="100.50000000000001"/> + <line stroke="#888888" x1="23.000000000000004" x2="23.000000000000004" y1="55.00000000000001" y2="59.00000000000001"/> + <line stroke="#888888" x1="23.000000000000004" x2="11.000000000000002" y1="59.00000000000001" y2="59.00000000000001"/> + <line stroke="#888888" x1="11.000000000000002" x2="11.000000000000002" y1="59.00000000000001" y2="55.00000000000001"/> + <line stroke="#888888" x1="11.000000000000002" x2="23.000000000000004" y1="55.00000000000001" y2="55.00000000000001"/> + <line stroke="#888888" x1="21.500000000000004" x2="21.500000000000004" y1="67.00000000000001" y2="71.00000000000001"/> + <line stroke="#888888" x1="21.500000000000004" x2="12.5" y1="71.00000000000001" y2="71.00000000000001"/> + <line stroke="#888888" x1="12.5" x2="12.5" y1="71.00000000000001" y2="67.00000000000001"/> + <line stroke="#888888" x1="12.5" x2="21.500000000000004" y1="67.00000000000001" y2="67.00000000000001"/> + <line stroke="#888888" x1="23.000000000000004" x2="23.000000000000004" y1="30.500000000000004" y2="53.5"/> + <line stroke="#888888" x1="23.000000000000004" x2="11.000000000000002" y1="53.5" y2="53.5"/> + <line stroke="#888888" x1="11.000000000000002" x2="11.000000000000002" y1="53.5" y2="30.500000000000004"/> + <line stroke="#888888" x1="11.000000000000002" x2="23.000000000000004" y1="30.500000000000004" y2="30.500000000000004"/> + <line stroke="#888888" x1="23.000000000000004" x2="23.000000000000004" y1="25.0" y2="29.0"/> + <line stroke="#888888" x1="23.000000000000004" x2="11.000000000000002" y1="29.0" y2="29.0"/> + <line stroke="#888888" x1="11.000000000000002" x2="11.000000000000002" y1="29.0" y2="25.0"/> + <line stroke="#888888" x1="11.000000000000002" x2="23.000000000000004" y1="25.0" y2="25.0"/> + <line stroke="#888888" x1="22.666666666666668" x2="22.666666666666668" y1="2.5000000000000004" y2="7.500000000000001"/> + <line stroke="#888888" x1="22.666666666666668" x2="11.33333333333333" y1="7.500000000000001" y2="7.500000000000001"/> + <line stroke="#888888" x1="11.33333333333333" x2="11.33333333333333" y1="7.500000000000001" y2="2.5000000000000004"/> + <line stroke="#000000" x1="200.0" x2="164.0" y1="74.0" y2="74.0"/> + <line opacity="0.5" stroke="#ff0000" x1="200.0" x2="200.0" y1="74.0" y2="98.00000000000001"/> + <line stroke="#000000" x1="164.0" x2="200.0" y1="98.00000000000001" y2="98.00000000000001"/> + <line stroke="#000000" x1="200.0" x2="245.00000000000003" y1="98.00000000000001" y2="98.00000000000001"/> + <line stroke="#000000" x1="245.00000000000003" x2="200.0" y1="74.0" y2="74.0"/> + <line stroke="#000000" x1="245.00000000000003" x2="245.00000000000003" y1="98.00000000000001" y2="74.0"/> + <line stroke="#000000" x1="164.0" x2="130.0" y1="74.0" y2="74.0"/> + <line opacity="0.5" stroke="#0000ff" x1="130.0" x2="164.0" y1="98.00000000000001" y2="98.00000000000001"/> + <line stroke="#000000" x1="130.0" x2="130.0" y1="64.00000000000001" y2="3.0000000000000004"/> + <line stroke="#000000" x1="130.0" x2="130.0" y1="74.0" y2="64.00000000000001"/> + <line stroke="#000000" x1="130.0" x2="130.0" y1="171.00000000000003" y2="98.00000000000001"/> + <line stroke="#000000" x1="130.0" x2="130.0" y1="171.00000000000003" y2="171.00000000000003"/> + <line stroke="#000000" x1="130.0" x2="130.0" y1="3.0000000000000004" y2="171.00000000000003"/> + <line stroke="#000000" x1="130.0" x2="130.0" y1="3.0000000000000004" y2="3.0000000000000004"/> + <line stroke="#000000" x1="130.0" x2="130.0" y1="98.00000000000001" y2="118.00000000000001"/> + <line stroke="#000000" x1="164.0" x2="164.0" y1="118.00000000000001" y2="98.00000000000001"/> + <line opacity="0.5" stroke="#0000ff" x1="130.0" x2="164.0" y1="118.00000000000001" y2="118.00000000000001"/> + <line stroke="#000000" x1="130.0" x2="130.0" y1="118.00000000000001" y2="142.00000000000003"/> + <line stroke="#000000" x1="164.0" x2="164.0" y1="142.00000000000003" y2="118.00000000000001"/> + <line opacity="0.5" stroke="#0000ff" x1="130.0" x2="164.0" y1="142.00000000000003" y2="142.00000000000003"/> + <line stroke="#000000" x1="130.0" x2="130.0" y1="142.00000000000003" y2="162.00000000000003"/> + <line stroke="#000000" x1="164.0" x2="164.0" y1="162.00000000000003" y2="142.00000000000003"/> + <line opacity="0.5" stroke="#0000ff" x1="164.0" x2="130.0" y1="162.00000000000003" y2="162.00000000000003"/> + <line stroke="#000000" x1="164.0" x2="164.0" y1="172.00000000000003" y2="162.00000000000003"/> + <line stroke="#000000" x1="130.0" x2="164.0" y1="172.00000000000003" y2="172.00000000000003"/> + <line stroke="#000000" x1="130.0" x2="130.0" y1="162.00000000000003" y2="172.00000000000003"/> + <line stroke="#888888" x1="241.00000000000003" x2="241.00000000000003" y1="90.25000000000001" y2="81.75"/> + <line stroke="#888888" x1="241.00000000000003" x2="241.50000000000003" y1="81.75" y2="81.75"/> + <line stroke="#888888" x1="241.50000000000003" x2="241.50000000000003" y1="81.75" y2="90.25000000000001"/> + <line stroke="#888888" x1="241.50000000000003" x2="241.00000000000003" y1="90.25000000000001" y2="90.25000000000001"/> + <line stroke="#888888" x1="152.91666666666669" x2="141.08333333333334" y1="81.75" y2="81.75"/> + <line stroke="#888888" x1="141.08333333333334" x2="141.08333333333334" y1="81.75" y2="81.25000000000001"/> + <line stroke="#888888" x1="141.08333333333334" x2="152.91666666666669" y1="81.25000000000001" y2="81.25000000000001"/> + <line stroke="#888888" x1="152.91666666666669" x2="152.91666666666669" y1="81.25000000000001" y2="81.75"/> + <line stroke="#888888" x1="122.25000000000001" x2="122.25000000000001" y1="25.43181818181819" y2="13.840909090909095"/> + <line stroke="#888888" x1="122.25000000000001" x2="122.75000000000001" y1="13.840909090909095" y2="13.840909090909095"/> + <line stroke="#888888" x1="122.75000000000001" x2="122.75000000000001" y1="13.840909090909095" y2="25.43181818181819"/> + <line stroke="#888888" x1="122.75000000000001" x2="122.25000000000001" y1="25.43181818181819" y2="25.43181818181819"/> + <line stroke="#888888" x1="122.25000000000001" x2="122.25000000000001" y1="53.15909090909092" y2="41.568181818181834"/> + <line stroke="#888888" x1="122.25000000000001" x2="122.75000000000001" y1="41.568181818181834" y2="41.568181818181834"/> + <line stroke="#888888" x1="122.75000000000001" x2="122.75000000000001" y1="41.568181818181834" y2="53.15909090909092"/> + <line stroke="#888888" x1="122.75000000000001" x2="122.25000000000001" y1="53.15909090909092" y2="53.15909090909092"/> + <line stroke="#888888" x1="141.0" x2="141.0" y1="117.00000000000001" y2="113.00000000000001"/> + <line stroke="#888888" x1="141.0" x2="153.00000000000003" y1="113.00000000000001" y2="113.00000000000001"/> + <line stroke="#888888" x1="153.00000000000003" x2="153.00000000000003" y1="113.00000000000001" y2="117.00000000000001"/> + <line stroke="#888888" x1="153.00000000000003" x2="141.0" y1="117.00000000000001" y2="117.00000000000001"/> + <line stroke="#888888" x1="142.50000000000003" x2="142.50000000000003" y1="105.00000000000001" y2="101.00000000000001"/> + <line stroke="#888888" x1="142.50000000000003" x2="151.50000000000003" y1="101.00000000000001" y2="101.00000000000001"/> + <line stroke="#888888" x1="151.50000000000003" x2="151.50000000000003" y1="101.00000000000001" y2="105.00000000000001"/> + <line stroke="#888888" x1="151.50000000000003" x2="142.50000000000003" y1="105.00000000000001" y2="105.00000000000001"/> + <line stroke="#888888" x1="141.0" x2="141.0" y1="141.5" y2="118.50000000000001"/> + <line stroke="#888888" x1="141.0" x2="153.00000000000003" y1="118.50000000000001" y2="118.50000000000001"/> + <line stroke="#888888" x1="153.00000000000003" x2="153.00000000000003" y1="118.50000000000001" y2="141.5"/> + <line stroke="#888888" x1="153.00000000000003" x2="141.0" y1="141.5" y2="141.5"/> + <line stroke="#888888" x1="141.0" x2="141.0" y1="147.00000000000003" y2="143.0"/> + <line stroke="#888888" x1="141.0" x2="153.00000000000003" y1="143.0" y2="143.0"/> + <line stroke="#888888" x1="153.00000000000003" x2="153.00000000000003" y1="143.0" y2="147.00000000000003"/> + <line stroke="#888888" x1="153.00000000000003" x2="141.0" y1="147.00000000000003" y2="147.00000000000003"/> + <line stroke="#888888" x1="141.33333333333334" x2="141.33333333333334" y1="169.50000000000003" y2="164.50000000000003"/> + <line stroke="#888888" x1="141.33333333333334" x2="152.66666666666666" y1="164.50000000000003" y2="164.50000000000003"/> + <line stroke="#888888" x1="152.66666666666666" x2="152.66666666666666" y1="164.50000000000003" y2="169.50000000000003"/> + <line opacity="0.5" stroke="#0000ff" x1="288.00000000000006" x2="349.00000000000006" y1="74.0" y2="74.0"/> + <line opacity="0.5" stroke="#0000ff" x1="349.00000000000006" x2="349.00000000000006" y1="74.0" y2="98.00000000000001"/> + <line opacity="0.5" stroke="#0000ff" x1="349.00000000000006" x2="288.00000000000006" y1="98.00000000000001" y2="98.00000000000001"/> + <line opacity="0.5" stroke="#0000ff" x1="288.00000000000006" x2="288.00000000000006" y1="98.00000000000001" y2="74.0"/> + <line stroke="#000000" x1="288.00000000000006" x2="288.00000000000006" y1="67.00000000000001" y2="74.0"/> + <line stroke="#000000" x1="348.00000000000006" x2="288.00000000000006" y1="67.00000000000001" y2="67.00000000000001"/> + <line stroke="#000000" x1="348.00000000000006" x2="348.00000000000006" y1="74.0" y2="67.00000000000001"/> + <line stroke="#000000" x1="356.00000000000006" x2="349.00000000000006" y1="74.0" y2="74.0"/> + <line stroke="#000000" x1="356.00000000000006" x2="356.00000000000006" y1="98.00000000000001" y2="74.0"/> + <line stroke="#000000" x1="349.00000000000006" x2="356.00000000000006" y1="98.00000000000001" y2="98.00000000000001"/> + <line opacity="0.5" stroke="#0000ff" x1="349.00000000000006" x2="349.00000000000006" y1="98.00000000000001" y2="159.0"/> + <line stroke="#000000" x1="289.00000000000006" x2="349.00000000000006" y1="159.0" y2="159.0"/> + <line opacity="0.5" stroke="#0000ff" x1="289.00000000000006" x2="289.00000000000006" y1="98.00000000000001" y2="159.0"/> + <line stroke="#000000" x1="373.0" x2="349.00000000000006" y1="98.00000000000001" y2="98.00000000000001"/> + <line opacity="0.5" stroke="#0000ff" x1="373.0" x2="373.0" y1="98.00000000000001" y2="159.0"/> + <line stroke="#000000" x1="349.00000000000006" x2="373.0" y1="159.0" y2="159.0"/> + <line stroke="#000000" x1="433.00000000000006" x2="373.0" y1="98.00000000000001" y2="98.00000000000001"/> + <line stroke="#000000" x1="433.00000000000006" x2="433.00000000000006" y1="159.0" y2="98.00000000000001"/> + <line stroke="#000000" x1="373.0" x2="433.00000000000006" y1="159.0" y2="159.0"/> + <line stroke="#000000" x1="289.00000000000006" x2="265.00000000000006" y1="98.00000000000001" y2="98.00000000000001"/> + <line stroke="#000000" x1="265.00000000000006" x2="289.00000000000006" y1="159.0" y2="159.0"/> + <line opacity="0.5" stroke="#0000ff" x1="265.00000000000006" x2="265.00000000000006" y1="159.0" y2="98.00000000000001"/> + <line stroke="#000000" x1="255.00000000000003" x2="265.00000000000006" y1="159.0" y2="159.0"/> + <line stroke="#000000" x1="255.00000000000003" x2="255.00000000000003" y1="98.00000000000001" y2="159.0"/> + <line stroke="#000000" x1="265.00000000000006" x2="255.00000000000003" y1="98.00000000000001" y2="98.00000000000001"/> + <line stroke="#000000" x1="281.00000000000006" x2="288.00000000000006" y1="98.00000000000001" y2="98.00000000000001"/> + <line stroke="#000000" x1="281.00000000000006" x2="281.00000000000006" y1="74.0" y2="98.00000000000001"/> + <line stroke="#000000" x1="288.00000000000006" x2="281.00000000000006" y1="74.0" y2="74.0"/> + <line stroke="#888888" x1="337.0909090909092" x2="340.59090909090907" y1="68.75000000000001" y2="68.75000000000001"/> + <line stroke="#888888" x1="340.59090909090907" x2="337.0909090909092" y1="68.75000000000001" y2="72.25000000000001"/> + <line stroke="#888888" x1="337.0909090909092" x2="326.18181818181824" y1="72.25000000000001" y2="72.25000000000001"/> + <line stroke="#888888" x1="326.18181818181824" x2="322.68181818181824" y1="72.25000000000001" y2="68.75000000000001"/> + <line stroke="#888888" x1="322.68181818181824" x2="326.18181818181824" y1="68.75000000000001" y2="68.75000000000001"/> + <line stroke="#888888" x1="309.81818181818187" x2="313.31818181818187" y1="68.75000000000001" y2="68.75000000000001"/> + <line stroke="#888888" x1="313.31818181818187" x2="309.81818181818187" y1="68.75000000000001" y2="72.25000000000001"/> + <line stroke="#888888" x1="309.81818181818187" x2="298.909090909091" y1="72.25000000000001" y2="72.25000000000001"/> + <line stroke="#888888" x1="298.909090909091" x2="295.409090909091" y1="72.25000000000001" y2="68.75000000000001"/> + <line stroke="#888888" x1="295.409090909091" x2="298.909090909091" y1="68.75000000000001" y2="68.75000000000001"/> + <line stroke="#888888" x1="354.25000000000006" x2="350.75" y1="90.0" y2="90.0"/> + <line stroke="#888888" x1="350.75" x2="350.75" y1="90.0" y2="82.0"/> + <line stroke="#888888" x1="350.75" x2="354.25000000000006" y1="82.0" y2="82.0"/> + <line stroke="#888888" x1="296.5" x2="296.5" y1="149.50000000000003" y2="131.50000000000003"/> + <line stroke="#888888" x1="296.5" x2="331.5" y1="131.50000000000003" y2="131.50000000000003"/> + <line stroke="#888888" x1="331.5" x2="331.5" y1="131.50000000000003" y2="149.50000000000003"/> + <line stroke="#888888" x1="331.5" x2="296.5" y1="149.50000000000003" y2="149.50000000000003"/> + <line stroke="#888888" x1="349.50000000000006" x2="349.50000000000006" y1="111.25000000000001" y2="108.25000000000001"/> + <line stroke="#888888" x1="349.50000000000006" x2="352.50000000000006" y1="108.25000000000001" y2="108.25000000000001"/> + <line stroke="#888888" x1="352.50000000000006" x2="352.50000000000006" y1="108.25000000000001" y2="111.25000000000001"/> + <line stroke="#888888" x1="352.50000000000006" x2="349.50000000000006" y1="111.25000000000001" y2="111.25000000000001"/> + <line stroke="#888888" x1="370.50000000000006" x2="370.50000000000006" y1="110.25000000000001" y2="109.25"/> + <line stroke="#888888" x1="370.50000000000006" x2="371.50000000000006" y1="109.25" y2="109.25"/> + <line stroke="#888888" x1="371.50000000000006" x2="371.50000000000006" y1="109.25" y2="110.25000000000001"/> + <line stroke="#888888" x1="371.50000000000006" x2="370.50000000000006" y1="110.25000000000001" y2="110.25000000000001"/> + <line stroke="#888888" x1="350.5" x2="350.5" y1="112.75000000000001" y2="111.75000000000001"/> + <line stroke="#888888" x1="350.5" x2="351.50000000000006" y1="111.75000000000001" y2="111.75000000000001"/> + <line stroke="#888888" x1="351.50000000000006" x2="351.50000000000006" y1="111.75000000000001" y2="112.75000000000001"/> + <line stroke="#888888" x1="351.50000000000006" x2="350.5" y1="112.75000000000001" y2="112.75000000000001"/> + <line stroke="#888888" x1="370.50000000000006" x2="370.50000000000006" y1="112.75000000000001" y2="111.75000000000001"/> + <line stroke="#888888" x1="370.50000000000006" x2="371.50000000000006" y1="111.75000000000001" y2="111.75000000000001"/> + <line stroke="#888888" x1="371.50000000000006" x2="371.50000000000006" y1="111.75000000000001" y2="112.75000000000001"/> + <line stroke="#888888" x1="371.50000000000006" x2="370.50000000000006" y1="112.75000000000001" y2="112.75000000000001"/> + <line stroke="#888888" x1="350.5" x2="350.5" y1="115.25000000000001" y2="114.25000000000001"/> + <line stroke="#888888" x1="350.5" x2="351.50000000000006" y1="114.25000000000001" y2="114.25000000000001"/> + <line stroke="#888888" x1="351.50000000000006" x2="351.50000000000006" y1="114.25000000000001" y2="115.25000000000001"/> + <line stroke="#888888" x1="351.50000000000006" x2="350.5" y1="115.25000000000001" y2="115.25000000000001"/> + <line stroke="#888888" x1="370.50000000000006" x2="370.50000000000006" y1="115.25000000000001" y2="114.25000000000001"/> + <line stroke="#888888" x1="370.50000000000006" x2="371.50000000000006" y1="114.25000000000001" y2="114.25000000000001"/> + <line stroke="#888888" x1="371.50000000000006" x2="371.50000000000006" y1="114.25000000000001" y2="115.25000000000001"/> + <line stroke="#888888" x1="371.50000000000006" x2="370.50000000000006" y1="115.25000000000001" y2="115.25000000000001"/> + <line stroke="#888888" x1="350.5" x2="350.5" y1="117.75000000000001" y2="116.75000000000001"/> + <line stroke="#888888" x1="350.5" x2="351.50000000000006" y1="116.75000000000001" y2="116.75000000000001"/> + <line stroke="#888888" x1="351.50000000000006" x2="351.50000000000006" y1="116.75000000000001" y2="117.75000000000001"/> + <line stroke="#888888" x1="351.50000000000006" x2="350.5" y1="117.75000000000001" y2="117.75000000000001"/> + <line stroke="#888888" x1="370.50000000000006" x2="370.50000000000006" y1="117.75000000000001" y2="116.75000000000001"/> + <line stroke="#888888" x1="370.50000000000006" x2="371.50000000000006" y1="116.75000000000001" y2="116.75000000000001"/> + <line stroke="#888888" x1="371.50000000000006" x2="371.50000000000006" y1="116.75000000000001" y2="117.75000000000001"/> + <line stroke="#888888" x1="371.50000000000006" x2="370.50000000000006" y1="117.75000000000001" y2="117.75000000000001"/> + <line stroke="#888888" x1="350.5" x2="350.5" y1="120.25000000000001" y2="119.25000000000001"/> + <line stroke="#888888" x1="350.5" x2="351.50000000000006" y1="119.25000000000001" y2="119.25000000000001"/> + <line stroke="#888888" x1="351.50000000000006" x2="351.50000000000006" y1="119.25000000000001" y2="120.25000000000001"/> + <line stroke="#888888" x1="351.50000000000006" x2="350.5" y1="120.25000000000001" y2="120.25000000000001"/> + <line stroke="#888888" x1="370.50000000000006" x2="370.50000000000006" y1="120.25000000000001" y2="119.25000000000001"/> + <line stroke="#888888" x1="370.50000000000006" x2="371.50000000000006" y1="119.25000000000001" y2="119.25000000000001"/> + <line stroke="#888888" x1="371.50000000000006" x2="371.50000000000006" y1="119.25000000000001" y2="120.25000000000001"/> + <line stroke="#888888" x1="371.50000000000006" x2="370.50000000000006" y1="120.25000000000001" y2="120.25000000000001"/> + <line stroke="#888888" x1="350.5" x2="350.5" y1="122.75000000000001" y2="121.75000000000001"/> + <line stroke="#888888" x1="350.5" x2="351.50000000000006" y1="121.75000000000001" y2="121.75000000000001"/> + <line stroke="#888888" x1="351.50000000000006" x2="351.50000000000006" y1="121.75000000000001" y2="122.75000000000001"/> + <line stroke="#888888" x1="351.50000000000006" x2="350.5" y1="122.75000000000001" y2="122.75000000000001"/> + <line stroke="#888888" x1="370.50000000000006" x2="370.50000000000006" y1="122.75000000000001" y2="121.75000000000001"/> + <line stroke="#888888" x1="370.50000000000006" x2="371.50000000000006" y1="121.75000000000001" y2="121.75000000000001"/> + <line stroke="#888888" x1="371.50000000000006" x2="371.50000000000006" y1="121.75000000000001" y2="122.75000000000001"/> + <line stroke="#888888" x1="371.50000000000006" x2="370.50000000000006" y1="122.75000000000001" y2="122.75000000000001"/> + <line stroke="#888888" x1="350.5" x2="350.5" y1="125.25000000000001" y2="124.25000000000001"/> + <line stroke="#888888" x1="350.5" x2="351.50000000000006" y1="124.25000000000001" y2="124.25000000000001"/> + <line stroke="#888888" x1="351.50000000000006" x2="351.50000000000006" y1="124.25000000000001" y2="125.25000000000001"/> + <line stroke="#888888" x1="351.50000000000006" x2="350.5" y1="125.25000000000001" y2="125.25000000000001"/> + <line stroke="#888888" x1="370.50000000000006" x2="370.50000000000006" y1="125.25000000000001" y2="124.25000000000001"/> + <line stroke="#888888" x1="370.50000000000006" x2="371.50000000000006" y1="124.25000000000001" y2="124.25000000000001"/> + <line stroke="#888888" x1="371.50000000000006" x2="371.50000000000006" y1="124.25000000000001" y2="125.25000000000001"/> + <line stroke="#888888" x1="371.50000000000006" x2="370.50000000000006" y1="125.25000000000001" y2="125.25000000000001"/> + <line stroke="#888888" x1="350.5" x2="350.5" y1="127.75000000000001" y2="126.75000000000001"/> + <line stroke="#888888" x1="350.5" x2="351.50000000000006" y1="126.75000000000001" y2="126.75000000000001"/> + <line stroke="#888888" x1="351.50000000000006" x2="351.50000000000006" y1="126.75000000000001" y2="127.75000000000001"/> + <line stroke="#888888" x1="351.50000000000006" x2="350.5" y1="127.75000000000001" y2="127.75000000000001"/> + <line stroke="#888888" x1="370.50000000000006" x2="370.50000000000006" y1="127.75000000000001" y2="126.75000000000001"/> + <line stroke="#888888" x1="370.50000000000006" x2="371.50000000000006" y1="126.75000000000001" y2="126.75000000000001"/> + <line stroke="#888888" x1="371.50000000000006" x2="371.50000000000006" y1="126.75000000000001" y2="127.75000000000001"/> + <line stroke="#888888" x1="371.50000000000006" x2="370.50000000000006" y1="127.75000000000001" y2="127.75000000000001"/> + <line stroke="#888888" x1="350.5" x2="350.5" y1="130.25000000000003" y2="129.25000000000003"/> + <line stroke="#888888" x1="350.5" x2="351.50000000000006" y1="129.25000000000003" y2="129.25000000000003"/> + <line stroke="#888888" x1="351.50000000000006" x2="351.50000000000006" y1="129.25000000000003" y2="130.25000000000003"/> + <line stroke="#888888" x1="351.50000000000006" x2="350.5" y1="130.25000000000003" y2="130.25000000000003"/> + <line stroke="#888888" x1="370.50000000000006" x2="370.50000000000006" y1="130.25000000000003" y2="129.25000000000003"/> + <line stroke="#888888" x1="370.50000000000006" x2="371.50000000000006" y1="129.25000000000003" y2="129.25000000000003"/> + <line stroke="#888888" x1="371.50000000000006" x2="371.50000000000006" y1="129.25000000000003" y2="130.25000000000003"/> + <line stroke="#888888" x1="371.50000000000006" x2="370.50000000000006" y1="130.25000000000003" y2="130.25000000000003"/> + <line stroke="#888888" x1="350.5" x2="350.5" y1="132.75000000000003" y2="131.75000000000003"/> + <line stroke="#888888" x1="350.5" x2="351.50000000000006" y1="131.75000000000003" y2="131.75000000000003"/> + <line stroke="#888888" x1="351.50000000000006" x2="351.50000000000006" y1="131.75000000000003" y2="132.75000000000003"/> + <line stroke="#888888" x1="351.50000000000006" x2="350.5" y1="132.75000000000003" y2="132.75000000000003"/> + <line stroke="#888888" x1="370.50000000000006" x2="370.50000000000006" y1="132.75000000000003" y2="131.75000000000003"/> + <line stroke="#888888" x1="370.50000000000006" x2="371.50000000000006" y1="131.75000000000003" y2="131.75000000000003"/> + <line stroke="#888888" x1="371.50000000000006" x2="371.50000000000006" y1="131.75000000000003" y2="132.75000000000003"/> + <line stroke="#888888" x1="371.50000000000006" x2="370.50000000000006" y1="132.75000000000003" y2="132.75000000000003"/> + <line stroke="#888888" x1="350.5" x2="350.5" y1="135.25000000000003" y2="134.25000000000003"/> + <line stroke="#888888" x1="350.5" x2="351.50000000000006" y1="134.25000000000003" y2="134.25000000000003"/> + <line stroke="#888888" x1="351.50000000000006" x2="351.50000000000006" y1="134.25000000000003" y2="135.25000000000003"/> + <line stroke="#888888" x1="351.50000000000006" x2="350.5" y1="135.25000000000003" y2="135.25000000000003"/> + <line stroke="#888888" x1="370.50000000000006" x2="370.50000000000006" y1="135.25000000000003" y2="134.25000000000003"/> + <line stroke="#888888" x1="370.50000000000006" x2="371.50000000000006" y1="134.25000000000003" y2="134.25000000000003"/> + <line stroke="#888888" x1="371.50000000000006" x2="371.50000000000006" y1="134.25000000000003" y2="135.25000000000003"/> + <line stroke="#888888" x1="371.50000000000006" x2="370.50000000000006" y1="135.25000000000003" y2="135.25000000000003"/> + <line stroke="#888888" x1="350.5" x2="350.5" y1="137.75000000000003" y2="136.75"/> + <line stroke="#888888" x1="350.5" x2="351.50000000000006" y1="136.75" y2="136.75"/> + <line stroke="#888888" x1="351.50000000000006" x2="351.50000000000006" y1="136.75" y2="137.75000000000003"/> + <line stroke="#888888" x1="351.50000000000006" x2="350.5" y1="137.75000000000003" y2="137.75000000000003"/> + <line stroke="#888888" x1="370.50000000000006" x2="370.50000000000006" y1="137.75000000000003" y2="136.75"/> + <line stroke="#888888" x1="370.50000000000006" x2="371.50000000000006" y1="136.75" y2="136.75"/> + <line stroke="#888888" x1="371.50000000000006" x2="371.50000000000006" y1="136.75" y2="137.75000000000003"/> + <line stroke="#888888" x1="371.50000000000006" x2="370.50000000000006" y1="137.75000000000003" y2="137.75000000000003"/> + <line stroke="#888888" x1="350.5" x2="350.5" y1="140.25000000000003" y2="139.25"/> + <line stroke="#888888" x1="350.5" x2="351.50000000000006" y1="139.25" y2="139.25"/> + <line stroke="#888888" x1="351.50000000000006" x2="351.50000000000006" y1="139.25" y2="140.25000000000003"/> + <line stroke="#888888" x1="351.50000000000006" x2="350.5" y1="140.25000000000003" y2="140.25000000000003"/> + <line stroke="#888888" x1="370.50000000000006" x2="370.50000000000006" y1="140.25000000000003" y2="139.25"/> + <line stroke="#888888" x1="370.50000000000006" x2="371.50000000000006" y1="139.25" y2="139.25"/> + <line stroke="#888888" x1="371.50000000000006" x2="371.50000000000006" y1="139.25" y2="140.25000000000003"/> + <line stroke="#888888" x1="371.50000000000006" x2="370.50000000000006" y1="140.25000000000003" y2="140.25000000000003"/> + <line stroke="#888888" x1="350.5" x2="350.5" y1="142.75000000000003" y2="141.75000000000003"/> + <line stroke="#888888" x1="350.5" x2="351.50000000000006" y1="141.75000000000003" y2="141.75000000000003"/> + <line stroke="#888888" x1="351.50000000000006" x2="351.50000000000006" y1="141.75000000000003" y2="142.75000000000003"/> + <line stroke="#888888" x1="351.50000000000006" x2="350.5" y1="142.75000000000003" y2="142.75000000000003"/> + <line stroke="#888888" x1="370.50000000000006" x2="370.50000000000006" y1="142.75000000000003" y2="141.75000000000003"/> + <line stroke="#888888" x1="370.50000000000006" x2="371.50000000000006" y1="141.75000000000003" y2="141.75000000000003"/> + <line stroke="#888888" x1="371.50000000000006" x2="371.50000000000006" y1="141.75000000000003" y2="142.75000000000003"/> + <line stroke="#888888" x1="371.50000000000006" x2="370.50000000000006" y1="142.75000000000003" y2="142.75000000000003"/> + <line stroke="#888888" x1="350.5" x2="350.5" y1="145.25" y2="144.25000000000003"/> + <line stroke="#888888" x1="350.5" x2="351.50000000000006" y1="144.25000000000003" y2="144.25000000000003"/> + <line stroke="#888888" x1="351.50000000000006" x2="351.50000000000006" y1="144.25000000000003" y2="145.25"/> + <line stroke="#888888" x1="351.50000000000006" x2="350.5" y1="145.25" y2="145.25"/> + <line stroke="#888888" x1="370.50000000000006" x2="370.50000000000006" y1="145.25" y2="144.25000000000003"/> + <line stroke="#888888" x1="370.50000000000006" x2="371.50000000000006" y1="144.25000000000003" y2="144.25000000000003"/> + <line stroke="#888888" x1="371.50000000000006" x2="371.50000000000006" y1="144.25000000000003" y2="145.25"/> + <line stroke="#888888" x1="371.50000000000006" x2="370.50000000000006" y1="145.25" y2="145.25"/> + <line stroke="#888888" x1="350.5" x2="350.5" y1="147.75" y2="146.75000000000003"/> + <line stroke="#888888" x1="350.5" x2="351.50000000000006" y1="146.75000000000003" y2="146.75000000000003"/> + <line stroke="#888888" x1="351.50000000000006" x2="351.50000000000006" y1="146.75000000000003" y2="147.75"/> + <line stroke="#888888" x1="351.50000000000006" x2="350.5" y1="147.75" y2="147.75"/> + <line stroke="#888888" x1="369.50000000000006" x2="369.50000000000006" y1="148.75000000000003" y2="145.75"/> + <line stroke="#888888" x1="369.50000000000006" x2="372.50000000000006" y1="145.75" y2="145.75"/> + <line stroke="#888888" x1="372.50000000000006" x2="372.50000000000006" y1="145.75" y2="148.75000000000003"/> + <line stroke="#888888" x1="372.50000000000006" x2="369.50000000000006" y1="148.75000000000003" y2="148.75000000000003"/> + <line stroke="#888888" x1="365.25000000000006" x2="356.75000000000006" y1="105.75" y2="105.75"/> + <line stroke="#888888" x1="356.75000000000006" x2="356.75000000000006" y1="105.75" y2="105.25000000000001"/> + <line stroke="#888888" x1="356.75000000000006" x2="365.25000000000006" y1="105.25000000000001" y2="105.25000000000001"/> + <line stroke="#888888" x1="365.25000000000006" x2="365.25000000000006" y1="105.25000000000001" y2="105.75"/> + <line stroke="#888888" x1="356.75000000000006" x2="365.25000000000006" y1="153.50000000000003" y2="153.50000000000003"/> + <line stroke="#888888" x1="365.25000000000006" x2="365.25000000000006" y1="153.50000000000003" y2="154.00000000000003"/> + <line stroke="#888888" x1="365.25000000000006" x2="356.75000000000006" y1="154.00000000000003" y2="154.00000000000003"/> + <line stroke="#888888" x1="356.75000000000006" x2="356.75000000000006" y1="154.00000000000003" y2="153.50000000000003"/> + <line stroke="#888888" x1="388.00000000000006" x2="388.00000000000006" y1="149.00000000000003" y2="136.0"/> + <line stroke="#888888" x1="388.00000000000006" x2="418.00000000000006" y1="136.0" y2="136.0"/> + <line stroke="#888888" x1="418.00000000000006" x2="418.00000000000006" y1="136.0" y2="149.00000000000003"/> + <line stroke="#888888" x1="418.00000000000006" x2="388.00000000000006" y1="149.00000000000003" y2="149.00000000000003"/> + <line stroke="#888888" x1="395.06818181818187" x2="383.6590909090909" y1="103.5" y2="103.5"/> + <line stroke="#888888" x1="383.6590909090909" x2="383.6590909090909" y1="103.5" y2="103.00000000000001"/> + <line stroke="#888888" x1="383.6590909090909" x2="395.06818181818187" y1="103.00000000000001" y2="103.00000000000001"/> + <line stroke="#888888" x1="395.06818181818187" x2="395.06818181818187" y1="103.00000000000001" y2="103.5"/> + <line stroke="#888888" x1="422.3409090909092" x2="410.93181818181824" y1="103.5" y2="103.5"/> + <line stroke="#888888" x1="410.93181818181824" x2="410.93181818181824" y1="103.5" y2="103.00000000000001"/> + <line stroke="#888888" x1="410.93181818181824" x2="422.3409090909092" y1="103.00000000000001" y2="103.00000000000001"/> + <line stroke="#888888" x1="422.3409090909092" x2="422.3409090909092" y1="103.00000000000001" y2="103.5"/> + <line stroke="#888888" x1="425.25000000000006" x2="425.25000000000006" y1="120.4318181818182" y2="108.84090909090911"/> + <line stroke="#888888" x1="425.25000000000006" x2="425.75000000000006" y1="108.84090909090911" y2="108.84090909090911"/> + <line stroke="#888888" x1="425.75000000000006" x2="425.75000000000006" y1="108.84090909090911" y2="120.4318181818182"/> + <line stroke="#888888" x1="425.75000000000006" x2="425.25000000000006" y1="120.4318181818182" y2="120.4318181818182"/> + <line stroke="#888888" x1="425.25000000000006" x2="425.25000000000006" y1="148.15909090909093" y2="136.5681818181818"/> + <line stroke="#888888" x1="425.25000000000006" x2="425.75000000000006" y1="136.5681818181818" y2="136.5681818181818"/> + <line stroke="#888888" x1="425.75000000000006" x2="425.75000000000006" y1="136.5681818181818" y2="148.15909090909093"/> + <line stroke="#888888" x1="425.75000000000006" x2="425.25000000000006" y1="148.15909090909093" y2="148.15909090909093"/> + <line stroke="#888888" x1="265.50000000000006" x2="265.50000000000006" y1="111.25000000000001" y2="108.25000000000001"/> + <line stroke="#888888" x1="265.50000000000006" x2="268.50000000000006" y1="108.25000000000001" y2="108.25000000000001"/> + <line stroke="#888888" x1="268.50000000000006" x2="268.50000000000006" y1="108.25000000000001" y2="111.25000000000001"/> + <line stroke="#888888" x1="268.50000000000006" x2="265.50000000000006" y1="111.25000000000001" y2="111.25000000000001"/> + <line stroke="#888888" x1="286.5" x2="286.5" y1="110.25000000000001" y2="109.25"/> + <line stroke="#888888" x1="286.5" x2="287.5" y1="109.25" y2="109.25"/> + <line stroke="#888888" x1="287.5" x2="287.5" y1="109.25" y2="110.25000000000001"/> + <line stroke="#888888" x1="287.5" x2="286.5" y1="110.25000000000001" y2="110.25000000000001"/> + <line stroke="#888888" x1="266.5" x2="266.5" y1="112.75000000000001" y2="111.75000000000001"/> + <line stroke="#888888" x1="266.5" x2="267.50000000000006" y1="111.75000000000001" y2="111.75000000000001"/> + <line stroke="#888888" x1="267.50000000000006" x2="267.50000000000006" y1="111.75000000000001" y2="112.75000000000001"/> + <line stroke="#888888" x1="267.50000000000006" x2="266.5" y1="112.75000000000001" y2="112.75000000000001"/> + <line stroke="#888888" x1="286.5" x2="286.5" y1="112.75000000000001" y2="111.75000000000001"/> + <line stroke="#888888" x1="286.5" x2="287.5" y1="111.75000000000001" y2="111.75000000000001"/> + <line stroke="#888888" x1="287.5" x2="287.5" y1="111.75000000000001" y2="112.75000000000001"/> + <line stroke="#888888" x1="287.5" x2="286.5" y1="112.75000000000001" y2="112.75000000000001"/> + <line stroke="#888888" x1="266.5" x2="266.5" y1="115.25000000000001" y2="114.25000000000001"/> + <line stroke="#888888" x1="266.5" x2="267.50000000000006" y1="114.25000000000001" y2="114.25000000000001"/> + <line stroke="#888888" x1="267.50000000000006" x2="267.50000000000006" y1="114.25000000000001" y2="115.25000000000001"/> + <line stroke="#888888" x1="267.50000000000006" x2="266.5" y1="115.25000000000001" y2="115.25000000000001"/> + <line stroke="#888888" x1="286.5" x2="286.5" y1="115.25000000000001" y2="114.25000000000001"/> + <line stroke="#888888" x1="286.5" x2="287.5" y1="114.25000000000001" y2="114.25000000000001"/> + <line stroke="#888888" x1="287.5" x2="287.5" y1="114.25000000000001" y2="115.25000000000001"/> + <line stroke="#888888" x1="287.5" x2="286.5" y1="115.25000000000001" y2="115.25000000000001"/> + <line stroke="#888888" x1="266.5" x2="266.5" y1="117.75000000000001" y2="116.75000000000001"/> + <line stroke="#888888" x1="266.5" x2="267.50000000000006" y1="116.75000000000001" y2="116.75000000000001"/> + <line stroke="#888888" x1="267.50000000000006" x2="267.50000000000006" y1="116.75000000000001" y2="117.75000000000001"/> + <line stroke="#888888" x1="267.50000000000006" x2="266.5" y1="117.75000000000001" y2="117.75000000000001"/> + <line stroke="#888888" x1="286.5" x2="286.5" y1="117.75000000000001" y2="116.75000000000001"/> + <line stroke="#888888" x1="286.5" x2="287.5" y1="116.75000000000001" y2="116.75000000000001"/> + <line stroke="#888888" x1="287.5" x2="287.5" y1="116.75000000000001" y2="117.75000000000001"/> + <line stroke="#888888" x1="287.5" x2="286.5" y1="117.75000000000001" y2="117.75000000000001"/> + <line stroke="#888888" x1="266.5" x2="266.5" y1="120.25000000000001" y2="119.25000000000001"/> + <line stroke="#888888" x1="266.5" x2="267.50000000000006" y1="119.25000000000001" y2="119.25000000000001"/> + <line stroke="#888888" x1="267.50000000000006" x2="267.50000000000006" y1="119.25000000000001" y2="120.25000000000001"/> + <line stroke="#888888" x1="267.50000000000006" x2="266.5" y1="120.25000000000001" y2="120.25000000000001"/> + <line stroke="#888888" x1="286.5" x2="286.5" y1="120.25000000000001" y2="119.25000000000001"/> + <line stroke="#888888" x1="286.5" x2="287.5" y1="119.25000000000001" y2="119.25000000000001"/> + <line stroke="#888888" x1="287.5" x2="287.5" y1="119.25000000000001" y2="120.25000000000001"/> + <line stroke="#888888" x1="287.5" x2="286.5" y1="120.25000000000001" y2="120.25000000000001"/> + <line stroke="#888888" x1="266.5" x2="266.5" y1="122.75000000000001" y2="121.75000000000001"/> + <line stroke="#888888" x1="266.5" x2="267.50000000000006" y1="121.75000000000001" y2="121.75000000000001"/> + <line stroke="#888888" x1="267.50000000000006" x2="267.50000000000006" y1="121.75000000000001" y2="122.75000000000001"/> + <line stroke="#888888" x1="267.50000000000006" x2="266.5" y1="122.75000000000001" y2="122.75000000000001"/> + <line stroke="#888888" x1="286.5" x2="286.5" y1="122.75000000000001" y2="121.75000000000001"/> + <line stroke="#888888" x1="286.5" x2="287.5" y1="121.75000000000001" y2="121.75000000000001"/> + <line stroke="#888888" x1="287.5" x2="287.5" y1="121.75000000000001" y2="122.75000000000001"/> + <line stroke="#888888" x1="287.5" x2="286.5" y1="122.75000000000001" y2="122.75000000000001"/> + <line stroke="#888888" x1="266.5" x2="266.5" y1="125.25000000000001" y2="124.25000000000001"/> + <line stroke="#888888" x1="266.5" x2="267.50000000000006" y1="124.25000000000001" y2="124.25000000000001"/> + <line stroke="#888888" x1="267.50000000000006" x2="267.50000000000006" y1="124.25000000000001" y2="125.25000000000001"/> + <line stroke="#888888" x1="267.50000000000006" x2="266.5" y1="125.25000000000001" y2="125.25000000000001"/> + <line stroke="#888888" x1="286.5" x2="286.5" y1="125.25000000000001" y2="124.25000000000001"/> + <line stroke="#888888" x1="286.5" x2="287.5" y1="124.25000000000001" y2="124.25000000000001"/> + <line stroke="#888888" x1="287.5" x2="287.5" y1="124.25000000000001" y2="125.25000000000001"/> + <line stroke="#888888" x1="287.5" x2="286.5" y1="125.25000000000001" y2="125.25000000000001"/> + <line stroke="#888888" x1="266.5" x2="266.5" y1="127.75000000000001" y2="126.75000000000001"/> + <line stroke="#888888" x1="266.5" x2="267.50000000000006" y1="126.75000000000001" y2="126.75000000000001"/> + <line stroke="#888888" x1="267.50000000000006" x2="267.50000000000006" y1="126.75000000000001" y2="127.75000000000001"/> + <line stroke="#888888" x1="267.50000000000006" x2="266.5" y1="127.75000000000001" y2="127.75000000000001"/> + <line stroke="#888888" x1="286.5" x2="286.5" y1="127.75000000000001" y2="126.75000000000001"/> + <line stroke="#888888" x1="286.5" x2="287.5" y1="126.75000000000001" y2="126.75000000000001"/> + <line stroke="#888888" x1="287.5" x2="287.5" y1="126.75000000000001" y2="127.75000000000001"/> + <line stroke="#888888" x1="287.5" x2="286.5" y1="127.75000000000001" y2="127.75000000000001"/> + <line stroke="#888888" x1="266.5" x2="266.5" y1="130.25000000000003" y2="129.25000000000003"/> + <line stroke="#888888" x1="266.5" x2="267.50000000000006" y1="129.25000000000003" y2="129.25000000000003"/> + <line stroke="#888888" x1="267.50000000000006" x2="267.50000000000006" y1="129.25000000000003" y2="130.25000000000003"/> + <line stroke="#888888" x1="267.50000000000006" x2="266.5" y1="130.25000000000003" y2="130.25000000000003"/> + <line stroke="#888888" x1="286.5" x2="286.5" y1="130.25000000000003" y2="129.25000000000003"/> + <line stroke="#888888" x1="286.5" x2="287.5" y1="129.25000000000003" y2="129.25000000000003"/> + <line stroke="#888888" x1="287.5" x2="287.5" y1="129.25000000000003" y2="130.25000000000003"/> + <line stroke="#888888" x1="287.5" x2="286.5" y1="130.25000000000003" y2="130.25000000000003"/> + <line stroke="#888888" x1="266.5" x2="266.5" y1="132.75000000000003" y2="131.75000000000003"/> + <line stroke="#888888" x1="266.5" x2="267.50000000000006" y1="131.75000000000003" y2="131.75000000000003"/> + <line stroke="#888888" x1="267.50000000000006" x2="267.50000000000006" y1="131.75000000000003" y2="132.75000000000003"/> + <line stroke="#888888" x1="267.50000000000006" x2="266.5" y1="132.75000000000003" y2="132.75000000000003"/> + <line stroke="#888888" x1="286.5" x2="286.5" y1="132.75000000000003" y2="131.75000000000003"/> + <line stroke="#888888" x1="286.5" x2="287.5" y1="131.75000000000003" y2="131.75000000000003"/> + <line stroke="#888888" x1="287.5" x2="287.5" y1="131.75000000000003" y2="132.75000000000003"/> + <line stroke="#888888" x1="287.5" x2="286.5" y1="132.75000000000003" y2="132.75000000000003"/> + <line stroke="#888888" x1="266.5" x2="266.5" y1="135.25000000000003" y2="134.25000000000003"/> + <line stroke="#888888" x1="266.5" x2="267.50000000000006" y1="134.25000000000003" y2="134.25000000000003"/> + <line stroke="#888888" x1="267.50000000000006" x2="267.50000000000006" y1="134.25000000000003" y2="135.25000000000003"/> + <line stroke="#888888" x1="267.50000000000006" x2="266.5" y1="135.25000000000003" y2="135.25000000000003"/> + <line stroke="#888888" x1="286.5" x2="286.5" y1="135.25000000000003" y2="134.25000000000003"/> + <line stroke="#888888" x1="286.5" x2="287.5" y1="134.25000000000003" y2="134.25000000000003"/> + <line stroke="#888888" x1="287.5" x2="287.5" y1="134.25000000000003" y2="135.25000000000003"/> + <line stroke="#888888" x1="287.5" x2="286.5" y1="135.25000000000003" y2="135.25000000000003"/> + <line stroke="#888888" x1="266.5" x2="266.5" y1="137.75000000000003" y2="136.75"/> + <line stroke="#888888" x1="266.5" x2="267.50000000000006" y1="136.75" y2="136.75"/> + <line stroke="#888888" x1="267.50000000000006" x2="267.50000000000006" y1="136.75" y2="137.75000000000003"/> + <line stroke="#888888" x1="267.50000000000006" x2="266.5" y1="137.75000000000003" y2="137.75000000000003"/> + <line stroke="#888888" x1="286.5" x2="286.5" y1="137.75000000000003" y2="136.75"/> + <line stroke="#888888" x1="286.5" x2="287.5" y1="136.75" y2="136.75"/> + <line stroke="#888888" x1="287.5" x2="287.5" y1="136.75" y2="137.75000000000003"/> + <line stroke="#888888" x1="287.5" x2="286.5" y1="137.75000000000003" y2="137.75000000000003"/> + <line stroke="#888888" x1="266.5" x2="266.5" y1="140.25000000000003" y2="139.25"/> + <line stroke="#888888" x1="266.5" x2="267.50000000000006" y1="139.25" y2="139.25"/> + <line stroke="#888888" x1="267.50000000000006" x2="267.50000000000006" y1="139.25" y2="140.25000000000003"/> + <line stroke="#888888" x1="267.50000000000006" x2="266.5" y1="140.25000000000003" y2="140.25000000000003"/> + <line stroke="#888888" x1="286.5" x2="286.5" y1="140.25000000000003" y2="139.25"/> + <line stroke="#888888" x1="286.5" x2="287.5" y1="139.25" y2="139.25"/> + <line stroke="#888888" x1="287.5" x2="287.5" y1="139.25" y2="140.25000000000003"/> + <line stroke="#888888" x1="287.5" x2="286.5" y1="140.25000000000003" y2="140.25000000000003"/> + <line stroke="#888888" x1="266.5" x2="266.5" y1="142.75000000000003" y2="141.75000000000003"/> + <line stroke="#888888" x1="266.5" x2="267.50000000000006" y1="141.75000000000003" y2="141.75000000000003"/> + <line stroke="#888888" x1="267.50000000000006" x2="267.50000000000006" y1="141.75000000000003" y2="142.75000000000003"/> + <line stroke="#888888" x1="267.50000000000006" x2="266.5" y1="142.75000000000003" y2="142.75000000000003"/> + <line stroke="#888888" x1="286.5" x2="286.5" y1="142.75000000000003" y2="141.75000000000003"/> + <line stroke="#888888" x1="286.5" x2="287.5" y1="141.75000000000003" y2="141.75000000000003"/> + <line stroke="#888888" x1="287.5" x2="287.5" y1="141.75000000000003" y2="142.75000000000003"/> + <line stroke="#888888" x1="287.5" x2="286.5" y1="142.75000000000003" y2="142.75000000000003"/> + <line stroke="#888888" x1="266.5" x2="266.5" y1="145.25" y2="144.25000000000003"/> + <line stroke="#888888" x1="266.5" x2="267.50000000000006" y1="144.25000000000003" y2="144.25000000000003"/> + <line stroke="#888888" x1="267.50000000000006" x2="267.50000000000006" y1="144.25000000000003" y2="145.25"/> + <line stroke="#888888" x1="267.50000000000006" x2="266.5" y1="145.25" y2="145.25"/> + <line stroke="#888888" x1="286.5" x2="286.5" y1="145.25" y2="144.25000000000003"/> + <line stroke="#888888" x1="286.5" x2="287.5" y1="144.25000000000003" y2="144.25000000000003"/> + <line stroke="#888888" x1="287.5" x2="287.5" y1="144.25000000000003" y2="145.25"/> + <line stroke="#888888" x1="287.5" x2="286.5" y1="145.25" y2="145.25"/> + <line stroke="#888888" x1="266.5" x2="266.5" y1="147.75" y2="146.75000000000003"/> + <line stroke="#888888" x1="266.5" x2="267.50000000000006" y1="146.75000000000003" y2="146.75000000000003"/> + <line stroke="#888888" x1="267.50000000000006" x2="267.50000000000006" y1="146.75000000000003" y2="147.75"/> + <line stroke="#888888" x1="267.50000000000006" x2="266.5" y1="147.75" y2="147.75"/> + <line stroke="#888888" x1="285.50000000000006" x2="285.50000000000006" y1="148.75000000000003" y2="145.75"/> + <line stroke="#888888" x1="285.50000000000006" x2="288.50000000000006" y1="145.75" y2="145.75"/> + <line stroke="#888888" x1="288.50000000000006" x2="288.50000000000006" y1="145.75" y2="148.75000000000003"/> + <line stroke="#888888" x1="288.50000000000006" x2="285.50000000000006" y1="148.75000000000003" y2="148.75000000000003"/> + <line stroke="#888888" x1="281.25" x2="272.75" y1="105.75" y2="105.75"/> + <line stroke="#888888" x1="272.75" x2="272.75" y1="105.75" y2="105.25000000000001"/> + <line stroke="#888888" x1="272.75" x2="281.25" y1="105.25000000000001" y2="105.25000000000001"/> + <line stroke="#888888" x1="281.25" x2="281.25" y1="105.25000000000001" y2="105.75"/> + <line stroke="#888888" x1="272.75" x2="281.25" y1="153.50000000000003" y2="153.50000000000003"/> + <line stroke="#888888" x1="281.25" x2="281.25" y1="153.50000000000003" y2="154.00000000000003"/> + <line stroke="#888888" x1="281.25" x2="272.75" y1="154.00000000000003" y2="154.00000000000003"/> + <line stroke="#888888" x1="272.75" x2="272.75" y1="154.00000000000003" y2="153.50000000000003"/> + <line stroke="#888888" x1="257.5" x2="262.5" y1="109.0909090909091" y2="109.0909090909091"/> + <line stroke="#888888" x1="262.5" x2="262.5" y1="109.0909090909091" y2="120.1818181818182"/> + <line stroke="#888888" x1="262.5" x2="257.5" y1="120.1818181818182" y2="120.1818181818182"/> + <line stroke="#888888" x1="257.5" x2="262.5" y1="136.8181818181818" y2="136.8181818181818"/> + <line stroke="#888888" x1="262.5" x2="262.5" y1="136.8181818181818" y2="147.90909090909093"/> + <line stroke="#888888" x1="262.5" x2="257.5" y1="147.90909090909093" y2="147.90909090909093"/> + <line stroke="#888888" x1="282.75" x2="286.25" y1="82.0" y2="82.0"/> + <line stroke="#888888" x1="286.25" x2="286.25" y1="82.0" y2="90.0"/> + <line stroke="#888888" x1="286.25" x2="282.75" y1="90.0" y2="90.0"/> +</svg> diff --git a/rocolib/output/ServoMountAndStack/graph-autofold-default.dxf b/rocolib/output/ServoMountAndStack/graph-autofold-default.dxf new file mode 100644 index 0000000000000000000000000000000000000000..42cea247808030e55fa8ee50040d05e00f9a29c5 --- /dev/null +++ b/rocolib/output/ServoMountAndStack/graph-autofold-default.dxf @@ -0,0 +1,9988 @@ + 0 +SECTION + 2 +HEADER + 9 +$ACADVER + 1 +AC1009 + 9 +$INSBASE + 10 +0.0 + 20 +0.0 + 30 +0.0 + 9 +$EXTMIN + 10 +0.0 + 20 +0.0 + 30 +0.0 + 9 +$EXTMAX + 10 +100.0 + 20 +100.0 + 30 +0.0 + 9 +$UNITMODE + 70 +0 + 9 +$AUNITS + 70 +0 + 9 +$ANGBASE + 50 +0.0 + 9 +$ANGDIR + 70 +0 + 0 +ENDSEC + 0 +SECTION + 2 +TABLES + 0 +TABLE + 2 +LTYPE + 70 +20 + 0 +LTYPE + 2 +CONTINUOUS + 70 +0 + 3 +Solid + 72 +65 + 73 +0 + 40 +0.0 + 0 +LTYPE + 2 +CENTER + 70 +0 + 3 +Center ____ _ ____ _ ____ _ ____ _ ____ _ ____ + 72 +65 + 73 +4 + 40 +2.0 + 49 +1.25 + 49 +-0.25 + 49 +0.25 + 49 +-0.25 + 0 +LTYPE + 2 +CENTERX2 + 70 +0 + 3 +Center (2x) ________ __ ________ __ ________ + 72 +65 + 73 +4 + 40 +3.5 + 49 +2.5 + 49 +-0.25 + 49 +0.5 + 49 +-0.25 + 0 +LTYPE + 2 +CENTER2 + 70 +0 + 3 +Center (.5x) ____ _ ____ _ ____ _ ____ _ ____ + 72 +65 + 73 +4 + 40 +1.0 + 49 +0.625 + 49 +-0.125 + 49 +0.125 + 49 +-0.125 + 0 +LTYPE + 2 +DASHED + 70 +0 + 3 +Dashed __ __ __ __ __ __ __ __ __ __ __ __ __ _ + 72 +65 + 73 +2 + 40 +0.6 + 49 +0.5 + 49 +-0.1 + 0 +LTYPE + 2 +DASHEDX2 + 70 +0 + 3 +Dashed (2x) ____ ____ ____ ____ ____ ____ + 72 +65 + 73 +2 + 40 +1.2 + 49 +1.0 + 49 +-0.2 + 0 +LTYPE + 2 +DASHED2 + 70 +0 + 3 +Dashed (.5x) _ _ _ _ _ _ _ _ _ _ _ _ _ _ + 72 +65 + 73 +2 + 40 +0.3 + 49 +0.25 + 49 +-0.05 + 0 +LTYPE + 2 +PHANTOM + 70 +0 + 3 +Phantom ______ __ __ ______ __ __ ______ + 72 +65 + 73 +6 + 40 +2.5 + 49 +1.25 + 49 +-0.25 + 49 +0.25 + 49 +-0.25 + 49 +0.25 + 49 +-0.25 + 0 +LTYPE + 2 +PHANTOMX2 + 70 +0 + 3 +Phantom (2x)____________ ____ ____ ____________ + 72 +65 + 73 +6 + 40 +4.25 + 49 +2.5 + 49 +-0.25 + 49 +0.5 + 49 +-0.25 + 49 +0.5 + 49 +-0.25 + 0 +LTYPE + 2 +PHANTOM2 + 70 +0 + 3 +Phantom (.5x) ___ _ _ ___ _ _ ___ _ _ ___ _ _ ___ + 72 +65 + 73 +6 + 40 +1.25 + 49 +0.625 + 49 +-0.125 + 49 +0.125 + 49 +-0.125 + 49 +0.125 + 49 +-0.125 + 0 +LTYPE + 2 +DASHDOT + 70 +0 + 3 +Dash dot __ . __ . __ . __ . __ . __ . __ . __ + 72 +65 + 73 +4 + 40 +1.4 + 49 +1.0 + 49 +-0.2 + 49 +0.0 + 49 +-0.2 + 0 +LTYPE + 2 +DASHDOTX2 + 70 +0 + 3 +Dash dot (2x) ____ . ____ . ____ . ____ + 72 +65 + 73 +4 + 40 +2.4 + 49 +2.0 + 49 +-0.2 + 49 +0.0 + 49 +-0.2 + 0 +LTYPE + 2 +DASHDOT2 + 70 +0 + 3 +Dash dot (.5x) _ . _ . _ . _ . _ . _ . _ . _ + 72 +65 + 73 +4 + 40 +0.7 + 49 +0.5 + 49 +-0.1 + 49 +0.0 + 49 +-0.1 + 0 +LTYPE + 2 +DOT + 70 +0 + 3 +Dot . . . . . . . . . . . . . . . . + 72 +65 + 73 +2 + 40 +0.2 + 49 +0.0 + 49 +-0.2 + 0 +LTYPE + 2 +DOTX2 + 70 +0 + 3 +Dot (2x) . . . . . . . . + 72 +65 + 73 +2 + 40 +0.4 + 49 +0.0 + 49 +-0.4 + 0 +LTYPE + 2 +DOT2 + 70 +0 + 3 +Dot (.5) . . . . . . . . . . . . . . . . . . . + 72 +65 + 73 +2 + 40 +0.1 + 49 +0.0 + 49 +-0.1 + 0 +LTYPE + 2 +DIVIDE + 70 +0 + 3 +Divide __ . . __ . . __ . . __ . . __ . . __ + 72 +65 + 73 +6 + 40 +1.6 + 49 +1.0 + 49 +-0.2 + 49 +0.0 + 49 +-0.2 + 49 +0.0 + 49 +-0.2 + 0 +LTYPE + 2 +DIVIDEX2 + 70 +0 + 3 +Divide (2x) ____ . . ____ . . ____ . . ____ + 72 +65 + 73 +6 + 40 +2.6 + 49 +2.0 + 49 +-0.2 + 49 +0.0 + 49 +-0.2 + 49 +0.0 + 49 +-0.2 + 0 +LTYPE + 2 +DIVIDE2 + 70 +0 + 3 +Divide(.5x) _ . _ . _ . _ . _ . _ . _ . _ + 72 +65 + 73 +6 + 40 +0.8 + 49 +0.5 + 49 +-0.1 + 49 +0.0 + 49 +-0.1 + 49 +0.0 + 49 +-0.1 + 0 +LTYPE + 2 +DOTTED + 70 +0 + 3 + + 72 +65 + 73 +2 + 40 +1.0 + 49 +0.0 + 49 +-1.0 + 0 +ENDTAB + 0 +TABLE + 2 +LAYER + 70 +9 + 0 +LAYER + 2 +DIMENSIONS + 70 +0 + 62 +1 + 6 +CONTINUOUS + 0 +LAYER + 2 +TABLEBACKGROUND + 70 +0 + 62 +1 + 6 +CONTINUOUS + 0 +LAYER + 2 +TABLECONTENT + 70 +0 + 62 +1 + 6 +CONTINUOUS + 0 +LAYER + 2 +TABLEGRID + 70 +0 + 62 +1 + 6 +CONTINUOUS + 0 +LAYER + 2 +VIEWPORTS + 70 +0 + 62 +7 + 6 +CONTINUOUS + 0 +LAYER + 2 +0 + 70 +0 + 62 +1 + 6 +CONTINUOUS + 0 +LAYER + 2 +-90 + 70 +0 + 62 +1 + 6 +CONTINUOUS + 0 +LAYER + 2 +90 + 70 +0 + 62 +1 + 6 +CONTINUOUS + 0 +LAYER + 2 +45 + 70 +0 + 62 +1 + 6 +CONTINUOUS + 0 +ENDTAB + 0 +TABLE + 2 +STYLE + 70 +12 + 0 +STYLE + 2 +STANDARD + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +arial.ttf + 4 + + 0 +STYLE + 2 +ARIAL + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +arial.ttf + 4 + + 0 +STYLE + 2 +ARIAL_BOLD + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +arialbd.ttf + 4 + + 0 +STYLE + 2 +ARIAL_ITALIC + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +ariali.ttf + 4 + + 0 +STYLE + 2 +ARIAL_BOLD_ITALIC + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +arialbi.ttf + 4 + + 0 +STYLE + 2 +ARIAL_BLACK + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +ariblk.ttf + 4 + + 0 +STYLE + 2 +ISOCPEUR + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +isocpeur.ttf + 4 + + 0 +STYLE + 2 +ISOCPEUR_ITALIC + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +isocpeui.ttf + 4 + + 0 +STYLE + 2 +TIMES + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +times.ttf + 4 + + 0 +STYLE + 2 +TIMES_BOLD + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +timesbd.ttf + 4 + + 0 +STYLE + 2 +TIMES_ITALIC + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +timesi.ttf + 4 + + 0 +STYLE + 2 +TIMES_BOLD_ITALIC + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +timesbi.ttf + 4 + + 0 +ENDTAB + 0 +TABLE + 2 +VIEW + 70 +0 + 0 +ENDTAB + 0 +TABLE + 2 +APPID + 70 +1 + 0 +APPID + 2 +DXFWRITE + 70 +0 + 0 +ENDTAB + 0 +TABLE + 2 +VPORT + 70 +0 + 0 +ENDTAB + 0 +TABLE + 2 +UCS + 70 +0 + 0 +ENDTAB + 0 +ENDSEC + 0 +SECTION + 2 +BLOCKS + 0 +ENDSEC + 0 +SECTION + 2 +ENTITIES + 0 +VIEWPORT + 8 +VIEWPORTS + 67 +1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +1.0 + 41 +1.0 + 68 +1 + 69 +1 +1001 +ACAD +1000 +MVIEW +1002 +{ +1070 +16 +1010 +0.0 +1020 +0.0 +1030 +0.0 +1010 +0.0 +1020 +0.0 +1030 +0.0 +1040 +0.0 +1040 +1.0 +1040 +0.0 +1040 +0.0 +1040 +50.0 +1040 +0.0 +1040 +0.0 +1070 +0 +1070 +100 +1070 +1 +1070 +3 +1070 +0 +1070 +0 +1070 +0 +1070 +0 +1040 +0.0 +1040 +0.0 +1040 +0.0 +1040 +0.1 +1040 +0.1 +1040 +0.1 +1040 +0.1 +1070 +0 +1002 +{ +1002 +} +1002 +} + 0 +LINE + 62 +5 + 8 +cut + 10 +70.00000000000001 + 20 +74.0 + 30 +0.0 + 11 +34.0 + 21 +74.0 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +-90 + 10 +70.00000000000001 + 20 +74.0 + 30 +0.0 + 11 +70.00000000000001 + 21 +98.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +34.0 + 20 +98.00000000000001 + 30 +0.0 + 11 +70.00000000000001 + 21 +98.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +70.00000000000001 + 20 +98.00000000000001 + 30 +0.0 + 11 +115.00000000000001 + 21 +98.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +115.00000000000001 + 20 +74.0 + 30 +0.0 + 11 +70.00000000000001 + 21 +74.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +120.00000000000001 + 20 +74.0 + 30 +0.0 + 11 +115.00000000000001 + 21 +74.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +120.00000000000001 + 20 +98.00000000000001 + 30 +0.0 + 11 +120.00000000000001 + 21 +74.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +115.00000000000001 + 20 +98.00000000000001 + 30 +0.0 + 11 +120.00000000000001 + 21 +98.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +0.0 + 20 +98.00000000000001 + 30 +0.0 + 11 +34.0 + 21 +98.00000000000001 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +90 + 10 +34.0 + 20 +74.0 + 30 +0.0 + 11 +0.0 + 21 +74.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +0.0 + 20 +74.0 + 30 +0.0 + 11 +0.0 + 21 +1.0000000000000002 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +0.0 + 20 +108.00000000000001 + 30 +0.0 + 11 +0.0 + 21 +98.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +0.0 + 20 +169.00000000000003 + 30 +0.0 + 11 +0.0 + 21 +169.00000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +0.0 + 20 +1.0000000000000002 + 30 +0.0 + 11 +0.0 + 21 +169.00000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +0.0 + 20 +1.0000000000000002 + 30 +0.0 + 11 +0.0 + 21 +1.0000000000000002 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +45 + 10 +36.138621999185304 + 20 +108.00000000000001 + 30 +0.0 + 11 +36.138621999185304 + 21 +169.00000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +0.0 + 20 +169.00000000000003 + 30 +0.0 + 11 +36.138621999185304 + 21 +169.00000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +36.138621999185304 + 20 +108.00000000000001 + 30 +0.0 + 11 +0.0 + 21 +108.00000000000001 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +45 + 10 +60.13862199918531 + 20 +169.00000000000003 + 30 +0.0 + 11 +60.13862199918531 + 21 +108.00000000000001 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +90 + 10 +60.13862199918531 + 20 +169.00000000000003 + 30 +0.0 + 11 +36.138621999185304 + 21 +169.00000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +96.27724399837062 + 20 +108.00000000000001 + 30 +0.0 + 11 +60.13862199918531 + 21 +108.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +60.13862199918531 + 20 +169.00000000000003 + 30 +0.0 + 11 +96.27724399837062 + 21 +169.00000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +106.27724399837062 + 20 +108.00000000000001 + 30 +0.0 + 11 +96.27724399837062 + 21 +108.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +106.27724399837062 + 20 +169.00000000000003 + 30 +0.0 + 11 +106.27724399837062 + 21 +108.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +96.27724399837062 + 20 +169.00000000000003 + 30 +0.0 + 11 +106.27724399837062 + 21 +169.00000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +60.13862199918531 + 20 +179.00000000000003 + 30 +0.0 + 11 +60.13862199918531 + 21 +169.00000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +36.138621999185304 + 20 +179.00000000000003 + 30 +0.0 + 11 +60.13862199918531 + 21 +179.00000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +36.138621999185304 + 20 +169.00000000000003 + 30 +0.0 + 11 +36.138621999185304 + 21 +179.00000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +36.138621999185304 + 20 +98.00000000000001 + 30 +0.0 + 11 +36.138621999185304 + 21 +108.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +60.13862199918531 + 20 +98.00000000000001 + 30 +0.0 + 11 +36.138621999185304 + 21 +98.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +60.13862199918531 + 20 +108.00000000000001 + 30 +0.0 + 11 +60.13862199918531 + 21 +98.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +34.0 + 20 +74.0 + 30 +0.0 + 11 +34.0 + 21 +54.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +0.0 + 20 +54.00000000000001 + 30 +0.0 + 11 +0.0 + 21 +74.0 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +90 + 10 +34.0 + 20 +54.00000000000001 + 30 +0.0 + 11 +0.0 + 21 +54.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +34.0 + 20 +54.00000000000001 + 30 +0.0 + 11 +34.0 + 21 +30.000000000000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +0.0 + 20 +30.000000000000004 + 30 +0.0 + 11 +0.0 + 21 +54.00000000000001 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +90 + 10 +34.0 + 20 +30.000000000000004 + 30 +0.0 + 11 +0.0 + 21 +30.000000000000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +34.0 + 20 +30.000000000000004 + 30 +0.0 + 11 +34.0 + 21 +10.000000000000002 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +0.0 + 20 +10.000000000000002 + 30 +0.0 + 11 +0.0 + 21 +30.000000000000004 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +90 + 10 +0.0 + 20 +10.000000000000002 + 30 +0.0 + 11 +34.0 + 21 +10.000000000000002 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +0.0 + 20 +0.0 + 30 +0.0 + 11 +0.0 + 21 +10.000000000000002 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +34.0 + 20 +0.0 + 30 +0.0 + 11 +0.0 + 21 +0.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +34.0 + 20 +10.000000000000002 + 30 +0.0 + 11 +34.0 + 21 +0.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +118.75000000000001 + 20 +90.0 + 30 +0.0 + 11 +118.75000000000001 + 21 +92.50000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +118.75000000000001 + 20 +92.50000000000001 + 30 +0.0 + 11 +116.25000000000001 + 21 +90.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +116.25000000000001 + 20 +90.0 + 30 +0.0 + 11 +116.25000000000001 + 21 +82.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +116.25000000000001 + 20 +82.0 + 30 +0.0 + 11 +118.75000000000001 + 21 +79.5 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +118.75000000000001 + 20 +79.5 + 30 +0.0 + 11 +118.75000000000001 + 21 +82.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +11.08333333333333 + 20 +90.25000000000001 + 30 +0.0 + 11 +22.916666666666668 + 21 +90.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +22.916666666666668 + 20 +90.25000000000001 + 30 +0.0 + 11 +22.916666666666668 + 21 +90.75000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +22.916666666666668 + 20 +90.75000000000001 + 30 +0.0 + 11 +11.08333333333333 + 21 +90.75000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +11.08333333333333 + 20 +90.75000000000001 + 30 +0.0 + 11 +11.08333333333333 + 21 +90.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +54.63862199918531 + 20 +126.00000000000001 + 30 +0.0 + 11 +54.63862199918531 + 21 +137.00000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +54.63862199918531 + 20 +137.00000000000003 + 30 +0.0 + 11 +41.63862199918531 + 21 +137.00000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +41.63862199918531 + 20 +137.00000000000003 + 30 +0.0 + 11 +41.63862199918531 + 21 +126.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +41.63862199918531 + 20 +126.00000000000001 + 30 +0.0 + 11 +54.63862199918531 + 21 +126.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +53.13862199918531 + 20 +157.50000000000003 + 30 +0.0 + 11 +53.13862199918531 + 21 +163.5 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +53.13862199918531 + 20 +163.5 + 30 +0.0 + 11 +43.13862199918531 + 21 +163.5 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +43.13862199918531 + 20 +163.5 + 30 +0.0 + 11 +43.13862199918531 + 21 +157.50000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +43.13862199918531 + 20 +157.50000000000003 + 30 +0.0 + 11 +53.13862199918531 + 21 +157.50000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +103.77724399837062 + 20 +157.9090909090909 + 30 +0.0 + 11 +98.77724399837062 + 21 +157.9090909090909 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +98.77724399837062 + 20 +157.9090909090909 + 30 +0.0 + 11 +98.77724399837062 + 21 +146.81818181818184 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +98.77724399837062 + 20 +146.81818181818184 + 30 +0.0 + 11 +103.77724399837062 + 21 +146.81818181818184 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +103.77724399837062 + 20 +130.18181818181822 + 30 +0.0 + 11 +98.77724399837062 + 21 +130.18181818181822 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +98.77724399837062 + 20 +130.18181818181822 + 30 +0.0 + 11 +98.77724399837062 + 21 +119.09090909090911 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +98.77724399837062 + 20 +119.09090909090911 + 30 +0.0 + 11 +103.77724399837062 + 21 +119.09090909090911 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +44.138621999185304 + 20 +176.50000000000003 + 30 +0.0 + 11 +44.138621999185304 + 21 +171.50000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +44.138621999185304 + 20 +171.50000000000003 + 30 +0.0 + 11 +52.13862199918531 + 21 +171.50000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +52.13862199918531 + 20 +171.50000000000003 + 30 +0.0 + 11 +52.13862199918531 + 21 +176.50000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +52.13862199918531 + 20 +100.50000000000001 + 30 +0.0 + 11 +52.13862199918531 + 21 +105.50000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +52.13862199918531 + 20 +105.50000000000001 + 30 +0.0 + 11 +44.138621999185304 + 21 +105.50000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +44.138621999185304 + 20 +105.50000000000001 + 30 +0.0 + 11 +44.138621999185304 + 21 +100.50000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +23.000000000000004 + 20 +55.00000000000001 + 30 +0.0 + 11 +23.000000000000004 + 21 +59.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +23.000000000000004 + 20 +59.00000000000001 + 30 +0.0 + 11 +11.000000000000002 + 21 +59.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +11.000000000000002 + 20 +59.00000000000001 + 30 +0.0 + 11 +11.000000000000002 + 21 +55.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +11.000000000000002 + 20 +55.00000000000001 + 30 +0.0 + 11 +23.000000000000004 + 21 +55.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +21.500000000000004 + 20 +67.00000000000001 + 30 +0.0 + 11 +21.500000000000004 + 21 +71.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +21.500000000000004 + 20 +71.00000000000001 + 30 +0.0 + 11 +12.5 + 21 +71.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +12.5 + 20 +71.00000000000001 + 30 +0.0 + 11 +12.5 + 21 +67.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +12.5 + 20 +67.00000000000001 + 30 +0.0 + 11 +21.500000000000004 + 21 +67.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +23.000000000000004 + 20 +30.500000000000004 + 30 +0.0 + 11 +23.000000000000004 + 21 +53.5 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +23.000000000000004 + 20 +53.5 + 30 +0.0 + 11 +11.000000000000002 + 21 +53.5 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +11.000000000000002 + 20 +53.5 + 30 +0.0 + 11 +11.000000000000002 + 21 +30.500000000000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +11.000000000000002 + 20 +30.500000000000004 + 30 +0.0 + 11 +23.000000000000004 + 21 +30.500000000000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +23.000000000000004 + 20 +25.0 + 30 +0.0 + 11 +23.000000000000004 + 21 +29.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +23.000000000000004 + 20 +29.0 + 30 +0.0 + 11 +11.000000000000002 + 21 +29.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +11.000000000000002 + 20 +29.0 + 30 +0.0 + 11 +11.000000000000002 + 21 +25.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +11.000000000000002 + 20 +25.0 + 30 +0.0 + 11 +23.000000000000004 + 21 +25.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +22.666666666666668 + 20 +2.5000000000000004 + 30 +0.0 + 11 +22.666666666666668 + 21 +7.500000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +22.666666666666668 + 20 +7.500000000000001 + 30 +0.0 + 11 +11.33333333333333 + 21 +7.500000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +11.33333333333333 + 20 +7.500000000000001 + 30 +0.0 + 11 +11.33333333333333 + 21 +2.5000000000000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +200.0 + 20 +74.0 + 30 +0.0 + 11 +164.0 + 21 +74.0 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +-90 + 10 +200.0 + 20 +74.0 + 30 +0.0 + 11 +200.0 + 21 +98.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +164.0 + 20 +98.00000000000001 + 30 +0.0 + 11 +200.0 + 21 +98.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +200.0 + 20 +98.00000000000001 + 30 +0.0 + 11 +245.00000000000003 + 21 +98.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +245.00000000000003 + 20 +74.0 + 30 +0.0 + 11 +200.0 + 21 +74.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +245.00000000000003 + 20 +98.00000000000001 + 30 +0.0 + 11 +245.00000000000003 + 21 +74.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +164.0 + 20 +74.0 + 30 +0.0 + 11 +130.0 + 21 +74.0 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +90 + 10 +130.0 + 20 +98.00000000000001 + 30 +0.0 + 11 +164.0 + 21 +98.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +130.0 + 20 +64.00000000000001 + 30 +0.0 + 11 +130.0 + 21 +3.0000000000000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +130.0 + 20 +74.0 + 30 +0.0 + 11 +130.0 + 21 +64.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +130.0 + 20 +171.00000000000003 + 30 +0.0 + 11 +130.0 + 21 +98.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +130.0 + 20 +171.00000000000003 + 30 +0.0 + 11 +130.0 + 21 +171.00000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +130.0 + 20 +3.0000000000000004 + 30 +0.0 + 11 +130.0 + 21 +171.00000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +130.0 + 20 +3.0000000000000004 + 30 +0.0 + 11 +130.0 + 21 +3.0000000000000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +130.0 + 20 +98.00000000000001 + 30 +0.0 + 11 +130.0 + 21 +118.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +164.0 + 20 +118.00000000000001 + 30 +0.0 + 11 +164.0 + 21 +98.00000000000001 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +90 + 10 +130.0 + 20 +118.00000000000001 + 30 +0.0 + 11 +164.0 + 21 +118.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +130.0 + 20 +118.00000000000001 + 30 +0.0 + 11 +130.0 + 21 +142.00000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +164.0 + 20 +142.00000000000003 + 30 +0.0 + 11 +164.0 + 21 +118.00000000000001 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +90 + 10 +130.0 + 20 +142.00000000000003 + 30 +0.0 + 11 +164.0 + 21 +142.00000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +130.0 + 20 +142.00000000000003 + 30 +0.0 + 11 +130.0 + 21 +162.00000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +164.0 + 20 +162.00000000000003 + 30 +0.0 + 11 +164.0 + 21 +142.00000000000003 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +90 + 10 +164.0 + 20 +162.00000000000003 + 30 +0.0 + 11 +130.0 + 21 +162.00000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +164.0 + 20 +172.00000000000003 + 30 +0.0 + 11 +164.0 + 21 +162.00000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +130.0 + 20 +172.00000000000003 + 30 +0.0 + 11 +164.0 + 21 +172.00000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +130.0 + 20 +162.00000000000003 + 30 +0.0 + 11 +130.0 + 21 +172.00000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +241.00000000000003 + 20 +90.25000000000001 + 30 +0.0 + 11 +241.00000000000003 + 21 +81.75 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +241.00000000000003 + 20 +81.75 + 30 +0.0 + 11 +241.50000000000003 + 21 +81.75 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +241.50000000000003 + 20 +81.75 + 30 +0.0 + 11 +241.50000000000003 + 21 +90.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +241.50000000000003 + 20 +90.25000000000001 + 30 +0.0 + 11 +241.00000000000003 + 21 +90.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +152.91666666666669 + 20 +81.75 + 30 +0.0 + 11 +141.08333333333334 + 21 +81.75 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +141.08333333333334 + 20 +81.75 + 30 +0.0 + 11 +141.08333333333334 + 21 +81.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +141.08333333333334 + 20 +81.25000000000001 + 30 +0.0 + 11 +152.91666666666669 + 21 +81.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +152.91666666666669 + 20 +81.25000000000001 + 30 +0.0 + 11 +152.91666666666669 + 21 +81.75 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +122.25000000000001 + 20 +25.43181818181819 + 30 +0.0 + 11 +122.25000000000001 + 21 +13.840909090909095 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +122.25000000000001 + 20 +13.840909090909095 + 30 +0.0 + 11 +122.75000000000001 + 21 +13.840909090909095 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +122.75000000000001 + 20 +13.840909090909095 + 30 +0.0 + 11 +122.75000000000001 + 21 +25.43181818181819 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +122.75000000000001 + 20 +25.43181818181819 + 30 +0.0 + 11 +122.25000000000001 + 21 +25.43181818181819 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +122.25000000000001 + 20 +53.15909090909092 + 30 +0.0 + 11 +122.25000000000001 + 21 +41.568181818181834 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +122.25000000000001 + 20 +41.568181818181834 + 30 +0.0 + 11 +122.75000000000001 + 21 +41.568181818181834 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +122.75000000000001 + 20 +41.568181818181834 + 30 +0.0 + 11 +122.75000000000001 + 21 +53.15909090909092 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +122.75000000000001 + 20 +53.15909090909092 + 30 +0.0 + 11 +122.25000000000001 + 21 +53.15909090909092 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +141.0 + 20 +117.00000000000001 + 30 +0.0 + 11 +141.0 + 21 +113.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +141.0 + 20 +113.00000000000001 + 30 +0.0 + 11 +153.00000000000003 + 21 +113.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +153.00000000000003 + 20 +113.00000000000001 + 30 +0.0 + 11 +153.00000000000003 + 21 +117.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +153.00000000000003 + 20 +117.00000000000001 + 30 +0.0 + 11 +141.0 + 21 +117.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +142.50000000000003 + 20 +105.00000000000001 + 30 +0.0 + 11 +142.50000000000003 + 21 +101.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +142.50000000000003 + 20 +101.00000000000001 + 30 +0.0 + 11 +151.50000000000003 + 21 +101.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +151.50000000000003 + 20 +101.00000000000001 + 30 +0.0 + 11 +151.50000000000003 + 21 +105.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +151.50000000000003 + 20 +105.00000000000001 + 30 +0.0 + 11 +142.50000000000003 + 21 +105.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +141.0 + 20 +141.5 + 30 +0.0 + 11 +141.0 + 21 +118.50000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +141.0 + 20 +118.50000000000001 + 30 +0.0 + 11 +153.00000000000003 + 21 +118.50000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +153.00000000000003 + 20 +118.50000000000001 + 30 +0.0 + 11 +153.00000000000003 + 21 +141.5 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +153.00000000000003 + 20 +141.5 + 30 +0.0 + 11 +141.0 + 21 +141.5 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +141.0 + 20 +147.00000000000003 + 30 +0.0 + 11 +141.0 + 21 +143.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +141.0 + 20 +143.0 + 30 +0.0 + 11 +153.00000000000003 + 21 +143.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +153.00000000000003 + 20 +143.0 + 30 +0.0 + 11 +153.00000000000003 + 21 +147.00000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +153.00000000000003 + 20 +147.00000000000003 + 30 +0.0 + 11 +141.0 + 21 +147.00000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +141.33333333333334 + 20 +169.50000000000003 + 30 +0.0 + 11 +141.33333333333334 + 21 +164.50000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +141.33333333333334 + 20 +164.50000000000003 + 30 +0.0 + 11 +152.66666666666666 + 21 +164.50000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +152.66666666666666 + 20 +164.50000000000003 + 30 +0.0 + 11 +152.66666666666666 + 21 +169.50000000000003 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +90 + 10 +288.00000000000006 + 20 +74.0 + 30 +0.0 + 11 +349.00000000000006 + 21 +74.0 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +90 + 10 +349.00000000000006 + 20 +74.0 + 30 +0.0 + 11 +349.00000000000006 + 21 +98.00000000000001 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +90 + 10 +349.00000000000006 + 20 +98.00000000000001 + 30 +0.0 + 11 +288.00000000000006 + 21 +98.00000000000001 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +90 + 10 +288.00000000000006 + 20 +98.00000000000001 + 30 +0.0 + 11 +288.00000000000006 + 21 +74.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +288.00000000000006 + 20 +67.00000000000001 + 30 +0.0 + 11 +288.00000000000006 + 21 +74.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +348.00000000000006 + 20 +67.00000000000001 + 30 +0.0 + 11 +288.00000000000006 + 21 +67.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +348.00000000000006 + 20 +74.0 + 30 +0.0 + 11 +348.00000000000006 + 21 +67.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +356.00000000000006 + 20 +74.0 + 30 +0.0 + 11 +349.00000000000006 + 21 +74.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +356.00000000000006 + 20 +98.00000000000001 + 30 +0.0 + 11 +356.00000000000006 + 21 +74.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +349.00000000000006 + 20 +98.00000000000001 + 30 +0.0 + 11 +356.00000000000006 + 21 +98.00000000000001 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +90 + 10 +349.00000000000006 + 20 +98.00000000000001 + 30 +0.0 + 11 +349.00000000000006 + 21 +159.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +289.00000000000006 + 20 +159.0 + 30 +0.0 + 11 +349.00000000000006 + 21 +159.0 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +90 + 10 +289.00000000000006 + 20 +98.00000000000001 + 30 +0.0 + 11 +289.00000000000006 + 21 +159.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +373.0 + 20 +98.00000000000001 + 30 +0.0 + 11 +349.00000000000006 + 21 +98.00000000000001 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +90 + 10 +373.0 + 20 +98.00000000000001 + 30 +0.0 + 11 +373.0 + 21 +159.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +349.00000000000006 + 20 +159.0 + 30 +0.0 + 11 +373.0 + 21 +159.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +433.00000000000006 + 20 +98.00000000000001 + 30 +0.0 + 11 +373.0 + 21 +98.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +433.00000000000006 + 20 +159.0 + 30 +0.0 + 11 +433.00000000000006 + 21 +98.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +373.0 + 20 +159.0 + 30 +0.0 + 11 +433.00000000000006 + 21 +159.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +289.00000000000006 + 20 +98.00000000000001 + 30 +0.0 + 11 +265.00000000000006 + 21 +98.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +265.00000000000006 + 20 +159.0 + 30 +0.0 + 11 +289.00000000000006 + 21 +159.0 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +90 + 10 +265.00000000000006 + 20 +159.0 + 30 +0.0 + 11 +265.00000000000006 + 21 +98.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +255.00000000000003 + 20 +159.0 + 30 +0.0 + 11 +265.00000000000006 + 21 +159.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +255.00000000000003 + 20 +98.00000000000001 + 30 +0.0 + 11 +255.00000000000003 + 21 +159.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +265.00000000000006 + 20 +98.00000000000001 + 30 +0.0 + 11 +255.00000000000003 + 21 +98.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +281.00000000000006 + 20 +98.00000000000001 + 30 +0.0 + 11 +288.00000000000006 + 21 +98.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +281.00000000000006 + 20 +74.0 + 30 +0.0 + 11 +281.00000000000006 + 21 +98.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +288.00000000000006 + 20 +74.0 + 30 +0.0 + 11 +281.00000000000006 + 21 +74.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +337.0909090909092 + 20 +68.75000000000001 + 30 +0.0 + 11 +340.59090909090907 + 21 +68.75000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +340.59090909090907 + 20 +68.75000000000001 + 30 +0.0 + 11 +337.0909090909092 + 21 +72.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +337.0909090909092 + 20 +72.25000000000001 + 30 +0.0 + 11 +326.18181818181824 + 21 +72.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +326.18181818181824 + 20 +72.25000000000001 + 30 +0.0 + 11 +322.68181818181824 + 21 +68.75000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +322.68181818181824 + 20 +68.75000000000001 + 30 +0.0 + 11 +326.18181818181824 + 21 +68.75000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +309.81818181818187 + 20 +68.75000000000001 + 30 +0.0 + 11 +313.31818181818187 + 21 +68.75000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +313.31818181818187 + 20 +68.75000000000001 + 30 +0.0 + 11 +309.81818181818187 + 21 +72.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +309.81818181818187 + 20 +72.25000000000001 + 30 +0.0 + 11 +298.909090909091 + 21 +72.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +298.909090909091 + 20 +72.25000000000001 + 30 +0.0 + 11 +295.409090909091 + 21 +68.75000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +295.409090909091 + 20 +68.75000000000001 + 30 +0.0 + 11 +298.909090909091 + 21 +68.75000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +354.25000000000006 + 20 +90.0 + 30 +0.0 + 11 +350.75 + 21 +90.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +350.75 + 20 +90.0 + 30 +0.0 + 11 +350.75 + 21 +82.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +350.75 + 20 +82.0 + 30 +0.0 + 11 +354.25000000000006 + 21 +82.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +296.5 + 20 +149.50000000000003 + 30 +0.0 + 11 +296.5 + 21 +131.50000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +296.5 + 20 +131.50000000000003 + 30 +0.0 + 11 +331.5 + 21 +131.50000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +331.5 + 20 +131.50000000000003 + 30 +0.0 + 11 +331.5 + 21 +149.50000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +331.5 + 20 +149.50000000000003 + 30 +0.0 + 11 +296.5 + 21 +149.50000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +349.50000000000006 + 20 +111.25000000000001 + 30 +0.0 + 11 +349.50000000000006 + 21 +108.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +349.50000000000006 + 20 +108.25000000000001 + 30 +0.0 + 11 +352.50000000000006 + 21 +108.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +352.50000000000006 + 20 +108.25000000000001 + 30 +0.0 + 11 +352.50000000000006 + 21 +111.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +352.50000000000006 + 20 +111.25000000000001 + 30 +0.0 + 11 +349.50000000000006 + 21 +111.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +370.50000000000006 + 20 +110.25000000000001 + 30 +0.0 + 11 +370.50000000000006 + 21 +109.25 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +370.50000000000006 + 20 +109.25 + 30 +0.0 + 11 +371.50000000000006 + 21 +109.25 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +371.50000000000006 + 20 +109.25 + 30 +0.0 + 11 +371.50000000000006 + 21 +110.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +371.50000000000006 + 20 +110.25000000000001 + 30 +0.0 + 11 +370.50000000000006 + 21 +110.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +350.5 + 20 +112.75000000000001 + 30 +0.0 + 11 +350.5 + 21 +111.75000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +350.5 + 20 +111.75000000000001 + 30 +0.0 + 11 +351.50000000000006 + 21 +111.75000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +351.50000000000006 + 20 +111.75000000000001 + 30 +0.0 + 11 +351.50000000000006 + 21 +112.75000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +351.50000000000006 + 20 +112.75000000000001 + 30 +0.0 + 11 +350.5 + 21 +112.75000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +370.50000000000006 + 20 +112.75000000000001 + 30 +0.0 + 11 +370.50000000000006 + 21 +111.75000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +370.50000000000006 + 20 +111.75000000000001 + 30 +0.0 + 11 +371.50000000000006 + 21 +111.75000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +371.50000000000006 + 20 +111.75000000000001 + 30 +0.0 + 11 +371.50000000000006 + 21 +112.75000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +371.50000000000006 + 20 +112.75000000000001 + 30 +0.0 + 11 +370.50000000000006 + 21 +112.75000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +350.5 + 20 +115.25000000000001 + 30 +0.0 + 11 +350.5 + 21 +114.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +350.5 + 20 +114.25000000000001 + 30 +0.0 + 11 +351.50000000000006 + 21 +114.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +351.50000000000006 + 20 +114.25000000000001 + 30 +0.0 + 11 +351.50000000000006 + 21 +115.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +351.50000000000006 + 20 +115.25000000000001 + 30 +0.0 + 11 +350.5 + 21 +115.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +370.50000000000006 + 20 +115.25000000000001 + 30 +0.0 + 11 +370.50000000000006 + 21 +114.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +370.50000000000006 + 20 +114.25000000000001 + 30 +0.0 + 11 +371.50000000000006 + 21 +114.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +371.50000000000006 + 20 +114.25000000000001 + 30 +0.0 + 11 +371.50000000000006 + 21 +115.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +371.50000000000006 + 20 +115.25000000000001 + 30 +0.0 + 11 +370.50000000000006 + 21 +115.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +350.5 + 20 +117.75000000000001 + 30 +0.0 + 11 +350.5 + 21 +116.75000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +350.5 + 20 +116.75000000000001 + 30 +0.0 + 11 +351.50000000000006 + 21 +116.75000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +351.50000000000006 + 20 +116.75000000000001 + 30 +0.0 + 11 +351.50000000000006 + 21 +117.75000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +351.50000000000006 + 20 +117.75000000000001 + 30 +0.0 + 11 +350.5 + 21 +117.75000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +370.50000000000006 + 20 +117.75000000000001 + 30 +0.0 + 11 +370.50000000000006 + 21 +116.75000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +370.50000000000006 + 20 +116.75000000000001 + 30 +0.0 + 11 +371.50000000000006 + 21 +116.75000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +371.50000000000006 + 20 +116.75000000000001 + 30 +0.0 + 11 +371.50000000000006 + 21 +117.75000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +371.50000000000006 + 20 +117.75000000000001 + 30 +0.0 + 11 +370.50000000000006 + 21 +117.75000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +350.5 + 20 +120.25000000000001 + 30 +0.0 + 11 +350.5 + 21 +119.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +350.5 + 20 +119.25000000000001 + 30 +0.0 + 11 +351.50000000000006 + 21 +119.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +351.50000000000006 + 20 +119.25000000000001 + 30 +0.0 + 11 +351.50000000000006 + 21 +120.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +351.50000000000006 + 20 +120.25000000000001 + 30 +0.0 + 11 +350.5 + 21 +120.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +370.50000000000006 + 20 +120.25000000000001 + 30 +0.0 + 11 +370.50000000000006 + 21 +119.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +370.50000000000006 + 20 +119.25000000000001 + 30 +0.0 + 11 +371.50000000000006 + 21 +119.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +371.50000000000006 + 20 +119.25000000000001 + 30 +0.0 + 11 +371.50000000000006 + 21 +120.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +371.50000000000006 + 20 +120.25000000000001 + 30 +0.0 + 11 +370.50000000000006 + 21 +120.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +350.5 + 20 +122.75000000000001 + 30 +0.0 + 11 +350.5 + 21 +121.75000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +350.5 + 20 +121.75000000000001 + 30 +0.0 + 11 +351.50000000000006 + 21 +121.75000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +351.50000000000006 + 20 +121.75000000000001 + 30 +0.0 + 11 +351.50000000000006 + 21 +122.75000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +351.50000000000006 + 20 +122.75000000000001 + 30 +0.0 + 11 +350.5 + 21 +122.75000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +370.50000000000006 + 20 +122.75000000000001 + 30 +0.0 + 11 +370.50000000000006 + 21 +121.75000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +370.50000000000006 + 20 +121.75000000000001 + 30 +0.0 + 11 +371.50000000000006 + 21 +121.75000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +371.50000000000006 + 20 +121.75000000000001 + 30 +0.0 + 11 +371.50000000000006 + 21 +122.75000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +371.50000000000006 + 20 +122.75000000000001 + 30 +0.0 + 11 +370.50000000000006 + 21 +122.75000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +350.5 + 20 +125.25000000000001 + 30 +0.0 + 11 +350.5 + 21 +124.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +350.5 + 20 +124.25000000000001 + 30 +0.0 + 11 +351.50000000000006 + 21 +124.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +351.50000000000006 + 20 +124.25000000000001 + 30 +0.0 + 11 +351.50000000000006 + 21 +125.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +351.50000000000006 + 20 +125.25000000000001 + 30 +0.0 + 11 +350.5 + 21 +125.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +370.50000000000006 + 20 +125.25000000000001 + 30 +0.0 + 11 +370.50000000000006 + 21 +124.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +370.50000000000006 + 20 +124.25000000000001 + 30 +0.0 + 11 +371.50000000000006 + 21 +124.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +371.50000000000006 + 20 +124.25000000000001 + 30 +0.0 + 11 +371.50000000000006 + 21 +125.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +371.50000000000006 + 20 +125.25000000000001 + 30 +0.0 + 11 +370.50000000000006 + 21 +125.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +350.5 + 20 +127.75000000000001 + 30 +0.0 + 11 +350.5 + 21 +126.75000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +350.5 + 20 +126.75000000000001 + 30 +0.0 + 11 +351.50000000000006 + 21 +126.75000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +351.50000000000006 + 20 +126.75000000000001 + 30 +0.0 + 11 +351.50000000000006 + 21 +127.75000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +351.50000000000006 + 20 +127.75000000000001 + 30 +0.0 + 11 +350.5 + 21 +127.75000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +370.50000000000006 + 20 +127.75000000000001 + 30 +0.0 + 11 +370.50000000000006 + 21 +126.75000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +370.50000000000006 + 20 +126.75000000000001 + 30 +0.0 + 11 +371.50000000000006 + 21 +126.75000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +371.50000000000006 + 20 +126.75000000000001 + 30 +0.0 + 11 +371.50000000000006 + 21 +127.75000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +371.50000000000006 + 20 +127.75000000000001 + 30 +0.0 + 11 +370.50000000000006 + 21 +127.75000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +350.5 + 20 +130.25000000000003 + 30 +0.0 + 11 +350.5 + 21 +129.25000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +350.5 + 20 +129.25000000000003 + 30 +0.0 + 11 +351.50000000000006 + 21 +129.25000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +351.50000000000006 + 20 +129.25000000000003 + 30 +0.0 + 11 +351.50000000000006 + 21 +130.25000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +351.50000000000006 + 20 +130.25000000000003 + 30 +0.0 + 11 +350.5 + 21 +130.25000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +370.50000000000006 + 20 +130.25000000000003 + 30 +0.0 + 11 +370.50000000000006 + 21 +129.25000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +370.50000000000006 + 20 +129.25000000000003 + 30 +0.0 + 11 +371.50000000000006 + 21 +129.25000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +371.50000000000006 + 20 +129.25000000000003 + 30 +0.0 + 11 +371.50000000000006 + 21 +130.25000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +371.50000000000006 + 20 +130.25000000000003 + 30 +0.0 + 11 +370.50000000000006 + 21 +130.25000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +350.5 + 20 +132.75000000000003 + 30 +0.0 + 11 +350.5 + 21 +131.75000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +350.5 + 20 +131.75000000000003 + 30 +0.0 + 11 +351.50000000000006 + 21 +131.75000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +351.50000000000006 + 20 +131.75000000000003 + 30 +0.0 + 11 +351.50000000000006 + 21 +132.75000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +351.50000000000006 + 20 +132.75000000000003 + 30 +0.0 + 11 +350.5 + 21 +132.75000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +370.50000000000006 + 20 +132.75000000000003 + 30 +0.0 + 11 +370.50000000000006 + 21 +131.75000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +370.50000000000006 + 20 +131.75000000000003 + 30 +0.0 + 11 +371.50000000000006 + 21 +131.75000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +371.50000000000006 + 20 +131.75000000000003 + 30 +0.0 + 11 +371.50000000000006 + 21 +132.75000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +371.50000000000006 + 20 +132.75000000000003 + 30 +0.0 + 11 +370.50000000000006 + 21 +132.75000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +350.5 + 20 +135.25000000000003 + 30 +0.0 + 11 +350.5 + 21 +134.25000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +350.5 + 20 +134.25000000000003 + 30 +0.0 + 11 +351.50000000000006 + 21 +134.25000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +351.50000000000006 + 20 +134.25000000000003 + 30 +0.0 + 11 +351.50000000000006 + 21 +135.25000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +351.50000000000006 + 20 +135.25000000000003 + 30 +0.0 + 11 +350.5 + 21 +135.25000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +370.50000000000006 + 20 +135.25000000000003 + 30 +0.0 + 11 +370.50000000000006 + 21 +134.25000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +370.50000000000006 + 20 +134.25000000000003 + 30 +0.0 + 11 +371.50000000000006 + 21 +134.25000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +371.50000000000006 + 20 +134.25000000000003 + 30 +0.0 + 11 +371.50000000000006 + 21 +135.25000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +371.50000000000006 + 20 +135.25000000000003 + 30 +0.0 + 11 +370.50000000000006 + 21 +135.25000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +350.5 + 20 +137.75000000000003 + 30 +0.0 + 11 +350.5 + 21 +136.75 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +350.5 + 20 +136.75 + 30 +0.0 + 11 +351.50000000000006 + 21 +136.75 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +351.50000000000006 + 20 +136.75 + 30 +0.0 + 11 +351.50000000000006 + 21 +137.75000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +351.50000000000006 + 20 +137.75000000000003 + 30 +0.0 + 11 +350.5 + 21 +137.75000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +370.50000000000006 + 20 +137.75000000000003 + 30 +0.0 + 11 +370.50000000000006 + 21 +136.75 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +370.50000000000006 + 20 +136.75 + 30 +0.0 + 11 +371.50000000000006 + 21 +136.75 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +371.50000000000006 + 20 +136.75 + 30 +0.0 + 11 +371.50000000000006 + 21 +137.75000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +371.50000000000006 + 20 +137.75000000000003 + 30 +0.0 + 11 +370.50000000000006 + 21 +137.75000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +350.5 + 20 +140.25000000000003 + 30 +0.0 + 11 +350.5 + 21 +139.25 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +350.5 + 20 +139.25 + 30 +0.0 + 11 +351.50000000000006 + 21 +139.25 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +351.50000000000006 + 20 +139.25 + 30 +0.0 + 11 +351.50000000000006 + 21 +140.25000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +351.50000000000006 + 20 +140.25000000000003 + 30 +0.0 + 11 +350.5 + 21 +140.25000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +370.50000000000006 + 20 +140.25000000000003 + 30 +0.0 + 11 +370.50000000000006 + 21 +139.25 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +370.50000000000006 + 20 +139.25 + 30 +0.0 + 11 +371.50000000000006 + 21 +139.25 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +371.50000000000006 + 20 +139.25 + 30 +0.0 + 11 +371.50000000000006 + 21 +140.25000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +371.50000000000006 + 20 +140.25000000000003 + 30 +0.0 + 11 +370.50000000000006 + 21 +140.25000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +350.5 + 20 +142.75000000000003 + 30 +0.0 + 11 +350.5 + 21 +141.75000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +350.5 + 20 +141.75000000000003 + 30 +0.0 + 11 +351.50000000000006 + 21 +141.75000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +351.50000000000006 + 20 +141.75000000000003 + 30 +0.0 + 11 +351.50000000000006 + 21 +142.75000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +351.50000000000006 + 20 +142.75000000000003 + 30 +0.0 + 11 +350.5 + 21 +142.75000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +370.50000000000006 + 20 +142.75000000000003 + 30 +0.0 + 11 +370.50000000000006 + 21 +141.75000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +370.50000000000006 + 20 +141.75000000000003 + 30 +0.0 + 11 +371.50000000000006 + 21 +141.75000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +371.50000000000006 + 20 +141.75000000000003 + 30 +0.0 + 11 +371.50000000000006 + 21 +142.75000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +371.50000000000006 + 20 +142.75000000000003 + 30 +0.0 + 11 +370.50000000000006 + 21 +142.75000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +350.5 + 20 +145.25 + 30 +0.0 + 11 +350.5 + 21 +144.25000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +350.5 + 20 +144.25000000000003 + 30 +0.0 + 11 +351.50000000000006 + 21 +144.25000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +351.50000000000006 + 20 +144.25000000000003 + 30 +0.0 + 11 +351.50000000000006 + 21 +145.25 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +351.50000000000006 + 20 +145.25 + 30 +0.0 + 11 +350.5 + 21 +145.25 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +370.50000000000006 + 20 +145.25 + 30 +0.0 + 11 +370.50000000000006 + 21 +144.25000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +370.50000000000006 + 20 +144.25000000000003 + 30 +0.0 + 11 +371.50000000000006 + 21 +144.25000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +371.50000000000006 + 20 +144.25000000000003 + 30 +0.0 + 11 +371.50000000000006 + 21 +145.25 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +371.50000000000006 + 20 +145.25 + 30 +0.0 + 11 +370.50000000000006 + 21 +145.25 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +350.5 + 20 +147.75 + 30 +0.0 + 11 +350.5 + 21 +146.75000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +350.5 + 20 +146.75000000000003 + 30 +0.0 + 11 +351.50000000000006 + 21 +146.75000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +351.50000000000006 + 20 +146.75000000000003 + 30 +0.0 + 11 +351.50000000000006 + 21 +147.75 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +351.50000000000006 + 20 +147.75 + 30 +0.0 + 11 +350.5 + 21 +147.75 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +369.50000000000006 + 20 +148.75000000000003 + 30 +0.0 + 11 +369.50000000000006 + 21 +145.75 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +369.50000000000006 + 20 +145.75 + 30 +0.0 + 11 +372.50000000000006 + 21 +145.75 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +372.50000000000006 + 20 +145.75 + 30 +0.0 + 11 +372.50000000000006 + 21 +148.75000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +372.50000000000006 + 20 +148.75000000000003 + 30 +0.0 + 11 +369.50000000000006 + 21 +148.75000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +365.25000000000006 + 20 +105.75 + 30 +0.0 + 11 +356.75000000000006 + 21 +105.75 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +356.75000000000006 + 20 +105.75 + 30 +0.0 + 11 +356.75000000000006 + 21 +105.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +356.75000000000006 + 20 +105.25000000000001 + 30 +0.0 + 11 +365.25000000000006 + 21 +105.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +365.25000000000006 + 20 +105.25000000000001 + 30 +0.0 + 11 +365.25000000000006 + 21 +105.75 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +356.75000000000006 + 20 +153.50000000000003 + 30 +0.0 + 11 +365.25000000000006 + 21 +153.50000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +365.25000000000006 + 20 +153.50000000000003 + 30 +0.0 + 11 +365.25000000000006 + 21 +154.00000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +365.25000000000006 + 20 +154.00000000000003 + 30 +0.0 + 11 +356.75000000000006 + 21 +154.00000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +356.75000000000006 + 20 +154.00000000000003 + 30 +0.0 + 11 +356.75000000000006 + 21 +153.50000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +388.00000000000006 + 20 +149.00000000000003 + 30 +0.0 + 11 +388.00000000000006 + 21 +136.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +388.00000000000006 + 20 +136.0 + 30 +0.0 + 11 +418.00000000000006 + 21 +136.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +418.00000000000006 + 20 +136.0 + 30 +0.0 + 11 +418.00000000000006 + 21 +149.00000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +418.00000000000006 + 20 +149.00000000000003 + 30 +0.0 + 11 +388.00000000000006 + 21 +149.00000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +395.06818181818187 + 20 +103.5 + 30 +0.0 + 11 +383.6590909090909 + 21 +103.5 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +383.6590909090909 + 20 +103.5 + 30 +0.0 + 11 +383.6590909090909 + 21 +103.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +383.6590909090909 + 20 +103.00000000000001 + 30 +0.0 + 11 +395.06818181818187 + 21 +103.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +395.06818181818187 + 20 +103.00000000000001 + 30 +0.0 + 11 +395.06818181818187 + 21 +103.5 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +422.3409090909092 + 20 +103.5 + 30 +0.0 + 11 +410.93181818181824 + 21 +103.5 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +410.93181818181824 + 20 +103.5 + 30 +0.0 + 11 +410.93181818181824 + 21 +103.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +410.93181818181824 + 20 +103.00000000000001 + 30 +0.0 + 11 +422.3409090909092 + 21 +103.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +422.3409090909092 + 20 +103.00000000000001 + 30 +0.0 + 11 +422.3409090909092 + 21 +103.5 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +425.25000000000006 + 20 +120.4318181818182 + 30 +0.0 + 11 +425.25000000000006 + 21 +108.84090909090911 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +425.25000000000006 + 20 +108.84090909090911 + 30 +0.0 + 11 +425.75000000000006 + 21 +108.84090909090911 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +425.75000000000006 + 20 +108.84090909090911 + 30 +0.0 + 11 +425.75000000000006 + 21 +120.4318181818182 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +425.75000000000006 + 20 +120.4318181818182 + 30 +0.0 + 11 +425.25000000000006 + 21 +120.4318181818182 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +425.25000000000006 + 20 +148.15909090909093 + 30 +0.0 + 11 +425.25000000000006 + 21 +136.5681818181818 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +425.25000000000006 + 20 +136.5681818181818 + 30 +0.0 + 11 +425.75000000000006 + 21 +136.5681818181818 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +425.75000000000006 + 20 +136.5681818181818 + 30 +0.0 + 11 +425.75000000000006 + 21 +148.15909090909093 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +425.75000000000006 + 20 +148.15909090909093 + 30 +0.0 + 11 +425.25000000000006 + 21 +148.15909090909093 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +265.50000000000006 + 20 +111.25000000000001 + 30 +0.0 + 11 +265.50000000000006 + 21 +108.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +265.50000000000006 + 20 +108.25000000000001 + 30 +0.0 + 11 +268.50000000000006 + 21 +108.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +268.50000000000006 + 20 +108.25000000000001 + 30 +0.0 + 11 +268.50000000000006 + 21 +111.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +268.50000000000006 + 20 +111.25000000000001 + 30 +0.0 + 11 +265.50000000000006 + 21 +111.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +286.5 + 20 +110.25000000000001 + 30 +0.0 + 11 +286.5 + 21 +109.25 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +286.5 + 20 +109.25 + 30 +0.0 + 11 +287.5 + 21 +109.25 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +287.5 + 20 +109.25 + 30 +0.0 + 11 +287.5 + 21 +110.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +287.5 + 20 +110.25000000000001 + 30 +0.0 + 11 +286.5 + 21 +110.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +266.5 + 20 +112.75000000000001 + 30 +0.0 + 11 +266.5 + 21 +111.75000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +266.5 + 20 +111.75000000000001 + 30 +0.0 + 11 +267.50000000000006 + 21 +111.75000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +267.50000000000006 + 20 +111.75000000000001 + 30 +0.0 + 11 +267.50000000000006 + 21 +112.75000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +267.50000000000006 + 20 +112.75000000000001 + 30 +0.0 + 11 +266.5 + 21 +112.75000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +286.5 + 20 +112.75000000000001 + 30 +0.0 + 11 +286.5 + 21 +111.75000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +286.5 + 20 +111.75000000000001 + 30 +0.0 + 11 +287.5 + 21 +111.75000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +287.5 + 20 +111.75000000000001 + 30 +0.0 + 11 +287.5 + 21 +112.75000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +287.5 + 20 +112.75000000000001 + 30 +0.0 + 11 +286.5 + 21 +112.75000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +266.5 + 20 +115.25000000000001 + 30 +0.0 + 11 +266.5 + 21 +114.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +266.5 + 20 +114.25000000000001 + 30 +0.0 + 11 +267.50000000000006 + 21 +114.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +267.50000000000006 + 20 +114.25000000000001 + 30 +0.0 + 11 +267.50000000000006 + 21 +115.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +267.50000000000006 + 20 +115.25000000000001 + 30 +0.0 + 11 +266.5 + 21 +115.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +286.5 + 20 +115.25000000000001 + 30 +0.0 + 11 +286.5 + 21 +114.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +286.5 + 20 +114.25000000000001 + 30 +0.0 + 11 +287.5 + 21 +114.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +287.5 + 20 +114.25000000000001 + 30 +0.0 + 11 +287.5 + 21 +115.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +287.5 + 20 +115.25000000000001 + 30 +0.0 + 11 +286.5 + 21 +115.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +266.5 + 20 +117.75000000000001 + 30 +0.0 + 11 +266.5 + 21 +116.75000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +266.5 + 20 +116.75000000000001 + 30 +0.0 + 11 +267.50000000000006 + 21 +116.75000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +267.50000000000006 + 20 +116.75000000000001 + 30 +0.0 + 11 +267.50000000000006 + 21 +117.75000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +267.50000000000006 + 20 +117.75000000000001 + 30 +0.0 + 11 +266.5 + 21 +117.75000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +286.5 + 20 +117.75000000000001 + 30 +0.0 + 11 +286.5 + 21 +116.75000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +286.5 + 20 +116.75000000000001 + 30 +0.0 + 11 +287.5 + 21 +116.75000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +287.5 + 20 +116.75000000000001 + 30 +0.0 + 11 +287.5 + 21 +117.75000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +287.5 + 20 +117.75000000000001 + 30 +0.0 + 11 +286.5 + 21 +117.75000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +266.5 + 20 +120.25000000000001 + 30 +0.0 + 11 +266.5 + 21 +119.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +266.5 + 20 +119.25000000000001 + 30 +0.0 + 11 +267.50000000000006 + 21 +119.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +267.50000000000006 + 20 +119.25000000000001 + 30 +0.0 + 11 +267.50000000000006 + 21 +120.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +267.50000000000006 + 20 +120.25000000000001 + 30 +0.0 + 11 +266.5 + 21 +120.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +286.5 + 20 +120.25000000000001 + 30 +0.0 + 11 +286.5 + 21 +119.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +286.5 + 20 +119.25000000000001 + 30 +0.0 + 11 +287.5 + 21 +119.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +287.5 + 20 +119.25000000000001 + 30 +0.0 + 11 +287.5 + 21 +120.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +287.5 + 20 +120.25000000000001 + 30 +0.0 + 11 +286.5 + 21 +120.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +266.5 + 20 +122.75000000000001 + 30 +0.0 + 11 +266.5 + 21 +121.75000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +266.5 + 20 +121.75000000000001 + 30 +0.0 + 11 +267.50000000000006 + 21 +121.75000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +267.50000000000006 + 20 +121.75000000000001 + 30 +0.0 + 11 +267.50000000000006 + 21 +122.75000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +267.50000000000006 + 20 +122.75000000000001 + 30 +0.0 + 11 +266.5 + 21 +122.75000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +286.5 + 20 +122.75000000000001 + 30 +0.0 + 11 +286.5 + 21 +121.75000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +286.5 + 20 +121.75000000000001 + 30 +0.0 + 11 +287.5 + 21 +121.75000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +287.5 + 20 +121.75000000000001 + 30 +0.0 + 11 +287.5 + 21 +122.75000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +287.5 + 20 +122.75000000000001 + 30 +0.0 + 11 +286.5 + 21 +122.75000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +266.5 + 20 +125.25000000000001 + 30 +0.0 + 11 +266.5 + 21 +124.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +266.5 + 20 +124.25000000000001 + 30 +0.0 + 11 +267.50000000000006 + 21 +124.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +267.50000000000006 + 20 +124.25000000000001 + 30 +0.0 + 11 +267.50000000000006 + 21 +125.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +267.50000000000006 + 20 +125.25000000000001 + 30 +0.0 + 11 +266.5 + 21 +125.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +286.5 + 20 +125.25000000000001 + 30 +0.0 + 11 +286.5 + 21 +124.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +286.5 + 20 +124.25000000000001 + 30 +0.0 + 11 +287.5 + 21 +124.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +287.5 + 20 +124.25000000000001 + 30 +0.0 + 11 +287.5 + 21 +125.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +287.5 + 20 +125.25000000000001 + 30 +0.0 + 11 +286.5 + 21 +125.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +266.5 + 20 +127.75000000000001 + 30 +0.0 + 11 +266.5 + 21 +126.75000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +266.5 + 20 +126.75000000000001 + 30 +0.0 + 11 +267.50000000000006 + 21 +126.75000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +267.50000000000006 + 20 +126.75000000000001 + 30 +0.0 + 11 +267.50000000000006 + 21 +127.75000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +267.50000000000006 + 20 +127.75000000000001 + 30 +0.0 + 11 +266.5 + 21 +127.75000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +286.5 + 20 +127.75000000000001 + 30 +0.0 + 11 +286.5 + 21 +126.75000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +286.5 + 20 +126.75000000000001 + 30 +0.0 + 11 +287.5 + 21 +126.75000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +287.5 + 20 +126.75000000000001 + 30 +0.0 + 11 +287.5 + 21 +127.75000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +287.5 + 20 +127.75000000000001 + 30 +0.0 + 11 +286.5 + 21 +127.75000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +266.5 + 20 +130.25000000000003 + 30 +0.0 + 11 +266.5 + 21 +129.25000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +266.5 + 20 +129.25000000000003 + 30 +0.0 + 11 +267.50000000000006 + 21 +129.25000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +267.50000000000006 + 20 +129.25000000000003 + 30 +0.0 + 11 +267.50000000000006 + 21 +130.25000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +267.50000000000006 + 20 +130.25000000000003 + 30 +0.0 + 11 +266.5 + 21 +130.25000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +286.5 + 20 +130.25000000000003 + 30 +0.0 + 11 +286.5 + 21 +129.25000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +286.5 + 20 +129.25000000000003 + 30 +0.0 + 11 +287.5 + 21 +129.25000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +287.5 + 20 +129.25000000000003 + 30 +0.0 + 11 +287.5 + 21 +130.25000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +287.5 + 20 +130.25000000000003 + 30 +0.0 + 11 +286.5 + 21 +130.25000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +266.5 + 20 +132.75000000000003 + 30 +0.0 + 11 +266.5 + 21 +131.75000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +266.5 + 20 +131.75000000000003 + 30 +0.0 + 11 +267.50000000000006 + 21 +131.75000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +267.50000000000006 + 20 +131.75000000000003 + 30 +0.0 + 11 +267.50000000000006 + 21 +132.75000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +267.50000000000006 + 20 +132.75000000000003 + 30 +0.0 + 11 +266.5 + 21 +132.75000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +286.5 + 20 +132.75000000000003 + 30 +0.0 + 11 +286.5 + 21 +131.75000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +286.5 + 20 +131.75000000000003 + 30 +0.0 + 11 +287.5 + 21 +131.75000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +287.5 + 20 +131.75000000000003 + 30 +0.0 + 11 +287.5 + 21 +132.75000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +287.5 + 20 +132.75000000000003 + 30 +0.0 + 11 +286.5 + 21 +132.75000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +266.5 + 20 +135.25000000000003 + 30 +0.0 + 11 +266.5 + 21 +134.25000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +266.5 + 20 +134.25000000000003 + 30 +0.0 + 11 +267.50000000000006 + 21 +134.25000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +267.50000000000006 + 20 +134.25000000000003 + 30 +0.0 + 11 +267.50000000000006 + 21 +135.25000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +267.50000000000006 + 20 +135.25000000000003 + 30 +0.0 + 11 +266.5 + 21 +135.25000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +286.5 + 20 +135.25000000000003 + 30 +0.0 + 11 +286.5 + 21 +134.25000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +286.5 + 20 +134.25000000000003 + 30 +0.0 + 11 +287.5 + 21 +134.25000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +287.5 + 20 +134.25000000000003 + 30 +0.0 + 11 +287.5 + 21 +135.25000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +287.5 + 20 +135.25000000000003 + 30 +0.0 + 11 +286.5 + 21 +135.25000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +266.5 + 20 +137.75000000000003 + 30 +0.0 + 11 +266.5 + 21 +136.75 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +266.5 + 20 +136.75 + 30 +0.0 + 11 +267.50000000000006 + 21 +136.75 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +267.50000000000006 + 20 +136.75 + 30 +0.0 + 11 +267.50000000000006 + 21 +137.75000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +267.50000000000006 + 20 +137.75000000000003 + 30 +0.0 + 11 +266.5 + 21 +137.75000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +286.5 + 20 +137.75000000000003 + 30 +0.0 + 11 +286.5 + 21 +136.75 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +286.5 + 20 +136.75 + 30 +0.0 + 11 +287.5 + 21 +136.75 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +287.5 + 20 +136.75 + 30 +0.0 + 11 +287.5 + 21 +137.75000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +287.5 + 20 +137.75000000000003 + 30 +0.0 + 11 +286.5 + 21 +137.75000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +266.5 + 20 +140.25000000000003 + 30 +0.0 + 11 +266.5 + 21 +139.25 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +266.5 + 20 +139.25 + 30 +0.0 + 11 +267.50000000000006 + 21 +139.25 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +267.50000000000006 + 20 +139.25 + 30 +0.0 + 11 +267.50000000000006 + 21 +140.25000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +267.50000000000006 + 20 +140.25000000000003 + 30 +0.0 + 11 +266.5 + 21 +140.25000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +286.5 + 20 +140.25000000000003 + 30 +0.0 + 11 +286.5 + 21 +139.25 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +286.5 + 20 +139.25 + 30 +0.0 + 11 +287.5 + 21 +139.25 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +287.5 + 20 +139.25 + 30 +0.0 + 11 +287.5 + 21 +140.25000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +287.5 + 20 +140.25000000000003 + 30 +0.0 + 11 +286.5 + 21 +140.25000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +266.5 + 20 +142.75000000000003 + 30 +0.0 + 11 +266.5 + 21 +141.75000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +266.5 + 20 +141.75000000000003 + 30 +0.0 + 11 +267.50000000000006 + 21 +141.75000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +267.50000000000006 + 20 +141.75000000000003 + 30 +0.0 + 11 +267.50000000000006 + 21 +142.75000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +267.50000000000006 + 20 +142.75000000000003 + 30 +0.0 + 11 +266.5 + 21 +142.75000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +286.5 + 20 +142.75000000000003 + 30 +0.0 + 11 +286.5 + 21 +141.75000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +286.5 + 20 +141.75000000000003 + 30 +0.0 + 11 +287.5 + 21 +141.75000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +287.5 + 20 +141.75000000000003 + 30 +0.0 + 11 +287.5 + 21 +142.75000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +287.5 + 20 +142.75000000000003 + 30 +0.0 + 11 +286.5 + 21 +142.75000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +266.5 + 20 +145.25 + 30 +0.0 + 11 +266.5 + 21 +144.25000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +266.5 + 20 +144.25000000000003 + 30 +0.0 + 11 +267.50000000000006 + 21 +144.25000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +267.50000000000006 + 20 +144.25000000000003 + 30 +0.0 + 11 +267.50000000000006 + 21 +145.25 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +267.50000000000006 + 20 +145.25 + 30 +0.0 + 11 +266.5 + 21 +145.25 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +286.5 + 20 +145.25 + 30 +0.0 + 11 +286.5 + 21 +144.25000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +286.5 + 20 +144.25000000000003 + 30 +0.0 + 11 +287.5 + 21 +144.25000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +287.5 + 20 +144.25000000000003 + 30 +0.0 + 11 +287.5 + 21 +145.25 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +287.5 + 20 +145.25 + 30 +0.0 + 11 +286.5 + 21 +145.25 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +266.5 + 20 +147.75 + 30 +0.0 + 11 +266.5 + 21 +146.75000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +266.5 + 20 +146.75000000000003 + 30 +0.0 + 11 +267.50000000000006 + 21 +146.75000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +267.50000000000006 + 20 +146.75000000000003 + 30 +0.0 + 11 +267.50000000000006 + 21 +147.75 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +267.50000000000006 + 20 +147.75 + 30 +0.0 + 11 +266.5 + 21 +147.75 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +285.50000000000006 + 20 +148.75000000000003 + 30 +0.0 + 11 +285.50000000000006 + 21 +145.75 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +285.50000000000006 + 20 +145.75 + 30 +0.0 + 11 +288.50000000000006 + 21 +145.75 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +288.50000000000006 + 20 +145.75 + 30 +0.0 + 11 +288.50000000000006 + 21 +148.75000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +288.50000000000006 + 20 +148.75000000000003 + 30 +0.0 + 11 +285.50000000000006 + 21 +148.75000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +281.25 + 20 +105.75 + 30 +0.0 + 11 +272.75 + 21 +105.75 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +272.75 + 20 +105.75 + 30 +0.0 + 11 +272.75 + 21 +105.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +272.75 + 20 +105.25000000000001 + 30 +0.0 + 11 +281.25 + 21 +105.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +281.25 + 20 +105.25000000000001 + 30 +0.0 + 11 +281.25 + 21 +105.75 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +272.75 + 20 +153.50000000000003 + 30 +0.0 + 11 +281.25 + 21 +153.50000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +281.25 + 20 +153.50000000000003 + 30 +0.0 + 11 +281.25 + 21 +154.00000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +281.25 + 20 +154.00000000000003 + 30 +0.0 + 11 +272.75 + 21 +154.00000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +272.75 + 20 +154.00000000000003 + 30 +0.0 + 11 +272.75 + 21 +153.50000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +257.5 + 20 +109.0909090909091 + 30 +0.0 + 11 +262.5 + 21 +109.0909090909091 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +262.5 + 20 +109.0909090909091 + 30 +0.0 + 11 +262.5 + 21 +120.1818181818182 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +262.5 + 20 +120.1818181818182 + 30 +0.0 + 11 +257.5 + 21 +120.1818181818182 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +257.5 + 20 +136.8181818181818 + 30 +0.0 + 11 +262.5 + 21 +136.8181818181818 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +262.5 + 20 +136.8181818181818 + 30 +0.0 + 11 +262.5 + 21 +147.90909090909093 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +262.5 + 20 +147.90909090909093 + 30 +0.0 + 11 +257.5 + 21 +147.90909090909093 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +282.75 + 20 +82.0 + 30 +0.0 + 11 +286.25 + 21 +82.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +286.25 + 20 +82.0 + 30 +0.0 + 11 +286.25 + 21 +90.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +286.25 + 20 +90.0 + 30 +0.0 + 11 +282.75 + 21 +90.0 + 31 +0.0 + 0 +ENDSEC + 0 +EOF diff --git a/rocolib/output/ServoMountAndStack/graph-autofold-graph.dxf b/rocolib/output/ServoMountAndStack/graph-autofold-graph.dxf new file mode 100644 index 0000000000000000000000000000000000000000..65512a431585d28fe69d5bb6b1505ce317ccd891 --- /dev/null +++ b/rocolib/output/ServoMountAndStack/graph-autofold-graph.dxf @@ -0,0 +1,9948 @@ + 0 +SECTION + 2 +HEADER + 9 +$ACADVER + 1 +AC1009 + 9 +$INSBASE + 10 +0.0 + 20 +0.0 + 30 +0.0 + 9 +$EXTMIN + 10 +0.0 + 20 +0.0 + 30 +0.0 + 9 +$EXTMAX + 10 +100.0 + 20 +100.0 + 30 +0.0 + 9 +$UNITMODE + 70 +0 + 9 +$AUNITS + 70 +0 + 9 +$ANGBASE + 50 +0.0 + 9 +$ANGDIR + 70 +0 + 0 +ENDSEC + 0 +SECTION + 2 +TABLES + 0 +TABLE + 2 +LTYPE + 70 +20 + 0 +LTYPE + 2 +CONTINUOUS + 70 +0 + 3 +Solid + 72 +65 + 73 +0 + 40 +0.0 + 0 +LTYPE + 2 +CENTER + 70 +0 + 3 +Center ____ _ ____ _ ____ _ ____ _ ____ _ ____ + 72 +65 + 73 +4 + 40 +2.0 + 49 +1.25 + 49 +-0.25 + 49 +0.25 + 49 +-0.25 + 0 +LTYPE + 2 +CENTERX2 + 70 +0 + 3 +Center (2x) ________ __ ________ __ ________ + 72 +65 + 73 +4 + 40 +3.5 + 49 +2.5 + 49 +-0.25 + 49 +0.5 + 49 +-0.25 + 0 +LTYPE + 2 +CENTER2 + 70 +0 + 3 +Center (.5x) ____ _ ____ _ ____ _ ____ _ ____ + 72 +65 + 73 +4 + 40 +1.0 + 49 +0.625 + 49 +-0.125 + 49 +0.125 + 49 +-0.125 + 0 +LTYPE + 2 +DASHED + 70 +0 + 3 +Dashed __ __ __ __ __ __ __ __ __ __ __ __ __ _ + 72 +65 + 73 +2 + 40 +0.6 + 49 +0.5 + 49 +-0.1 + 0 +LTYPE + 2 +DASHEDX2 + 70 +0 + 3 +Dashed (2x) ____ ____ ____ ____ ____ ____ + 72 +65 + 73 +2 + 40 +1.2 + 49 +1.0 + 49 +-0.2 + 0 +LTYPE + 2 +DASHED2 + 70 +0 + 3 +Dashed (.5x) _ _ _ _ _ _ _ _ _ _ _ _ _ _ + 72 +65 + 73 +2 + 40 +0.3 + 49 +0.25 + 49 +-0.05 + 0 +LTYPE + 2 +PHANTOM + 70 +0 + 3 +Phantom ______ __ __ ______ __ __ ______ + 72 +65 + 73 +6 + 40 +2.5 + 49 +1.25 + 49 +-0.25 + 49 +0.25 + 49 +-0.25 + 49 +0.25 + 49 +-0.25 + 0 +LTYPE + 2 +PHANTOMX2 + 70 +0 + 3 +Phantom (2x)____________ ____ ____ ____________ + 72 +65 + 73 +6 + 40 +4.25 + 49 +2.5 + 49 +-0.25 + 49 +0.5 + 49 +-0.25 + 49 +0.5 + 49 +-0.25 + 0 +LTYPE + 2 +PHANTOM2 + 70 +0 + 3 +Phantom (.5x) ___ _ _ ___ _ _ ___ _ _ ___ _ _ ___ + 72 +65 + 73 +6 + 40 +1.25 + 49 +0.625 + 49 +-0.125 + 49 +0.125 + 49 +-0.125 + 49 +0.125 + 49 +-0.125 + 0 +LTYPE + 2 +DASHDOT + 70 +0 + 3 +Dash dot __ . __ . __ . __ . __ . __ . __ . __ + 72 +65 + 73 +4 + 40 +1.4 + 49 +1.0 + 49 +-0.2 + 49 +0.0 + 49 +-0.2 + 0 +LTYPE + 2 +DASHDOTX2 + 70 +0 + 3 +Dash dot (2x) ____ . ____ . ____ . ____ + 72 +65 + 73 +4 + 40 +2.4 + 49 +2.0 + 49 +-0.2 + 49 +0.0 + 49 +-0.2 + 0 +LTYPE + 2 +DASHDOT2 + 70 +0 + 3 +Dash dot (.5x) _ . _ . _ . _ . _ . _ . _ . _ + 72 +65 + 73 +4 + 40 +0.7 + 49 +0.5 + 49 +-0.1 + 49 +0.0 + 49 +-0.1 + 0 +LTYPE + 2 +DOT + 70 +0 + 3 +Dot . . . . . . . . . . . . . . . . + 72 +65 + 73 +2 + 40 +0.2 + 49 +0.0 + 49 +-0.2 + 0 +LTYPE + 2 +DOTX2 + 70 +0 + 3 +Dot (2x) . . . . . . . . + 72 +65 + 73 +2 + 40 +0.4 + 49 +0.0 + 49 +-0.4 + 0 +LTYPE + 2 +DOT2 + 70 +0 + 3 +Dot (.5) . . . . . . . . . . . . . . . . . . . + 72 +65 + 73 +2 + 40 +0.1 + 49 +0.0 + 49 +-0.1 + 0 +LTYPE + 2 +DIVIDE + 70 +0 + 3 +Divide __ . . __ . . __ . . __ . . __ . . __ + 72 +65 + 73 +6 + 40 +1.6 + 49 +1.0 + 49 +-0.2 + 49 +0.0 + 49 +-0.2 + 49 +0.0 + 49 +-0.2 + 0 +LTYPE + 2 +DIVIDEX2 + 70 +0 + 3 +Divide (2x) ____ . . ____ . . ____ . . ____ + 72 +65 + 73 +6 + 40 +2.6 + 49 +2.0 + 49 +-0.2 + 49 +0.0 + 49 +-0.2 + 49 +0.0 + 49 +-0.2 + 0 +LTYPE + 2 +DIVIDE2 + 70 +0 + 3 +Divide(.5x) _ . _ . _ . _ . _ . _ . _ . _ + 72 +65 + 73 +6 + 40 +0.8 + 49 +0.5 + 49 +-0.1 + 49 +0.0 + 49 +-0.1 + 49 +0.0 + 49 +-0.1 + 0 +LTYPE + 2 +DOTTED + 70 +0 + 3 + + 72 +65 + 73 +2 + 40 +1.0 + 49 +0.0 + 49 +-1.0 + 0 +ENDTAB + 0 +TABLE + 2 +LAYER + 70 +5 + 0 +LAYER + 2 +DIMENSIONS + 70 +0 + 62 +1 + 6 +CONTINUOUS + 0 +LAYER + 2 +TABLEBACKGROUND + 70 +0 + 62 +1 + 6 +CONTINUOUS + 0 +LAYER + 2 +TABLECONTENT + 70 +0 + 62 +1 + 6 +CONTINUOUS + 0 +LAYER + 2 +TABLEGRID + 70 +0 + 62 +1 + 6 +CONTINUOUS + 0 +LAYER + 2 +VIEWPORTS + 70 +0 + 62 +7 + 6 +CONTINUOUS + 0 +ENDTAB + 0 +TABLE + 2 +STYLE + 70 +12 + 0 +STYLE + 2 +STANDARD + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +arial.ttf + 4 + + 0 +STYLE + 2 +ARIAL + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +arial.ttf + 4 + + 0 +STYLE + 2 +ARIAL_BOLD + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +arialbd.ttf + 4 + + 0 +STYLE + 2 +ARIAL_ITALIC + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +ariali.ttf + 4 + + 0 +STYLE + 2 +ARIAL_BOLD_ITALIC + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +arialbi.ttf + 4 + + 0 +STYLE + 2 +ARIAL_BLACK + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +ariblk.ttf + 4 + + 0 +STYLE + 2 +ISOCPEUR + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +isocpeur.ttf + 4 + + 0 +STYLE + 2 +ISOCPEUR_ITALIC + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +isocpeui.ttf + 4 + + 0 +STYLE + 2 +TIMES + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +times.ttf + 4 + + 0 +STYLE + 2 +TIMES_BOLD + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +timesbd.ttf + 4 + + 0 +STYLE + 2 +TIMES_ITALIC + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +timesi.ttf + 4 + + 0 +STYLE + 2 +TIMES_BOLD_ITALIC + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +timesbi.ttf + 4 + + 0 +ENDTAB + 0 +TABLE + 2 +VIEW + 70 +0 + 0 +ENDTAB + 0 +TABLE + 2 +APPID + 70 +1 + 0 +APPID + 2 +DXFWRITE + 70 +0 + 0 +ENDTAB + 0 +TABLE + 2 +VPORT + 70 +0 + 0 +ENDTAB + 0 +TABLE + 2 +UCS + 70 +0 + 0 +ENDTAB + 0 +ENDSEC + 0 +SECTION + 2 +BLOCKS + 0 +ENDSEC + 0 +SECTION + 2 +ENTITIES + 0 +VIEWPORT + 8 +VIEWPORTS + 67 +1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +1.0 + 41 +1.0 + 68 +1 + 69 +1 +1001 +ACAD +1000 +MVIEW +1002 +{ +1070 +16 +1010 +0.0 +1020 +0.0 +1030 +0.0 +1010 +0.0 +1020 +0.0 +1030 +0.0 +1040 +0.0 +1040 +1.0 +1040 +0.0 +1040 +0.0 +1040 +50.0 +1040 +0.0 +1040 +0.0 +1070 +0 +1070 +100 +1070 +1 +1070 +3 +1070 +0 +1070 +0 +1070 +0 +1070 +0 +1040 +0.0 +1040 +0.0 +1040 +0.0 +1040 +0.1 +1040 +0.1 +1040 +0.1 +1040 +0.1 +1070 +0 +1002 +{ +1002 +} +1002 +} + 0 +LINE + 62 +5 + 8 +0 + 10 +70.00000000000001 + 20 +74.0 + 30 +0.0 + 11 +34.0 + 21 +74.0 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +70.00000000000001 + 20 +74.0 + 30 +0.0 + 11 +70.00000000000001 + 21 +98.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +34.0 + 20 +98.00000000000001 + 30 +0.0 + 11 +70.00000000000001 + 21 +98.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +70.00000000000001 + 20 +98.00000000000001 + 30 +0.0 + 11 +115.00000000000001 + 21 +98.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +115.00000000000001 + 20 +74.0 + 30 +0.0 + 11 +70.00000000000001 + 21 +74.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +120.00000000000001 + 20 +74.0 + 30 +0.0 + 11 +115.00000000000001 + 21 +74.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +120.00000000000001 + 20 +98.00000000000001 + 30 +0.0 + 11 +120.00000000000001 + 21 +74.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +115.00000000000001 + 20 +98.00000000000001 + 30 +0.0 + 11 +120.00000000000001 + 21 +98.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +0.0 + 20 +98.00000000000001 + 30 +0.0 + 11 +34.0 + 21 +98.00000000000001 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +34.0 + 20 +74.0 + 30 +0.0 + 11 +0.0 + 21 +74.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +0.0 + 20 +74.0 + 30 +0.0 + 11 +0.0 + 21 +1.0000000000000002 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +0.0 + 20 +108.00000000000001 + 30 +0.0 + 11 +0.0 + 21 +98.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +0.0 + 20 +169.00000000000003 + 30 +0.0 + 11 +0.0 + 21 +169.00000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +0.0 + 20 +1.0000000000000002 + 30 +0.0 + 11 +0.0 + 21 +169.00000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +0.0 + 20 +1.0000000000000002 + 30 +0.0 + 11 +0.0 + 21 +1.0000000000000002 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +36.138621999185304 + 20 +108.00000000000001 + 30 +0.0 + 11 +36.138621999185304 + 21 +169.00000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +0.0 + 20 +169.00000000000003 + 30 +0.0 + 11 +36.138621999185304 + 21 +169.00000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +36.138621999185304 + 20 +108.00000000000001 + 30 +0.0 + 11 +0.0 + 21 +108.00000000000001 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +60.13862199918531 + 20 +169.00000000000003 + 30 +0.0 + 11 +60.13862199918531 + 21 +108.00000000000001 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +60.13862199918531 + 20 +169.00000000000003 + 30 +0.0 + 11 +36.138621999185304 + 21 +169.00000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +96.27724399837062 + 20 +108.00000000000001 + 30 +0.0 + 11 +60.13862199918531 + 21 +108.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +60.13862199918531 + 20 +169.00000000000003 + 30 +0.0 + 11 +96.27724399837062 + 21 +169.00000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +106.27724399837062 + 20 +108.00000000000001 + 30 +0.0 + 11 +96.27724399837062 + 21 +108.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +106.27724399837062 + 20 +169.00000000000003 + 30 +0.0 + 11 +106.27724399837062 + 21 +108.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +96.27724399837062 + 20 +169.00000000000003 + 30 +0.0 + 11 +106.27724399837062 + 21 +169.00000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +60.13862199918531 + 20 +179.00000000000003 + 30 +0.0 + 11 +60.13862199918531 + 21 +169.00000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +36.138621999185304 + 20 +179.00000000000003 + 30 +0.0 + 11 +60.13862199918531 + 21 +179.00000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +36.138621999185304 + 20 +169.00000000000003 + 30 +0.0 + 11 +36.138621999185304 + 21 +179.00000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +36.138621999185304 + 20 +98.00000000000001 + 30 +0.0 + 11 +36.138621999185304 + 21 +108.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +60.13862199918531 + 20 +98.00000000000001 + 30 +0.0 + 11 +36.138621999185304 + 21 +98.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +60.13862199918531 + 20 +108.00000000000001 + 30 +0.0 + 11 +60.13862199918531 + 21 +98.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +34.0 + 20 +74.0 + 30 +0.0 + 11 +34.0 + 21 +54.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +0.0 + 20 +54.00000000000001 + 30 +0.0 + 11 +0.0 + 21 +74.0 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +34.0 + 20 +54.00000000000001 + 30 +0.0 + 11 +0.0 + 21 +54.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +34.0 + 20 +54.00000000000001 + 30 +0.0 + 11 +34.0 + 21 +30.000000000000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +0.0 + 20 +30.000000000000004 + 30 +0.0 + 11 +0.0 + 21 +54.00000000000001 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +34.0 + 20 +30.000000000000004 + 30 +0.0 + 11 +0.0 + 21 +30.000000000000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +34.0 + 20 +30.000000000000004 + 30 +0.0 + 11 +34.0 + 21 +10.000000000000002 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +0.0 + 20 +10.000000000000002 + 30 +0.0 + 11 +0.0 + 21 +30.000000000000004 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +0.0 + 20 +10.000000000000002 + 30 +0.0 + 11 +34.0 + 21 +10.000000000000002 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 11 +0.0 + 21 +10.000000000000002 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +34.0 + 20 +0.0 + 30 +0.0 + 11 +0.0 + 21 +0.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +34.0 + 20 +10.000000000000002 + 30 +0.0 + 11 +34.0 + 21 +0.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +118.75000000000001 + 20 +90.0 + 30 +0.0 + 11 +118.75000000000001 + 21 +92.50000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +118.75000000000001 + 20 +92.50000000000001 + 30 +0.0 + 11 +116.25000000000001 + 21 +90.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +116.25000000000001 + 20 +90.0 + 30 +0.0 + 11 +116.25000000000001 + 21 +82.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +116.25000000000001 + 20 +82.0 + 30 +0.0 + 11 +118.75000000000001 + 21 +79.5 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +118.75000000000001 + 20 +79.5 + 30 +0.0 + 11 +118.75000000000001 + 21 +82.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +11.08333333333333 + 20 +90.25000000000001 + 30 +0.0 + 11 +22.916666666666668 + 21 +90.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +22.916666666666668 + 20 +90.25000000000001 + 30 +0.0 + 11 +22.916666666666668 + 21 +90.75000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +22.916666666666668 + 20 +90.75000000000001 + 30 +0.0 + 11 +11.08333333333333 + 21 +90.75000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +11.08333333333333 + 20 +90.75000000000001 + 30 +0.0 + 11 +11.08333333333333 + 21 +90.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +54.63862199918531 + 20 +126.00000000000001 + 30 +0.0 + 11 +54.63862199918531 + 21 +137.00000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +54.63862199918531 + 20 +137.00000000000003 + 30 +0.0 + 11 +41.63862199918531 + 21 +137.00000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +41.63862199918531 + 20 +137.00000000000003 + 30 +0.0 + 11 +41.63862199918531 + 21 +126.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +41.63862199918531 + 20 +126.00000000000001 + 30 +0.0 + 11 +54.63862199918531 + 21 +126.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +53.13862199918531 + 20 +157.50000000000003 + 30 +0.0 + 11 +53.13862199918531 + 21 +163.5 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +53.13862199918531 + 20 +163.5 + 30 +0.0 + 11 +43.13862199918531 + 21 +163.5 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +43.13862199918531 + 20 +163.5 + 30 +0.0 + 11 +43.13862199918531 + 21 +157.50000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +43.13862199918531 + 20 +157.50000000000003 + 30 +0.0 + 11 +53.13862199918531 + 21 +157.50000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +103.77724399837062 + 20 +157.9090909090909 + 30 +0.0 + 11 +98.77724399837062 + 21 +157.9090909090909 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +98.77724399837062 + 20 +157.9090909090909 + 30 +0.0 + 11 +98.77724399837062 + 21 +146.81818181818184 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +98.77724399837062 + 20 +146.81818181818184 + 30 +0.0 + 11 +103.77724399837062 + 21 +146.81818181818184 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +103.77724399837062 + 20 +130.18181818181822 + 30 +0.0 + 11 +98.77724399837062 + 21 +130.18181818181822 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +98.77724399837062 + 20 +130.18181818181822 + 30 +0.0 + 11 +98.77724399837062 + 21 +119.09090909090911 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +98.77724399837062 + 20 +119.09090909090911 + 30 +0.0 + 11 +103.77724399837062 + 21 +119.09090909090911 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +44.138621999185304 + 20 +176.50000000000003 + 30 +0.0 + 11 +44.138621999185304 + 21 +171.50000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +44.138621999185304 + 20 +171.50000000000003 + 30 +0.0 + 11 +52.13862199918531 + 21 +171.50000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +52.13862199918531 + 20 +171.50000000000003 + 30 +0.0 + 11 +52.13862199918531 + 21 +176.50000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +52.13862199918531 + 20 +100.50000000000001 + 30 +0.0 + 11 +52.13862199918531 + 21 +105.50000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +52.13862199918531 + 20 +105.50000000000001 + 30 +0.0 + 11 +44.138621999185304 + 21 +105.50000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +44.138621999185304 + 20 +105.50000000000001 + 30 +0.0 + 11 +44.138621999185304 + 21 +100.50000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +23.000000000000004 + 20 +55.00000000000001 + 30 +0.0 + 11 +23.000000000000004 + 21 +59.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +23.000000000000004 + 20 +59.00000000000001 + 30 +0.0 + 11 +11.000000000000002 + 21 +59.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +11.000000000000002 + 20 +59.00000000000001 + 30 +0.0 + 11 +11.000000000000002 + 21 +55.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +11.000000000000002 + 20 +55.00000000000001 + 30 +0.0 + 11 +23.000000000000004 + 21 +55.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +21.500000000000004 + 20 +67.00000000000001 + 30 +0.0 + 11 +21.500000000000004 + 21 +71.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +21.500000000000004 + 20 +71.00000000000001 + 30 +0.0 + 11 +12.5 + 21 +71.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +12.5 + 20 +71.00000000000001 + 30 +0.0 + 11 +12.5 + 21 +67.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +12.5 + 20 +67.00000000000001 + 30 +0.0 + 11 +21.500000000000004 + 21 +67.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +23.000000000000004 + 20 +30.500000000000004 + 30 +0.0 + 11 +23.000000000000004 + 21 +53.5 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +23.000000000000004 + 20 +53.5 + 30 +0.0 + 11 +11.000000000000002 + 21 +53.5 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +11.000000000000002 + 20 +53.5 + 30 +0.0 + 11 +11.000000000000002 + 21 +30.500000000000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +11.000000000000002 + 20 +30.500000000000004 + 30 +0.0 + 11 +23.000000000000004 + 21 +30.500000000000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +23.000000000000004 + 20 +25.0 + 30 +0.0 + 11 +23.000000000000004 + 21 +29.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +23.000000000000004 + 20 +29.0 + 30 +0.0 + 11 +11.000000000000002 + 21 +29.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +11.000000000000002 + 20 +29.0 + 30 +0.0 + 11 +11.000000000000002 + 21 +25.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +11.000000000000002 + 20 +25.0 + 30 +0.0 + 11 +23.000000000000004 + 21 +25.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +22.666666666666668 + 20 +2.5000000000000004 + 30 +0.0 + 11 +22.666666666666668 + 21 +7.500000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +22.666666666666668 + 20 +7.500000000000001 + 30 +0.0 + 11 +11.33333333333333 + 21 +7.500000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +11.33333333333333 + 20 +7.500000000000001 + 30 +0.0 + 11 +11.33333333333333 + 21 +2.5000000000000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +200.0 + 20 +74.0 + 30 +0.0 + 11 +164.0 + 21 +74.0 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +200.0 + 20 +74.0 + 30 +0.0 + 11 +200.0 + 21 +98.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +164.0 + 20 +98.00000000000001 + 30 +0.0 + 11 +200.0 + 21 +98.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +200.0 + 20 +98.00000000000001 + 30 +0.0 + 11 +245.00000000000003 + 21 +98.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +245.00000000000003 + 20 +74.0 + 30 +0.0 + 11 +200.0 + 21 +74.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +245.00000000000003 + 20 +98.00000000000001 + 30 +0.0 + 11 +245.00000000000003 + 21 +74.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +164.0 + 20 +74.0 + 30 +0.0 + 11 +130.0 + 21 +74.0 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +130.0 + 20 +98.00000000000001 + 30 +0.0 + 11 +164.0 + 21 +98.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +130.0 + 20 +64.00000000000001 + 30 +0.0 + 11 +130.0 + 21 +3.0000000000000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +130.0 + 20 +74.0 + 30 +0.0 + 11 +130.0 + 21 +64.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +130.0 + 20 +171.00000000000003 + 30 +0.0 + 11 +130.0 + 21 +98.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +130.0 + 20 +171.00000000000003 + 30 +0.0 + 11 +130.0 + 21 +171.00000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +130.0 + 20 +3.0000000000000004 + 30 +0.0 + 11 +130.0 + 21 +171.00000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +130.0 + 20 +3.0000000000000004 + 30 +0.0 + 11 +130.0 + 21 +3.0000000000000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +130.0 + 20 +98.00000000000001 + 30 +0.0 + 11 +130.0 + 21 +118.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +164.0 + 20 +118.00000000000001 + 30 +0.0 + 11 +164.0 + 21 +98.00000000000001 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +130.0 + 20 +118.00000000000001 + 30 +0.0 + 11 +164.0 + 21 +118.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +130.0 + 20 +118.00000000000001 + 30 +0.0 + 11 +130.0 + 21 +142.00000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +164.0 + 20 +142.00000000000003 + 30 +0.0 + 11 +164.0 + 21 +118.00000000000001 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +130.0 + 20 +142.00000000000003 + 30 +0.0 + 11 +164.0 + 21 +142.00000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +130.0 + 20 +142.00000000000003 + 30 +0.0 + 11 +130.0 + 21 +162.00000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +164.0 + 20 +162.00000000000003 + 30 +0.0 + 11 +164.0 + 21 +142.00000000000003 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +164.0 + 20 +162.00000000000003 + 30 +0.0 + 11 +130.0 + 21 +162.00000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +164.0 + 20 +172.00000000000003 + 30 +0.0 + 11 +164.0 + 21 +162.00000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +130.0 + 20 +172.00000000000003 + 30 +0.0 + 11 +164.0 + 21 +172.00000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +130.0 + 20 +162.00000000000003 + 30 +0.0 + 11 +130.0 + 21 +172.00000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +241.00000000000003 + 20 +90.25000000000001 + 30 +0.0 + 11 +241.00000000000003 + 21 +81.75 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +241.00000000000003 + 20 +81.75 + 30 +0.0 + 11 +241.50000000000003 + 21 +81.75 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +241.50000000000003 + 20 +81.75 + 30 +0.0 + 11 +241.50000000000003 + 21 +90.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +241.50000000000003 + 20 +90.25000000000001 + 30 +0.0 + 11 +241.00000000000003 + 21 +90.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +152.91666666666669 + 20 +81.75 + 30 +0.0 + 11 +141.08333333333334 + 21 +81.75 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +141.08333333333334 + 20 +81.75 + 30 +0.0 + 11 +141.08333333333334 + 21 +81.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +141.08333333333334 + 20 +81.25000000000001 + 30 +0.0 + 11 +152.91666666666669 + 21 +81.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +152.91666666666669 + 20 +81.25000000000001 + 30 +0.0 + 11 +152.91666666666669 + 21 +81.75 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +122.25000000000001 + 20 +25.43181818181819 + 30 +0.0 + 11 +122.25000000000001 + 21 +13.840909090909095 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +122.25000000000001 + 20 +13.840909090909095 + 30 +0.0 + 11 +122.75000000000001 + 21 +13.840909090909095 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +122.75000000000001 + 20 +13.840909090909095 + 30 +0.0 + 11 +122.75000000000001 + 21 +25.43181818181819 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +122.75000000000001 + 20 +25.43181818181819 + 30 +0.0 + 11 +122.25000000000001 + 21 +25.43181818181819 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +122.25000000000001 + 20 +53.15909090909092 + 30 +0.0 + 11 +122.25000000000001 + 21 +41.568181818181834 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +122.25000000000001 + 20 +41.568181818181834 + 30 +0.0 + 11 +122.75000000000001 + 21 +41.568181818181834 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +122.75000000000001 + 20 +41.568181818181834 + 30 +0.0 + 11 +122.75000000000001 + 21 +53.15909090909092 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +122.75000000000001 + 20 +53.15909090909092 + 30 +0.0 + 11 +122.25000000000001 + 21 +53.15909090909092 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +141.0 + 20 +117.00000000000001 + 30 +0.0 + 11 +141.0 + 21 +113.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +141.0 + 20 +113.00000000000001 + 30 +0.0 + 11 +153.00000000000003 + 21 +113.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +153.00000000000003 + 20 +113.00000000000001 + 30 +0.0 + 11 +153.00000000000003 + 21 +117.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +153.00000000000003 + 20 +117.00000000000001 + 30 +0.0 + 11 +141.0 + 21 +117.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +142.50000000000003 + 20 +105.00000000000001 + 30 +0.0 + 11 +142.50000000000003 + 21 +101.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +142.50000000000003 + 20 +101.00000000000001 + 30 +0.0 + 11 +151.50000000000003 + 21 +101.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +151.50000000000003 + 20 +101.00000000000001 + 30 +0.0 + 11 +151.50000000000003 + 21 +105.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +151.50000000000003 + 20 +105.00000000000001 + 30 +0.0 + 11 +142.50000000000003 + 21 +105.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +141.0 + 20 +141.5 + 30 +0.0 + 11 +141.0 + 21 +118.50000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +141.0 + 20 +118.50000000000001 + 30 +0.0 + 11 +153.00000000000003 + 21 +118.50000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +153.00000000000003 + 20 +118.50000000000001 + 30 +0.0 + 11 +153.00000000000003 + 21 +141.5 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +153.00000000000003 + 20 +141.5 + 30 +0.0 + 11 +141.0 + 21 +141.5 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +141.0 + 20 +147.00000000000003 + 30 +0.0 + 11 +141.0 + 21 +143.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +141.0 + 20 +143.0 + 30 +0.0 + 11 +153.00000000000003 + 21 +143.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +153.00000000000003 + 20 +143.0 + 30 +0.0 + 11 +153.00000000000003 + 21 +147.00000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +153.00000000000003 + 20 +147.00000000000003 + 30 +0.0 + 11 +141.0 + 21 +147.00000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +141.33333333333334 + 20 +169.50000000000003 + 30 +0.0 + 11 +141.33333333333334 + 21 +164.50000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +141.33333333333334 + 20 +164.50000000000003 + 30 +0.0 + 11 +152.66666666666666 + 21 +164.50000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +152.66666666666666 + 20 +164.50000000000003 + 30 +0.0 + 11 +152.66666666666666 + 21 +169.50000000000003 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +288.00000000000006 + 20 +74.0 + 30 +0.0 + 11 +349.00000000000006 + 21 +74.0 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +349.00000000000006 + 20 +74.0 + 30 +0.0 + 11 +349.00000000000006 + 21 +98.00000000000001 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +349.00000000000006 + 20 +98.00000000000001 + 30 +0.0 + 11 +288.00000000000006 + 21 +98.00000000000001 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +288.00000000000006 + 20 +98.00000000000001 + 30 +0.0 + 11 +288.00000000000006 + 21 +74.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +288.00000000000006 + 20 +67.00000000000001 + 30 +0.0 + 11 +288.00000000000006 + 21 +74.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +348.00000000000006 + 20 +67.00000000000001 + 30 +0.0 + 11 +288.00000000000006 + 21 +67.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +348.00000000000006 + 20 +74.0 + 30 +0.0 + 11 +348.00000000000006 + 21 +67.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +356.00000000000006 + 20 +74.0 + 30 +0.0 + 11 +349.00000000000006 + 21 +74.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +356.00000000000006 + 20 +98.00000000000001 + 30 +0.0 + 11 +356.00000000000006 + 21 +74.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +349.00000000000006 + 20 +98.00000000000001 + 30 +0.0 + 11 +356.00000000000006 + 21 +98.00000000000001 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +349.00000000000006 + 20 +98.00000000000001 + 30 +0.0 + 11 +349.00000000000006 + 21 +159.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +289.00000000000006 + 20 +159.0 + 30 +0.0 + 11 +349.00000000000006 + 21 +159.0 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +289.00000000000006 + 20 +98.00000000000001 + 30 +0.0 + 11 +289.00000000000006 + 21 +159.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +373.0 + 20 +98.00000000000001 + 30 +0.0 + 11 +349.00000000000006 + 21 +98.00000000000001 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +373.0 + 20 +98.00000000000001 + 30 +0.0 + 11 +373.0 + 21 +159.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +349.00000000000006 + 20 +159.0 + 30 +0.0 + 11 +373.0 + 21 +159.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +433.00000000000006 + 20 +98.00000000000001 + 30 +0.0 + 11 +373.0 + 21 +98.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +433.00000000000006 + 20 +159.0 + 30 +0.0 + 11 +433.00000000000006 + 21 +98.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +373.0 + 20 +159.0 + 30 +0.0 + 11 +433.00000000000006 + 21 +159.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +289.00000000000006 + 20 +98.00000000000001 + 30 +0.0 + 11 +265.00000000000006 + 21 +98.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +265.00000000000006 + 20 +159.0 + 30 +0.0 + 11 +289.00000000000006 + 21 +159.0 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +265.00000000000006 + 20 +159.0 + 30 +0.0 + 11 +265.00000000000006 + 21 +98.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +255.00000000000003 + 20 +159.0 + 30 +0.0 + 11 +265.00000000000006 + 21 +159.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +255.00000000000003 + 20 +98.00000000000001 + 30 +0.0 + 11 +255.00000000000003 + 21 +159.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +265.00000000000006 + 20 +98.00000000000001 + 30 +0.0 + 11 +255.00000000000003 + 21 +98.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +281.00000000000006 + 20 +98.00000000000001 + 30 +0.0 + 11 +288.00000000000006 + 21 +98.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +281.00000000000006 + 20 +74.0 + 30 +0.0 + 11 +281.00000000000006 + 21 +98.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +288.00000000000006 + 20 +74.0 + 30 +0.0 + 11 +281.00000000000006 + 21 +74.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +337.0909090909092 + 20 +68.75000000000001 + 30 +0.0 + 11 +340.59090909090907 + 21 +68.75000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +340.59090909090907 + 20 +68.75000000000001 + 30 +0.0 + 11 +337.0909090909092 + 21 +72.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +337.0909090909092 + 20 +72.25000000000001 + 30 +0.0 + 11 +326.18181818181824 + 21 +72.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +326.18181818181824 + 20 +72.25000000000001 + 30 +0.0 + 11 +322.68181818181824 + 21 +68.75000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +322.68181818181824 + 20 +68.75000000000001 + 30 +0.0 + 11 +326.18181818181824 + 21 +68.75000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +309.81818181818187 + 20 +68.75000000000001 + 30 +0.0 + 11 +313.31818181818187 + 21 +68.75000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +313.31818181818187 + 20 +68.75000000000001 + 30 +0.0 + 11 +309.81818181818187 + 21 +72.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +309.81818181818187 + 20 +72.25000000000001 + 30 +0.0 + 11 +298.909090909091 + 21 +72.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +298.909090909091 + 20 +72.25000000000001 + 30 +0.0 + 11 +295.409090909091 + 21 +68.75000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +295.409090909091 + 20 +68.75000000000001 + 30 +0.0 + 11 +298.909090909091 + 21 +68.75000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +354.25000000000006 + 20 +90.0 + 30 +0.0 + 11 +350.75 + 21 +90.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +350.75 + 20 +90.0 + 30 +0.0 + 11 +350.75 + 21 +82.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +350.75 + 20 +82.0 + 30 +0.0 + 11 +354.25000000000006 + 21 +82.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +296.5 + 20 +149.50000000000003 + 30 +0.0 + 11 +296.5 + 21 +131.50000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +296.5 + 20 +131.50000000000003 + 30 +0.0 + 11 +331.5 + 21 +131.50000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +331.5 + 20 +131.50000000000003 + 30 +0.0 + 11 +331.5 + 21 +149.50000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +331.5 + 20 +149.50000000000003 + 30 +0.0 + 11 +296.5 + 21 +149.50000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +349.50000000000006 + 20 +111.25000000000001 + 30 +0.0 + 11 +349.50000000000006 + 21 +108.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +349.50000000000006 + 20 +108.25000000000001 + 30 +0.0 + 11 +352.50000000000006 + 21 +108.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +352.50000000000006 + 20 +108.25000000000001 + 30 +0.0 + 11 +352.50000000000006 + 21 +111.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +352.50000000000006 + 20 +111.25000000000001 + 30 +0.0 + 11 +349.50000000000006 + 21 +111.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +370.50000000000006 + 20 +110.25000000000001 + 30 +0.0 + 11 +370.50000000000006 + 21 +109.25 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +370.50000000000006 + 20 +109.25 + 30 +0.0 + 11 +371.50000000000006 + 21 +109.25 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +371.50000000000006 + 20 +109.25 + 30 +0.0 + 11 +371.50000000000006 + 21 +110.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +371.50000000000006 + 20 +110.25000000000001 + 30 +0.0 + 11 +370.50000000000006 + 21 +110.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +350.5 + 20 +112.75000000000001 + 30 +0.0 + 11 +350.5 + 21 +111.75000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +350.5 + 20 +111.75000000000001 + 30 +0.0 + 11 +351.50000000000006 + 21 +111.75000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +351.50000000000006 + 20 +111.75000000000001 + 30 +0.0 + 11 +351.50000000000006 + 21 +112.75000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +351.50000000000006 + 20 +112.75000000000001 + 30 +0.0 + 11 +350.5 + 21 +112.75000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +370.50000000000006 + 20 +112.75000000000001 + 30 +0.0 + 11 +370.50000000000006 + 21 +111.75000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +370.50000000000006 + 20 +111.75000000000001 + 30 +0.0 + 11 +371.50000000000006 + 21 +111.75000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +371.50000000000006 + 20 +111.75000000000001 + 30 +0.0 + 11 +371.50000000000006 + 21 +112.75000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +371.50000000000006 + 20 +112.75000000000001 + 30 +0.0 + 11 +370.50000000000006 + 21 +112.75000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +350.5 + 20 +115.25000000000001 + 30 +0.0 + 11 +350.5 + 21 +114.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +350.5 + 20 +114.25000000000001 + 30 +0.0 + 11 +351.50000000000006 + 21 +114.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +351.50000000000006 + 20 +114.25000000000001 + 30 +0.0 + 11 +351.50000000000006 + 21 +115.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +351.50000000000006 + 20 +115.25000000000001 + 30 +0.0 + 11 +350.5 + 21 +115.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +370.50000000000006 + 20 +115.25000000000001 + 30 +0.0 + 11 +370.50000000000006 + 21 +114.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +370.50000000000006 + 20 +114.25000000000001 + 30 +0.0 + 11 +371.50000000000006 + 21 +114.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +371.50000000000006 + 20 +114.25000000000001 + 30 +0.0 + 11 +371.50000000000006 + 21 +115.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +371.50000000000006 + 20 +115.25000000000001 + 30 +0.0 + 11 +370.50000000000006 + 21 +115.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +350.5 + 20 +117.75000000000001 + 30 +0.0 + 11 +350.5 + 21 +116.75000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +350.5 + 20 +116.75000000000001 + 30 +0.0 + 11 +351.50000000000006 + 21 +116.75000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +351.50000000000006 + 20 +116.75000000000001 + 30 +0.0 + 11 +351.50000000000006 + 21 +117.75000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +351.50000000000006 + 20 +117.75000000000001 + 30 +0.0 + 11 +350.5 + 21 +117.75000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +370.50000000000006 + 20 +117.75000000000001 + 30 +0.0 + 11 +370.50000000000006 + 21 +116.75000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +370.50000000000006 + 20 +116.75000000000001 + 30 +0.0 + 11 +371.50000000000006 + 21 +116.75000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +371.50000000000006 + 20 +116.75000000000001 + 30 +0.0 + 11 +371.50000000000006 + 21 +117.75000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +371.50000000000006 + 20 +117.75000000000001 + 30 +0.0 + 11 +370.50000000000006 + 21 +117.75000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +350.5 + 20 +120.25000000000001 + 30 +0.0 + 11 +350.5 + 21 +119.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +350.5 + 20 +119.25000000000001 + 30 +0.0 + 11 +351.50000000000006 + 21 +119.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +351.50000000000006 + 20 +119.25000000000001 + 30 +0.0 + 11 +351.50000000000006 + 21 +120.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +351.50000000000006 + 20 +120.25000000000001 + 30 +0.0 + 11 +350.5 + 21 +120.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +370.50000000000006 + 20 +120.25000000000001 + 30 +0.0 + 11 +370.50000000000006 + 21 +119.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +370.50000000000006 + 20 +119.25000000000001 + 30 +0.0 + 11 +371.50000000000006 + 21 +119.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +371.50000000000006 + 20 +119.25000000000001 + 30 +0.0 + 11 +371.50000000000006 + 21 +120.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +371.50000000000006 + 20 +120.25000000000001 + 30 +0.0 + 11 +370.50000000000006 + 21 +120.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +350.5 + 20 +122.75000000000001 + 30 +0.0 + 11 +350.5 + 21 +121.75000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +350.5 + 20 +121.75000000000001 + 30 +0.0 + 11 +351.50000000000006 + 21 +121.75000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +351.50000000000006 + 20 +121.75000000000001 + 30 +0.0 + 11 +351.50000000000006 + 21 +122.75000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +351.50000000000006 + 20 +122.75000000000001 + 30 +0.0 + 11 +350.5 + 21 +122.75000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +370.50000000000006 + 20 +122.75000000000001 + 30 +0.0 + 11 +370.50000000000006 + 21 +121.75000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +370.50000000000006 + 20 +121.75000000000001 + 30 +0.0 + 11 +371.50000000000006 + 21 +121.75000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +371.50000000000006 + 20 +121.75000000000001 + 30 +0.0 + 11 +371.50000000000006 + 21 +122.75000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +371.50000000000006 + 20 +122.75000000000001 + 30 +0.0 + 11 +370.50000000000006 + 21 +122.75000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +350.5 + 20 +125.25000000000001 + 30 +0.0 + 11 +350.5 + 21 +124.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +350.5 + 20 +124.25000000000001 + 30 +0.0 + 11 +351.50000000000006 + 21 +124.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +351.50000000000006 + 20 +124.25000000000001 + 30 +0.0 + 11 +351.50000000000006 + 21 +125.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +351.50000000000006 + 20 +125.25000000000001 + 30 +0.0 + 11 +350.5 + 21 +125.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +370.50000000000006 + 20 +125.25000000000001 + 30 +0.0 + 11 +370.50000000000006 + 21 +124.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +370.50000000000006 + 20 +124.25000000000001 + 30 +0.0 + 11 +371.50000000000006 + 21 +124.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +371.50000000000006 + 20 +124.25000000000001 + 30 +0.0 + 11 +371.50000000000006 + 21 +125.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +371.50000000000006 + 20 +125.25000000000001 + 30 +0.0 + 11 +370.50000000000006 + 21 +125.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +350.5 + 20 +127.75000000000001 + 30 +0.0 + 11 +350.5 + 21 +126.75000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +350.5 + 20 +126.75000000000001 + 30 +0.0 + 11 +351.50000000000006 + 21 +126.75000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +351.50000000000006 + 20 +126.75000000000001 + 30 +0.0 + 11 +351.50000000000006 + 21 +127.75000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +351.50000000000006 + 20 +127.75000000000001 + 30 +0.0 + 11 +350.5 + 21 +127.75000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +370.50000000000006 + 20 +127.75000000000001 + 30 +0.0 + 11 +370.50000000000006 + 21 +126.75000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +370.50000000000006 + 20 +126.75000000000001 + 30 +0.0 + 11 +371.50000000000006 + 21 +126.75000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +371.50000000000006 + 20 +126.75000000000001 + 30 +0.0 + 11 +371.50000000000006 + 21 +127.75000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +371.50000000000006 + 20 +127.75000000000001 + 30 +0.0 + 11 +370.50000000000006 + 21 +127.75000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +350.5 + 20 +130.25000000000003 + 30 +0.0 + 11 +350.5 + 21 +129.25000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +350.5 + 20 +129.25000000000003 + 30 +0.0 + 11 +351.50000000000006 + 21 +129.25000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +351.50000000000006 + 20 +129.25000000000003 + 30 +0.0 + 11 +351.50000000000006 + 21 +130.25000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +351.50000000000006 + 20 +130.25000000000003 + 30 +0.0 + 11 +350.5 + 21 +130.25000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +370.50000000000006 + 20 +130.25000000000003 + 30 +0.0 + 11 +370.50000000000006 + 21 +129.25000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +370.50000000000006 + 20 +129.25000000000003 + 30 +0.0 + 11 +371.50000000000006 + 21 +129.25000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +371.50000000000006 + 20 +129.25000000000003 + 30 +0.0 + 11 +371.50000000000006 + 21 +130.25000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +371.50000000000006 + 20 +130.25000000000003 + 30 +0.0 + 11 +370.50000000000006 + 21 +130.25000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +350.5 + 20 +132.75000000000003 + 30 +0.0 + 11 +350.5 + 21 +131.75000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +350.5 + 20 +131.75000000000003 + 30 +0.0 + 11 +351.50000000000006 + 21 +131.75000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +351.50000000000006 + 20 +131.75000000000003 + 30 +0.0 + 11 +351.50000000000006 + 21 +132.75000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +351.50000000000006 + 20 +132.75000000000003 + 30 +0.0 + 11 +350.5 + 21 +132.75000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +370.50000000000006 + 20 +132.75000000000003 + 30 +0.0 + 11 +370.50000000000006 + 21 +131.75000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +370.50000000000006 + 20 +131.75000000000003 + 30 +0.0 + 11 +371.50000000000006 + 21 +131.75000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +371.50000000000006 + 20 +131.75000000000003 + 30 +0.0 + 11 +371.50000000000006 + 21 +132.75000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +371.50000000000006 + 20 +132.75000000000003 + 30 +0.0 + 11 +370.50000000000006 + 21 +132.75000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +350.5 + 20 +135.25000000000003 + 30 +0.0 + 11 +350.5 + 21 +134.25000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +350.5 + 20 +134.25000000000003 + 30 +0.0 + 11 +351.50000000000006 + 21 +134.25000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +351.50000000000006 + 20 +134.25000000000003 + 30 +0.0 + 11 +351.50000000000006 + 21 +135.25000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +351.50000000000006 + 20 +135.25000000000003 + 30 +0.0 + 11 +350.5 + 21 +135.25000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +370.50000000000006 + 20 +135.25000000000003 + 30 +0.0 + 11 +370.50000000000006 + 21 +134.25000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +370.50000000000006 + 20 +134.25000000000003 + 30 +0.0 + 11 +371.50000000000006 + 21 +134.25000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +371.50000000000006 + 20 +134.25000000000003 + 30 +0.0 + 11 +371.50000000000006 + 21 +135.25000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +371.50000000000006 + 20 +135.25000000000003 + 30 +0.0 + 11 +370.50000000000006 + 21 +135.25000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +350.5 + 20 +137.75000000000003 + 30 +0.0 + 11 +350.5 + 21 +136.75 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +350.5 + 20 +136.75 + 30 +0.0 + 11 +351.50000000000006 + 21 +136.75 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +351.50000000000006 + 20 +136.75 + 30 +0.0 + 11 +351.50000000000006 + 21 +137.75000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +351.50000000000006 + 20 +137.75000000000003 + 30 +0.0 + 11 +350.5 + 21 +137.75000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +370.50000000000006 + 20 +137.75000000000003 + 30 +0.0 + 11 +370.50000000000006 + 21 +136.75 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +370.50000000000006 + 20 +136.75 + 30 +0.0 + 11 +371.50000000000006 + 21 +136.75 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +371.50000000000006 + 20 +136.75 + 30 +0.0 + 11 +371.50000000000006 + 21 +137.75000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +371.50000000000006 + 20 +137.75000000000003 + 30 +0.0 + 11 +370.50000000000006 + 21 +137.75000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +350.5 + 20 +140.25000000000003 + 30 +0.0 + 11 +350.5 + 21 +139.25 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +350.5 + 20 +139.25 + 30 +0.0 + 11 +351.50000000000006 + 21 +139.25 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +351.50000000000006 + 20 +139.25 + 30 +0.0 + 11 +351.50000000000006 + 21 +140.25000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +351.50000000000006 + 20 +140.25000000000003 + 30 +0.0 + 11 +350.5 + 21 +140.25000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +370.50000000000006 + 20 +140.25000000000003 + 30 +0.0 + 11 +370.50000000000006 + 21 +139.25 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +370.50000000000006 + 20 +139.25 + 30 +0.0 + 11 +371.50000000000006 + 21 +139.25 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +371.50000000000006 + 20 +139.25 + 30 +0.0 + 11 +371.50000000000006 + 21 +140.25000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +371.50000000000006 + 20 +140.25000000000003 + 30 +0.0 + 11 +370.50000000000006 + 21 +140.25000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +350.5 + 20 +142.75000000000003 + 30 +0.0 + 11 +350.5 + 21 +141.75000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +350.5 + 20 +141.75000000000003 + 30 +0.0 + 11 +351.50000000000006 + 21 +141.75000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +351.50000000000006 + 20 +141.75000000000003 + 30 +0.0 + 11 +351.50000000000006 + 21 +142.75000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +351.50000000000006 + 20 +142.75000000000003 + 30 +0.0 + 11 +350.5 + 21 +142.75000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +370.50000000000006 + 20 +142.75000000000003 + 30 +0.0 + 11 +370.50000000000006 + 21 +141.75000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +370.50000000000006 + 20 +141.75000000000003 + 30 +0.0 + 11 +371.50000000000006 + 21 +141.75000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +371.50000000000006 + 20 +141.75000000000003 + 30 +0.0 + 11 +371.50000000000006 + 21 +142.75000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +371.50000000000006 + 20 +142.75000000000003 + 30 +0.0 + 11 +370.50000000000006 + 21 +142.75000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +350.5 + 20 +145.25 + 30 +0.0 + 11 +350.5 + 21 +144.25000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +350.5 + 20 +144.25000000000003 + 30 +0.0 + 11 +351.50000000000006 + 21 +144.25000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +351.50000000000006 + 20 +144.25000000000003 + 30 +0.0 + 11 +351.50000000000006 + 21 +145.25 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +351.50000000000006 + 20 +145.25 + 30 +0.0 + 11 +350.5 + 21 +145.25 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +370.50000000000006 + 20 +145.25 + 30 +0.0 + 11 +370.50000000000006 + 21 +144.25000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +370.50000000000006 + 20 +144.25000000000003 + 30 +0.0 + 11 +371.50000000000006 + 21 +144.25000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +371.50000000000006 + 20 +144.25000000000003 + 30 +0.0 + 11 +371.50000000000006 + 21 +145.25 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +371.50000000000006 + 20 +145.25 + 30 +0.0 + 11 +370.50000000000006 + 21 +145.25 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +350.5 + 20 +147.75 + 30 +0.0 + 11 +350.5 + 21 +146.75000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +350.5 + 20 +146.75000000000003 + 30 +0.0 + 11 +351.50000000000006 + 21 +146.75000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +351.50000000000006 + 20 +146.75000000000003 + 30 +0.0 + 11 +351.50000000000006 + 21 +147.75 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +351.50000000000006 + 20 +147.75 + 30 +0.0 + 11 +350.5 + 21 +147.75 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +369.50000000000006 + 20 +148.75000000000003 + 30 +0.0 + 11 +369.50000000000006 + 21 +145.75 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +369.50000000000006 + 20 +145.75 + 30 +0.0 + 11 +372.50000000000006 + 21 +145.75 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +372.50000000000006 + 20 +145.75 + 30 +0.0 + 11 +372.50000000000006 + 21 +148.75000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +372.50000000000006 + 20 +148.75000000000003 + 30 +0.0 + 11 +369.50000000000006 + 21 +148.75000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +365.25000000000006 + 20 +105.75 + 30 +0.0 + 11 +356.75000000000006 + 21 +105.75 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +356.75000000000006 + 20 +105.75 + 30 +0.0 + 11 +356.75000000000006 + 21 +105.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +356.75000000000006 + 20 +105.25000000000001 + 30 +0.0 + 11 +365.25000000000006 + 21 +105.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +365.25000000000006 + 20 +105.25000000000001 + 30 +0.0 + 11 +365.25000000000006 + 21 +105.75 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +356.75000000000006 + 20 +153.50000000000003 + 30 +0.0 + 11 +365.25000000000006 + 21 +153.50000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +365.25000000000006 + 20 +153.50000000000003 + 30 +0.0 + 11 +365.25000000000006 + 21 +154.00000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +365.25000000000006 + 20 +154.00000000000003 + 30 +0.0 + 11 +356.75000000000006 + 21 +154.00000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +356.75000000000006 + 20 +154.00000000000003 + 30 +0.0 + 11 +356.75000000000006 + 21 +153.50000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +388.00000000000006 + 20 +149.00000000000003 + 30 +0.0 + 11 +388.00000000000006 + 21 +136.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +388.00000000000006 + 20 +136.0 + 30 +0.0 + 11 +418.00000000000006 + 21 +136.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +418.00000000000006 + 20 +136.0 + 30 +0.0 + 11 +418.00000000000006 + 21 +149.00000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +418.00000000000006 + 20 +149.00000000000003 + 30 +0.0 + 11 +388.00000000000006 + 21 +149.00000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +395.06818181818187 + 20 +103.5 + 30 +0.0 + 11 +383.6590909090909 + 21 +103.5 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +383.6590909090909 + 20 +103.5 + 30 +0.0 + 11 +383.6590909090909 + 21 +103.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +383.6590909090909 + 20 +103.00000000000001 + 30 +0.0 + 11 +395.06818181818187 + 21 +103.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +395.06818181818187 + 20 +103.00000000000001 + 30 +0.0 + 11 +395.06818181818187 + 21 +103.5 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +422.3409090909092 + 20 +103.5 + 30 +0.0 + 11 +410.93181818181824 + 21 +103.5 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +410.93181818181824 + 20 +103.5 + 30 +0.0 + 11 +410.93181818181824 + 21 +103.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +410.93181818181824 + 20 +103.00000000000001 + 30 +0.0 + 11 +422.3409090909092 + 21 +103.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +422.3409090909092 + 20 +103.00000000000001 + 30 +0.0 + 11 +422.3409090909092 + 21 +103.5 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +425.25000000000006 + 20 +120.4318181818182 + 30 +0.0 + 11 +425.25000000000006 + 21 +108.84090909090911 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +425.25000000000006 + 20 +108.84090909090911 + 30 +0.0 + 11 +425.75000000000006 + 21 +108.84090909090911 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +425.75000000000006 + 20 +108.84090909090911 + 30 +0.0 + 11 +425.75000000000006 + 21 +120.4318181818182 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +425.75000000000006 + 20 +120.4318181818182 + 30 +0.0 + 11 +425.25000000000006 + 21 +120.4318181818182 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +425.25000000000006 + 20 +148.15909090909093 + 30 +0.0 + 11 +425.25000000000006 + 21 +136.5681818181818 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +425.25000000000006 + 20 +136.5681818181818 + 30 +0.0 + 11 +425.75000000000006 + 21 +136.5681818181818 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +425.75000000000006 + 20 +136.5681818181818 + 30 +0.0 + 11 +425.75000000000006 + 21 +148.15909090909093 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +425.75000000000006 + 20 +148.15909090909093 + 30 +0.0 + 11 +425.25000000000006 + 21 +148.15909090909093 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +265.50000000000006 + 20 +111.25000000000001 + 30 +0.0 + 11 +265.50000000000006 + 21 +108.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +265.50000000000006 + 20 +108.25000000000001 + 30 +0.0 + 11 +268.50000000000006 + 21 +108.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +268.50000000000006 + 20 +108.25000000000001 + 30 +0.0 + 11 +268.50000000000006 + 21 +111.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +268.50000000000006 + 20 +111.25000000000001 + 30 +0.0 + 11 +265.50000000000006 + 21 +111.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +286.5 + 20 +110.25000000000001 + 30 +0.0 + 11 +286.5 + 21 +109.25 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +286.5 + 20 +109.25 + 30 +0.0 + 11 +287.5 + 21 +109.25 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +287.5 + 20 +109.25 + 30 +0.0 + 11 +287.5 + 21 +110.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +287.5 + 20 +110.25000000000001 + 30 +0.0 + 11 +286.5 + 21 +110.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +266.5 + 20 +112.75000000000001 + 30 +0.0 + 11 +266.5 + 21 +111.75000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +266.5 + 20 +111.75000000000001 + 30 +0.0 + 11 +267.50000000000006 + 21 +111.75000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +267.50000000000006 + 20 +111.75000000000001 + 30 +0.0 + 11 +267.50000000000006 + 21 +112.75000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +267.50000000000006 + 20 +112.75000000000001 + 30 +0.0 + 11 +266.5 + 21 +112.75000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +286.5 + 20 +112.75000000000001 + 30 +0.0 + 11 +286.5 + 21 +111.75000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +286.5 + 20 +111.75000000000001 + 30 +0.0 + 11 +287.5 + 21 +111.75000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +287.5 + 20 +111.75000000000001 + 30 +0.0 + 11 +287.5 + 21 +112.75000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +287.5 + 20 +112.75000000000001 + 30 +0.0 + 11 +286.5 + 21 +112.75000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +266.5 + 20 +115.25000000000001 + 30 +0.0 + 11 +266.5 + 21 +114.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +266.5 + 20 +114.25000000000001 + 30 +0.0 + 11 +267.50000000000006 + 21 +114.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +267.50000000000006 + 20 +114.25000000000001 + 30 +0.0 + 11 +267.50000000000006 + 21 +115.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +267.50000000000006 + 20 +115.25000000000001 + 30 +0.0 + 11 +266.5 + 21 +115.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +286.5 + 20 +115.25000000000001 + 30 +0.0 + 11 +286.5 + 21 +114.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +286.5 + 20 +114.25000000000001 + 30 +0.0 + 11 +287.5 + 21 +114.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +287.5 + 20 +114.25000000000001 + 30 +0.0 + 11 +287.5 + 21 +115.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +287.5 + 20 +115.25000000000001 + 30 +0.0 + 11 +286.5 + 21 +115.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +266.5 + 20 +117.75000000000001 + 30 +0.0 + 11 +266.5 + 21 +116.75000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +266.5 + 20 +116.75000000000001 + 30 +0.0 + 11 +267.50000000000006 + 21 +116.75000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +267.50000000000006 + 20 +116.75000000000001 + 30 +0.0 + 11 +267.50000000000006 + 21 +117.75000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +267.50000000000006 + 20 +117.75000000000001 + 30 +0.0 + 11 +266.5 + 21 +117.75000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +286.5 + 20 +117.75000000000001 + 30 +0.0 + 11 +286.5 + 21 +116.75000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +286.5 + 20 +116.75000000000001 + 30 +0.0 + 11 +287.5 + 21 +116.75000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +287.5 + 20 +116.75000000000001 + 30 +0.0 + 11 +287.5 + 21 +117.75000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +287.5 + 20 +117.75000000000001 + 30 +0.0 + 11 +286.5 + 21 +117.75000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +266.5 + 20 +120.25000000000001 + 30 +0.0 + 11 +266.5 + 21 +119.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +266.5 + 20 +119.25000000000001 + 30 +0.0 + 11 +267.50000000000006 + 21 +119.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +267.50000000000006 + 20 +119.25000000000001 + 30 +0.0 + 11 +267.50000000000006 + 21 +120.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +267.50000000000006 + 20 +120.25000000000001 + 30 +0.0 + 11 +266.5 + 21 +120.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +286.5 + 20 +120.25000000000001 + 30 +0.0 + 11 +286.5 + 21 +119.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +286.5 + 20 +119.25000000000001 + 30 +0.0 + 11 +287.5 + 21 +119.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +287.5 + 20 +119.25000000000001 + 30 +0.0 + 11 +287.5 + 21 +120.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +287.5 + 20 +120.25000000000001 + 30 +0.0 + 11 +286.5 + 21 +120.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +266.5 + 20 +122.75000000000001 + 30 +0.0 + 11 +266.5 + 21 +121.75000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +266.5 + 20 +121.75000000000001 + 30 +0.0 + 11 +267.50000000000006 + 21 +121.75000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +267.50000000000006 + 20 +121.75000000000001 + 30 +0.0 + 11 +267.50000000000006 + 21 +122.75000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +267.50000000000006 + 20 +122.75000000000001 + 30 +0.0 + 11 +266.5 + 21 +122.75000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +286.5 + 20 +122.75000000000001 + 30 +0.0 + 11 +286.5 + 21 +121.75000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +286.5 + 20 +121.75000000000001 + 30 +0.0 + 11 +287.5 + 21 +121.75000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +287.5 + 20 +121.75000000000001 + 30 +0.0 + 11 +287.5 + 21 +122.75000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +287.5 + 20 +122.75000000000001 + 30 +0.0 + 11 +286.5 + 21 +122.75000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +266.5 + 20 +125.25000000000001 + 30 +0.0 + 11 +266.5 + 21 +124.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +266.5 + 20 +124.25000000000001 + 30 +0.0 + 11 +267.50000000000006 + 21 +124.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +267.50000000000006 + 20 +124.25000000000001 + 30 +0.0 + 11 +267.50000000000006 + 21 +125.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +267.50000000000006 + 20 +125.25000000000001 + 30 +0.0 + 11 +266.5 + 21 +125.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +286.5 + 20 +125.25000000000001 + 30 +0.0 + 11 +286.5 + 21 +124.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +286.5 + 20 +124.25000000000001 + 30 +0.0 + 11 +287.5 + 21 +124.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +287.5 + 20 +124.25000000000001 + 30 +0.0 + 11 +287.5 + 21 +125.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +287.5 + 20 +125.25000000000001 + 30 +0.0 + 11 +286.5 + 21 +125.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +266.5 + 20 +127.75000000000001 + 30 +0.0 + 11 +266.5 + 21 +126.75000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +266.5 + 20 +126.75000000000001 + 30 +0.0 + 11 +267.50000000000006 + 21 +126.75000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +267.50000000000006 + 20 +126.75000000000001 + 30 +0.0 + 11 +267.50000000000006 + 21 +127.75000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +267.50000000000006 + 20 +127.75000000000001 + 30 +0.0 + 11 +266.5 + 21 +127.75000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +286.5 + 20 +127.75000000000001 + 30 +0.0 + 11 +286.5 + 21 +126.75000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +286.5 + 20 +126.75000000000001 + 30 +0.0 + 11 +287.5 + 21 +126.75000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +287.5 + 20 +126.75000000000001 + 30 +0.0 + 11 +287.5 + 21 +127.75000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +287.5 + 20 +127.75000000000001 + 30 +0.0 + 11 +286.5 + 21 +127.75000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +266.5 + 20 +130.25000000000003 + 30 +0.0 + 11 +266.5 + 21 +129.25000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +266.5 + 20 +129.25000000000003 + 30 +0.0 + 11 +267.50000000000006 + 21 +129.25000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +267.50000000000006 + 20 +129.25000000000003 + 30 +0.0 + 11 +267.50000000000006 + 21 +130.25000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +267.50000000000006 + 20 +130.25000000000003 + 30 +0.0 + 11 +266.5 + 21 +130.25000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +286.5 + 20 +130.25000000000003 + 30 +0.0 + 11 +286.5 + 21 +129.25000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +286.5 + 20 +129.25000000000003 + 30 +0.0 + 11 +287.5 + 21 +129.25000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +287.5 + 20 +129.25000000000003 + 30 +0.0 + 11 +287.5 + 21 +130.25000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +287.5 + 20 +130.25000000000003 + 30 +0.0 + 11 +286.5 + 21 +130.25000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +266.5 + 20 +132.75000000000003 + 30 +0.0 + 11 +266.5 + 21 +131.75000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +266.5 + 20 +131.75000000000003 + 30 +0.0 + 11 +267.50000000000006 + 21 +131.75000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +267.50000000000006 + 20 +131.75000000000003 + 30 +0.0 + 11 +267.50000000000006 + 21 +132.75000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +267.50000000000006 + 20 +132.75000000000003 + 30 +0.0 + 11 +266.5 + 21 +132.75000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +286.5 + 20 +132.75000000000003 + 30 +0.0 + 11 +286.5 + 21 +131.75000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +286.5 + 20 +131.75000000000003 + 30 +0.0 + 11 +287.5 + 21 +131.75000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +287.5 + 20 +131.75000000000003 + 30 +0.0 + 11 +287.5 + 21 +132.75000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +287.5 + 20 +132.75000000000003 + 30 +0.0 + 11 +286.5 + 21 +132.75000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +266.5 + 20 +135.25000000000003 + 30 +0.0 + 11 +266.5 + 21 +134.25000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +266.5 + 20 +134.25000000000003 + 30 +0.0 + 11 +267.50000000000006 + 21 +134.25000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +267.50000000000006 + 20 +134.25000000000003 + 30 +0.0 + 11 +267.50000000000006 + 21 +135.25000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +267.50000000000006 + 20 +135.25000000000003 + 30 +0.0 + 11 +266.5 + 21 +135.25000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +286.5 + 20 +135.25000000000003 + 30 +0.0 + 11 +286.5 + 21 +134.25000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +286.5 + 20 +134.25000000000003 + 30 +0.0 + 11 +287.5 + 21 +134.25000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +287.5 + 20 +134.25000000000003 + 30 +0.0 + 11 +287.5 + 21 +135.25000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +287.5 + 20 +135.25000000000003 + 30 +0.0 + 11 +286.5 + 21 +135.25000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +266.5 + 20 +137.75000000000003 + 30 +0.0 + 11 +266.5 + 21 +136.75 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +266.5 + 20 +136.75 + 30 +0.0 + 11 +267.50000000000006 + 21 +136.75 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +267.50000000000006 + 20 +136.75 + 30 +0.0 + 11 +267.50000000000006 + 21 +137.75000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +267.50000000000006 + 20 +137.75000000000003 + 30 +0.0 + 11 +266.5 + 21 +137.75000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +286.5 + 20 +137.75000000000003 + 30 +0.0 + 11 +286.5 + 21 +136.75 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +286.5 + 20 +136.75 + 30 +0.0 + 11 +287.5 + 21 +136.75 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +287.5 + 20 +136.75 + 30 +0.0 + 11 +287.5 + 21 +137.75000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +287.5 + 20 +137.75000000000003 + 30 +0.0 + 11 +286.5 + 21 +137.75000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +266.5 + 20 +140.25000000000003 + 30 +0.0 + 11 +266.5 + 21 +139.25 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +266.5 + 20 +139.25 + 30 +0.0 + 11 +267.50000000000006 + 21 +139.25 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +267.50000000000006 + 20 +139.25 + 30 +0.0 + 11 +267.50000000000006 + 21 +140.25000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +267.50000000000006 + 20 +140.25000000000003 + 30 +0.0 + 11 +266.5 + 21 +140.25000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +286.5 + 20 +140.25000000000003 + 30 +0.0 + 11 +286.5 + 21 +139.25 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +286.5 + 20 +139.25 + 30 +0.0 + 11 +287.5 + 21 +139.25 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +287.5 + 20 +139.25 + 30 +0.0 + 11 +287.5 + 21 +140.25000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +287.5 + 20 +140.25000000000003 + 30 +0.0 + 11 +286.5 + 21 +140.25000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +266.5 + 20 +142.75000000000003 + 30 +0.0 + 11 +266.5 + 21 +141.75000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +266.5 + 20 +141.75000000000003 + 30 +0.0 + 11 +267.50000000000006 + 21 +141.75000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +267.50000000000006 + 20 +141.75000000000003 + 30 +0.0 + 11 +267.50000000000006 + 21 +142.75000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +267.50000000000006 + 20 +142.75000000000003 + 30 +0.0 + 11 +266.5 + 21 +142.75000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +286.5 + 20 +142.75000000000003 + 30 +0.0 + 11 +286.5 + 21 +141.75000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +286.5 + 20 +141.75000000000003 + 30 +0.0 + 11 +287.5 + 21 +141.75000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +287.5 + 20 +141.75000000000003 + 30 +0.0 + 11 +287.5 + 21 +142.75000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +287.5 + 20 +142.75000000000003 + 30 +0.0 + 11 +286.5 + 21 +142.75000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +266.5 + 20 +145.25 + 30 +0.0 + 11 +266.5 + 21 +144.25000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +266.5 + 20 +144.25000000000003 + 30 +0.0 + 11 +267.50000000000006 + 21 +144.25000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +267.50000000000006 + 20 +144.25000000000003 + 30 +0.0 + 11 +267.50000000000006 + 21 +145.25 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +267.50000000000006 + 20 +145.25 + 30 +0.0 + 11 +266.5 + 21 +145.25 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +286.5 + 20 +145.25 + 30 +0.0 + 11 +286.5 + 21 +144.25000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +286.5 + 20 +144.25000000000003 + 30 +0.0 + 11 +287.5 + 21 +144.25000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +287.5 + 20 +144.25000000000003 + 30 +0.0 + 11 +287.5 + 21 +145.25 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +287.5 + 20 +145.25 + 30 +0.0 + 11 +286.5 + 21 +145.25 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +266.5 + 20 +147.75 + 30 +0.0 + 11 +266.5 + 21 +146.75000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +266.5 + 20 +146.75000000000003 + 30 +0.0 + 11 +267.50000000000006 + 21 +146.75000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +267.50000000000006 + 20 +146.75000000000003 + 30 +0.0 + 11 +267.50000000000006 + 21 +147.75 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +267.50000000000006 + 20 +147.75 + 30 +0.0 + 11 +266.5 + 21 +147.75 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +285.50000000000006 + 20 +148.75000000000003 + 30 +0.0 + 11 +285.50000000000006 + 21 +145.75 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +285.50000000000006 + 20 +145.75 + 30 +0.0 + 11 +288.50000000000006 + 21 +145.75 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +288.50000000000006 + 20 +145.75 + 30 +0.0 + 11 +288.50000000000006 + 21 +148.75000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +288.50000000000006 + 20 +148.75000000000003 + 30 +0.0 + 11 +285.50000000000006 + 21 +148.75000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +281.25 + 20 +105.75 + 30 +0.0 + 11 +272.75 + 21 +105.75 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +272.75 + 20 +105.75 + 30 +0.0 + 11 +272.75 + 21 +105.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +272.75 + 20 +105.25000000000001 + 30 +0.0 + 11 +281.25 + 21 +105.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +281.25 + 20 +105.25000000000001 + 30 +0.0 + 11 +281.25 + 21 +105.75 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +272.75 + 20 +153.50000000000003 + 30 +0.0 + 11 +281.25 + 21 +153.50000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +281.25 + 20 +153.50000000000003 + 30 +0.0 + 11 +281.25 + 21 +154.00000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +281.25 + 20 +154.00000000000003 + 30 +0.0 + 11 +272.75 + 21 +154.00000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +272.75 + 20 +154.00000000000003 + 30 +0.0 + 11 +272.75 + 21 +153.50000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +257.5 + 20 +109.0909090909091 + 30 +0.0 + 11 +262.5 + 21 +109.0909090909091 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +262.5 + 20 +109.0909090909091 + 30 +0.0 + 11 +262.5 + 21 +120.1818181818182 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +262.5 + 20 +120.1818181818182 + 30 +0.0 + 11 +257.5 + 21 +120.1818181818182 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +257.5 + 20 +136.8181818181818 + 30 +0.0 + 11 +262.5 + 21 +136.8181818181818 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +262.5 + 20 +136.8181818181818 + 30 +0.0 + 11 +262.5 + 21 +147.90909090909093 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +262.5 + 20 +147.90909090909093 + 30 +0.0 + 11 +257.5 + 21 +147.90909090909093 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +282.75 + 20 +82.0 + 30 +0.0 + 11 +286.25 + 21 +82.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +286.25 + 20 +82.0 + 30 +0.0 + 11 +286.25 + 21 +90.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +286.25 + 20 +90.0 + 30 +0.0 + 11 +282.75 + 21 +90.0 + 31 +0.0 + 0 +ENDSEC + 0 +EOF diff --git a/rocolib/output/ServoMountAndStack/graph-lasercutter.svg b/rocolib/output/ServoMountAndStack/graph-lasercutter.svg new file mode 100644 index 0000000000000000000000000000000000000000..cd575c1796d20bbb5a8183826de4ced7004d528e --- /dev/null +++ b/rocolib/output/ServoMountAndStack/graph-lasercutter.svg @@ -0,0 +1,502 @@ +<?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="179.000000mm" version="1.1" viewBox="0.000000 0.000000 433.000000 179.000000" width="433.000000mm"> + <defs/> + <line stroke="#000000" x1="70.00000000000001" x2="34.0" y1="74.0" y2="74.0"/> + <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="70.00000000000001" x2="70.00000000000001" y1="74.0" y2="98.00000000000001"/> + <line stroke="#000000" x1="34.0" x2="70.00000000000001" y1="98.00000000000001" y2="98.00000000000001"/> + <line stroke="#000000" x1="70.00000000000001" x2="115.00000000000001" y1="98.00000000000001" y2="98.00000000000001"/> + <line stroke="#000000" x1="115.00000000000001" x2="70.00000000000001" y1="74.0" y2="74.0"/> + <line stroke="#000000" x1="120.00000000000001" x2="115.00000000000001" y1="74.0" y2="74.0"/> + <line stroke="#000000" x1="120.00000000000001" x2="120.00000000000001" y1="98.00000000000001" y2="74.0"/> + <line stroke="#000000" x1="115.00000000000001" x2="120.00000000000001" y1="98.00000000000001" y2="98.00000000000001"/> + <line stroke="#000000" x1="0.0" x2="34.0" y1="98.00000000000001" y2="98.00000000000001"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="34.0" x2="0.0" y1="74.0" y2="74.0"/> + <line stroke="#000000" x1="0.0" x2="0.0" y1="74.0" y2="1.0000000000000002"/> + <line stroke="#000000" x1="0.0" x2="0.0" y1="108.00000000000001" y2="98.00000000000001"/> + <line stroke="#000000" x1="0.0" x2="0.0" y1="169.00000000000003" y2="169.00000000000003"/> + <line stroke="#000000" x1="0.0" x2="0.0" y1="1.0000000000000002" y2="169.00000000000003"/> + <line stroke="#000000" x1="0.0" x2="0.0" y1="1.0000000000000002" y2="1.0000000000000002"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="36.138621999185304" x2="36.138621999185304" y1="108.00000000000001" y2="169.00000000000003"/> + <line stroke="#000000" x1="0.0" x2="36.138621999185304" y1="169.00000000000003" y2="169.00000000000003"/> + <line stroke="#000000" x1="36.138621999185304" x2="0.0" y1="108.00000000000001" y2="108.00000000000001"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="60.13862199918531" x2="60.13862199918531" y1="169.00000000000003" y2="108.00000000000001"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="60.13862199918531" x2="36.138621999185304" y1="169.00000000000003" y2="169.00000000000003"/> + <line stroke="#000000" x1="96.27724399837062" x2="60.13862199918531" y1="108.00000000000001" y2="108.00000000000001"/> + <line stroke="#000000" x1="60.13862199918531" x2="96.27724399837062" y1="169.00000000000003" y2="169.00000000000003"/> + <line stroke="#000000" x1="106.27724399837062" x2="96.27724399837062" y1="108.00000000000001" y2="108.00000000000001"/> + <line stroke="#000000" x1="106.27724399837062" x2="106.27724399837062" y1="169.00000000000003" y2="108.00000000000001"/> + <line stroke="#000000" x1="96.27724399837062" x2="106.27724399837062" y1="169.00000000000003" y2="169.00000000000003"/> + <line stroke="#000000" x1="60.13862199918531" x2="60.13862199918531" y1="179.00000000000003" y2="169.00000000000003"/> + <line stroke="#000000" x1="36.138621999185304" x2="60.13862199918531" y1="179.00000000000003" y2="179.00000000000003"/> + <line stroke="#000000" x1="36.138621999185304" x2="36.138621999185304" y1="169.00000000000003" y2="179.00000000000003"/> + <line stroke="#000000" x1="36.138621999185304" x2="36.138621999185304" y1="98.00000000000001" y2="108.00000000000001"/> + <line stroke="#000000" x1="60.13862199918531" x2="36.138621999185304" y1="98.00000000000001" y2="98.00000000000001"/> + <line stroke="#000000" x1="60.13862199918531" x2="60.13862199918531" y1="108.00000000000001" y2="98.00000000000001"/> + <line stroke="#000000" x1="34.0" x2="34.0" y1="74.0" y2="54.00000000000001"/> + <line stroke="#000000" x1="0.0" x2="0.0" y1="54.00000000000001" y2="74.0"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="34.0" x2="0.0" y1="54.00000000000001" y2="54.00000000000001"/> + <line stroke="#000000" x1="34.0" x2="34.0" y1="54.00000000000001" y2="30.000000000000004"/> + <line stroke="#000000" x1="0.0" x2="0.0" y1="30.000000000000004" y2="54.00000000000001"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="34.0" x2="0.0" y1="30.000000000000004" y2="30.000000000000004"/> + <line stroke="#000000" x1="34.0" x2="34.0" y1="30.000000000000004" y2="10.000000000000002"/> + <line stroke="#000000" x1="0.0" x2="0.0" y1="10.000000000000002" y2="30.000000000000004"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="0.0" x2="34.0" y1="10.000000000000002" y2="10.000000000000002"/> + <line stroke="#000000" x1="0.0" x2="0.0" y1="0.0" y2="10.000000000000002"/> + <line stroke="#000000" x1="34.0" x2="0.0" y1="0.0" y2="0.0"/> + <line stroke="#000000" x1="34.0" x2="34.0" y1="10.000000000000002" y2="0.0"/> + <line stroke="#888888" x1="118.75000000000001" x2="118.75000000000001" y1="90.0" y2="92.50000000000001"/> + <line stroke="#888888" x1="118.75000000000001" x2="116.25000000000001" y1="92.50000000000001" y2="90.0"/> + <line stroke="#888888" x1="116.25000000000001" x2="116.25000000000001" y1="90.0" y2="82.0"/> + <line stroke="#888888" x1="116.25000000000001" x2="118.75000000000001" y1="82.0" y2="79.5"/> + <line stroke="#888888" x1="118.75000000000001" x2="118.75000000000001" y1="79.5" y2="82.0"/> + <line stroke="#888888" x1="11.08333333333333" x2="22.916666666666668" y1="90.25000000000001" y2="90.25000000000001"/> + <line stroke="#888888" x1="22.916666666666668" x2="22.916666666666668" y1="90.25000000000001" y2="90.75000000000001"/> + <line stroke="#888888" x1="22.916666666666668" x2="11.08333333333333" y1="90.75000000000001" y2="90.75000000000001"/> + <line stroke="#888888" x1="11.08333333333333" x2="11.08333333333333" y1="90.75000000000001" y2="90.25000000000001"/> + <line stroke="#888888" x1="54.63862199918531" x2="54.63862199918531" y1="126.00000000000001" y2="137.00000000000003"/> + <line stroke="#888888" x1="54.63862199918531" x2="41.63862199918531" y1="137.00000000000003" y2="137.00000000000003"/> + <line stroke="#888888" x1="41.63862199918531" x2="41.63862199918531" y1="137.00000000000003" y2="126.00000000000001"/> + <line stroke="#888888" x1="41.63862199918531" x2="54.63862199918531" y1="126.00000000000001" y2="126.00000000000001"/> + <line stroke="#888888" x1="53.13862199918531" x2="53.13862199918531" y1="157.50000000000003" y2="163.5"/> + <line stroke="#888888" x1="53.13862199918531" x2="43.13862199918531" y1="163.5" y2="163.5"/> + <line stroke="#888888" x1="43.13862199918531" x2="43.13862199918531" y1="163.5" y2="157.50000000000003"/> + <line stroke="#888888" x1="43.13862199918531" x2="53.13862199918531" y1="157.50000000000003" y2="157.50000000000003"/> + <line stroke="#888888" x1="103.77724399837062" x2="98.77724399837062" y1="157.9090909090909" y2="157.9090909090909"/> + <line stroke="#888888" x1="98.77724399837062" x2="98.77724399837062" y1="157.9090909090909" y2="146.81818181818184"/> + <line stroke="#888888" x1="98.77724399837062" x2="103.77724399837062" y1="146.81818181818184" y2="146.81818181818184"/> + <line stroke="#888888" x1="103.77724399837062" x2="98.77724399837062" y1="130.18181818181822" y2="130.18181818181822"/> + <line stroke="#888888" x1="98.77724399837062" x2="98.77724399837062" y1="130.18181818181822" y2="119.09090909090911"/> + <line stroke="#888888" x1="98.77724399837062" x2="103.77724399837062" y1="119.09090909090911" y2="119.09090909090911"/> + <line stroke="#888888" x1="44.138621999185304" x2="44.138621999185304" y1="176.50000000000003" y2="171.50000000000003"/> + <line stroke="#888888" x1="44.138621999185304" x2="52.13862199918531" y1="171.50000000000003" y2="171.50000000000003"/> + <line stroke="#888888" x1="52.13862199918531" x2="52.13862199918531" y1="171.50000000000003" y2="176.50000000000003"/> + <line stroke="#888888" x1="52.13862199918531" x2="52.13862199918531" y1="100.50000000000001" y2="105.50000000000001"/> + <line stroke="#888888" x1="52.13862199918531" x2="44.138621999185304" y1="105.50000000000001" y2="105.50000000000001"/> + <line stroke="#888888" x1="44.138621999185304" x2="44.138621999185304" y1="105.50000000000001" y2="100.50000000000001"/> + <line stroke="#888888" x1="23.000000000000004" x2="23.000000000000004" y1="55.00000000000001" y2="59.00000000000001"/> + <line stroke="#888888" x1="23.000000000000004" x2="11.000000000000002" y1="59.00000000000001" y2="59.00000000000001"/> + <line stroke="#888888" x1="11.000000000000002" x2="11.000000000000002" y1="59.00000000000001" y2="55.00000000000001"/> + <line stroke="#888888" x1="11.000000000000002" x2="23.000000000000004" y1="55.00000000000001" y2="55.00000000000001"/> + <line stroke="#888888" x1="21.500000000000004" x2="21.500000000000004" y1="67.00000000000001" y2="71.00000000000001"/> + <line stroke="#888888" x1="21.500000000000004" x2="12.5" y1="71.00000000000001" y2="71.00000000000001"/> + <line stroke="#888888" x1="12.5" x2="12.5" y1="71.00000000000001" y2="67.00000000000001"/> + <line stroke="#888888" x1="12.5" x2="21.500000000000004" y1="67.00000000000001" y2="67.00000000000001"/> + <line stroke="#888888" x1="23.000000000000004" x2="23.000000000000004" y1="30.500000000000004" y2="53.5"/> + <line stroke="#888888" x1="23.000000000000004" x2="11.000000000000002" y1="53.5" y2="53.5"/> + <line stroke="#888888" x1="11.000000000000002" x2="11.000000000000002" y1="53.5" y2="30.500000000000004"/> + <line stroke="#888888" x1="11.000000000000002" x2="23.000000000000004" y1="30.500000000000004" y2="30.500000000000004"/> + <line stroke="#888888" x1="23.000000000000004" x2="23.000000000000004" y1="25.0" y2="29.0"/> + <line stroke="#888888" x1="23.000000000000004" x2="11.000000000000002" y1="29.0" y2="29.0"/> + <line stroke="#888888" x1="11.000000000000002" x2="11.000000000000002" y1="29.0" y2="25.0"/> + <line stroke="#888888" x1="11.000000000000002" x2="23.000000000000004" y1="25.0" y2="25.0"/> + <line stroke="#888888" x1="22.666666666666668" x2="22.666666666666668" y1="2.5000000000000004" y2="7.500000000000001"/> + <line stroke="#888888" x1="22.666666666666668" x2="11.33333333333333" y1="7.500000000000001" y2="7.500000000000001"/> + <line stroke="#888888" x1="11.33333333333333" x2="11.33333333333333" y1="7.500000000000001" y2="2.5000000000000004"/> + <line stroke="#000000" x1="200.0" x2="164.0" y1="74.0" y2="74.0"/> + <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="200.0" x2="200.0" y1="74.0" y2="98.00000000000001"/> + <line stroke="#000000" x1="164.0" x2="200.0" y1="98.00000000000001" y2="98.00000000000001"/> + <line stroke="#000000" x1="200.0" x2="245.00000000000003" y1="98.00000000000001" y2="98.00000000000001"/> + <line stroke="#000000" x1="245.00000000000003" x2="200.0" y1="74.0" y2="74.0"/> + <line stroke="#000000" x1="245.00000000000003" x2="245.00000000000003" y1="98.00000000000001" y2="74.0"/> + <line stroke="#000000" x1="164.0" x2="130.0" y1="74.0" y2="74.0"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="130.0" x2="164.0" y1="98.00000000000001" y2="98.00000000000001"/> + <line stroke="#000000" x1="130.0" x2="130.0" y1="64.00000000000001" y2="3.0000000000000004"/> + <line stroke="#000000" x1="130.0" x2="130.0" y1="74.0" y2="64.00000000000001"/> + <line stroke="#000000" x1="130.0" x2="130.0" y1="171.00000000000003" y2="98.00000000000001"/> + <line stroke="#000000" x1="130.0" x2="130.0" y1="171.00000000000003" y2="171.00000000000003"/> + <line stroke="#000000" x1="130.0" x2="130.0" y1="3.0000000000000004" y2="171.00000000000003"/> + <line stroke="#000000" x1="130.0" x2="130.0" y1="3.0000000000000004" y2="3.0000000000000004"/> + <line stroke="#000000" x1="130.0" x2="130.0" y1="98.00000000000001" y2="118.00000000000001"/> + <line stroke="#000000" x1="164.0" x2="164.0" y1="118.00000000000001" y2="98.00000000000001"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="130.0" x2="164.0" y1="118.00000000000001" y2="118.00000000000001"/> + <line stroke="#000000" x1="130.0" x2="130.0" y1="118.00000000000001" y2="142.00000000000003"/> + <line stroke="#000000" x1="164.0" x2="164.0" y1="142.00000000000003" y2="118.00000000000001"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="130.0" x2="164.0" y1="142.00000000000003" y2="142.00000000000003"/> + <line stroke="#000000" x1="130.0" x2="130.0" y1="142.00000000000003" y2="162.00000000000003"/> + <line stroke="#000000" x1="164.0" x2="164.0" y1="162.00000000000003" y2="142.00000000000003"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="164.0" x2="130.0" y1="162.00000000000003" y2="162.00000000000003"/> + <line stroke="#000000" x1="164.0" x2="164.0" y1="172.00000000000003" y2="162.00000000000003"/> + <line stroke="#000000" x1="130.0" x2="164.0" y1="172.00000000000003" y2="172.00000000000003"/> + <line stroke="#000000" x1="130.0" x2="130.0" y1="162.00000000000003" y2="172.00000000000003"/> + <line stroke="#888888" x1="241.00000000000003" x2="241.00000000000003" y1="90.25000000000001" y2="81.75"/> + <line stroke="#888888" x1="241.00000000000003" x2="241.50000000000003" y1="81.75" y2="81.75"/> + <line stroke="#888888" x1="241.50000000000003" x2="241.50000000000003" y1="81.75" y2="90.25000000000001"/> + <line stroke="#888888" x1="241.50000000000003" x2="241.00000000000003" y1="90.25000000000001" y2="90.25000000000001"/> + <line stroke="#888888" x1="152.91666666666669" x2="141.08333333333334" y1="81.75" y2="81.75"/> + <line stroke="#888888" x1="141.08333333333334" x2="141.08333333333334" y1="81.75" y2="81.25000000000001"/> + <line stroke="#888888" x1="141.08333333333334" x2="152.91666666666669" y1="81.25000000000001" y2="81.25000000000001"/> + <line stroke="#888888" x1="152.91666666666669" x2="152.91666666666669" y1="81.25000000000001" y2="81.75"/> + <line stroke="#888888" x1="122.25000000000001" x2="122.25000000000001" y1="25.43181818181819" y2="13.840909090909095"/> + <line stroke="#888888" x1="122.25000000000001" x2="122.75000000000001" y1="13.840909090909095" y2="13.840909090909095"/> + <line stroke="#888888" x1="122.75000000000001" x2="122.75000000000001" y1="13.840909090909095" y2="25.43181818181819"/> + <line stroke="#888888" x1="122.75000000000001" x2="122.25000000000001" y1="25.43181818181819" y2="25.43181818181819"/> + <line stroke="#888888" x1="122.25000000000001" x2="122.25000000000001" y1="53.15909090909092" y2="41.568181818181834"/> + <line stroke="#888888" x1="122.25000000000001" x2="122.75000000000001" y1="41.568181818181834" y2="41.568181818181834"/> + <line stroke="#888888" x1="122.75000000000001" x2="122.75000000000001" y1="41.568181818181834" y2="53.15909090909092"/> + <line stroke="#888888" x1="122.75000000000001" x2="122.25000000000001" y1="53.15909090909092" y2="53.15909090909092"/> + <line stroke="#888888" x1="141.0" x2="141.0" y1="117.00000000000001" y2="113.00000000000001"/> + <line stroke="#888888" x1="141.0" x2="153.00000000000003" y1="113.00000000000001" y2="113.00000000000001"/> + <line stroke="#888888" x1="153.00000000000003" x2="153.00000000000003" y1="113.00000000000001" y2="117.00000000000001"/> + <line stroke="#888888" x1="153.00000000000003" x2="141.0" y1="117.00000000000001" y2="117.00000000000001"/> + <line stroke="#888888" x1="142.50000000000003" x2="142.50000000000003" y1="105.00000000000001" y2="101.00000000000001"/> + <line stroke="#888888" x1="142.50000000000003" x2="151.50000000000003" y1="101.00000000000001" y2="101.00000000000001"/> + <line stroke="#888888" x1="151.50000000000003" x2="151.50000000000003" y1="101.00000000000001" y2="105.00000000000001"/> + <line stroke="#888888" x1="151.50000000000003" x2="142.50000000000003" y1="105.00000000000001" y2="105.00000000000001"/> + <line stroke="#888888" x1="141.0" x2="141.0" y1="141.5" y2="118.50000000000001"/> + <line stroke="#888888" x1="141.0" x2="153.00000000000003" y1="118.50000000000001" y2="118.50000000000001"/> + <line stroke="#888888" x1="153.00000000000003" x2="153.00000000000003" y1="118.50000000000001" y2="141.5"/> + <line stroke="#888888" x1="153.00000000000003" x2="141.0" y1="141.5" y2="141.5"/> + <line stroke="#888888" x1="141.0" x2="141.0" y1="147.00000000000003" y2="143.0"/> + <line stroke="#888888" x1="141.0" x2="153.00000000000003" y1="143.0" y2="143.0"/> + <line stroke="#888888" x1="153.00000000000003" x2="153.00000000000003" y1="143.0" y2="147.00000000000003"/> + <line stroke="#888888" x1="153.00000000000003" x2="141.0" y1="147.00000000000003" y2="147.00000000000003"/> + <line stroke="#888888" x1="141.33333333333334" x2="141.33333333333334" y1="169.50000000000003" y2="164.50000000000003"/> + <line stroke="#888888" x1="141.33333333333334" x2="152.66666666666666" y1="164.50000000000003" y2="164.50000000000003"/> + <line stroke="#888888" x1="152.66666666666666" x2="152.66666666666666" y1="164.50000000000003" y2="169.50000000000003"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="288.00000000000006" x2="349.00000000000006" y1="74.0" y2="74.0"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="349.00000000000006" x2="349.00000000000006" y1="74.0" y2="98.00000000000001"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="349.00000000000006" x2="288.00000000000006" y1="98.00000000000001" y2="98.00000000000001"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="288.00000000000006" x2="288.00000000000006" y1="98.00000000000001" y2="74.0"/> + <line stroke="#000000" x1="288.00000000000006" x2="288.00000000000006" y1="67.00000000000001" y2="74.0"/> + <line stroke="#000000" x1="348.00000000000006" x2="288.00000000000006" y1="67.00000000000001" y2="67.00000000000001"/> + <line stroke="#000000" x1="348.00000000000006" x2="348.00000000000006" y1="74.0" y2="67.00000000000001"/> + <line stroke="#000000" x1="356.00000000000006" x2="349.00000000000006" y1="74.0" y2="74.0"/> + <line stroke="#000000" x1="356.00000000000006" x2="356.00000000000006" y1="98.00000000000001" y2="74.0"/> + <line stroke="#000000" x1="349.00000000000006" x2="356.00000000000006" y1="98.00000000000001" y2="98.00000000000001"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="349.00000000000006" x2="349.00000000000006" y1="98.00000000000001" y2="159.0"/> + <line stroke="#000000" x1="289.00000000000006" x2="349.00000000000006" y1="159.0" y2="159.0"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="289.00000000000006" x2="289.00000000000006" y1="98.00000000000001" y2="159.0"/> + <line stroke="#000000" x1="373.0" x2="349.00000000000006" y1="98.00000000000001" y2="98.00000000000001"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="373.0" x2="373.0" y1="98.00000000000001" y2="159.0"/> + <line stroke="#000000" x1="349.00000000000006" x2="373.0" y1="159.0" y2="159.0"/> + <line stroke="#000000" x1="433.00000000000006" x2="373.0" y1="98.00000000000001" y2="98.00000000000001"/> + <line stroke="#000000" x1="433.00000000000006" x2="433.00000000000006" y1="159.0" y2="98.00000000000001"/> + <line stroke="#000000" x1="373.0" x2="433.00000000000006" y1="159.0" y2="159.0"/> + <line stroke="#000000" x1="289.00000000000006" x2="265.00000000000006" y1="98.00000000000001" y2="98.00000000000001"/> + <line stroke="#000000" x1="265.00000000000006" x2="289.00000000000006" y1="159.0" y2="159.0"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="265.00000000000006" x2="265.00000000000006" y1="159.0" y2="98.00000000000001"/> + <line stroke="#000000" x1="255.00000000000003" x2="265.00000000000006" y1="159.0" y2="159.0"/> + <line stroke="#000000" x1="255.00000000000003" x2="255.00000000000003" y1="98.00000000000001" y2="159.0"/> + <line stroke="#000000" x1="265.00000000000006" x2="255.00000000000003" y1="98.00000000000001" y2="98.00000000000001"/> + <line stroke="#000000" x1="281.00000000000006" x2="288.00000000000006" y1="98.00000000000001" y2="98.00000000000001"/> + <line stroke="#000000" x1="281.00000000000006" x2="281.00000000000006" y1="74.0" y2="98.00000000000001"/> + <line stroke="#000000" x1="288.00000000000006" x2="281.00000000000006" y1="74.0" y2="74.0"/> + <line stroke="#888888" x1="337.0909090909092" x2="340.59090909090907" y1="68.75000000000001" y2="68.75000000000001"/> + <line stroke="#888888" x1="340.59090909090907" x2="337.0909090909092" y1="68.75000000000001" y2="72.25000000000001"/> + <line stroke="#888888" x1="337.0909090909092" x2="326.18181818181824" y1="72.25000000000001" y2="72.25000000000001"/> + <line stroke="#888888" x1="326.18181818181824" x2="322.68181818181824" y1="72.25000000000001" y2="68.75000000000001"/> + <line stroke="#888888" x1="322.68181818181824" x2="326.18181818181824" y1="68.75000000000001" y2="68.75000000000001"/> + <line stroke="#888888" x1="309.81818181818187" x2="313.31818181818187" y1="68.75000000000001" y2="68.75000000000001"/> + <line stroke="#888888" x1="313.31818181818187" x2="309.81818181818187" y1="68.75000000000001" y2="72.25000000000001"/> + <line stroke="#888888" x1="309.81818181818187" x2="298.909090909091" y1="72.25000000000001" y2="72.25000000000001"/> + <line stroke="#888888" x1="298.909090909091" x2="295.409090909091" y1="72.25000000000001" y2="68.75000000000001"/> + <line stroke="#888888" x1="295.409090909091" x2="298.909090909091" y1="68.75000000000001" y2="68.75000000000001"/> + <line stroke="#888888" x1="354.25000000000006" x2="350.75" y1="90.0" y2="90.0"/> + <line stroke="#888888" x1="350.75" x2="350.75" y1="90.0" y2="82.0"/> + <line stroke="#888888" x1="350.75" x2="354.25000000000006" y1="82.0" y2="82.0"/> + <line stroke="#888888" x1="296.5" x2="296.5" y1="149.50000000000003" y2="131.50000000000003"/> + <line stroke="#888888" x1="296.5" x2="331.5" y1="131.50000000000003" y2="131.50000000000003"/> + <line stroke="#888888" x1="331.5" x2="331.5" y1="131.50000000000003" y2="149.50000000000003"/> + <line stroke="#888888" x1="331.5" x2="296.5" y1="149.50000000000003" y2="149.50000000000003"/> + <line stroke="#888888" x1="349.50000000000006" x2="349.50000000000006" y1="111.25000000000001" y2="108.25000000000001"/> + <line stroke="#888888" x1="349.50000000000006" x2="352.50000000000006" y1="108.25000000000001" y2="108.25000000000001"/> + <line stroke="#888888" x1="352.50000000000006" x2="352.50000000000006" y1="108.25000000000001" y2="111.25000000000001"/> + <line stroke="#888888" x1="352.50000000000006" x2="349.50000000000006" y1="111.25000000000001" y2="111.25000000000001"/> + <line stroke="#888888" x1="370.50000000000006" x2="370.50000000000006" y1="110.25000000000001" y2="109.25"/> + <line stroke="#888888" x1="370.50000000000006" x2="371.50000000000006" y1="109.25" y2="109.25"/> + <line stroke="#888888" x1="371.50000000000006" x2="371.50000000000006" y1="109.25" y2="110.25000000000001"/> + <line stroke="#888888" x1="371.50000000000006" x2="370.50000000000006" y1="110.25000000000001" y2="110.25000000000001"/> + <line stroke="#888888" x1="350.5" x2="350.5" y1="112.75000000000001" y2="111.75000000000001"/> + <line stroke="#888888" x1="350.5" x2="351.50000000000006" y1="111.75000000000001" y2="111.75000000000001"/> + <line stroke="#888888" x1="351.50000000000006" x2="351.50000000000006" y1="111.75000000000001" y2="112.75000000000001"/> + <line stroke="#888888" x1="351.50000000000006" x2="350.5" y1="112.75000000000001" y2="112.75000000000001"/> + <line stroke="#888888" x1="370.50000000000006" x2="370.50000000000006" y1="112.75000000000001" y2="111.75000000000001"/> + <line stroke="#888888" x1="370.50000000000006" x2="371.50000000000006" y1="111.75000000000001" y2="111.75000000000001"/> + <line stroke="#888888" x1="371.50000000000006" x2="371.50000000000006" y1="111.75000000000001" y2="112.75000000000001"/> + <line stroke="#888888" x1="371.50000000000006" x2="370.50000000000006" y1="112.75000000000001" y2="112.75000000000001"/> + <line stroke="#888888" x1="350.5" x2="350.5" y1="115.25000000000001" y2="114.25000000000001"/> + <line stroke="#888888" x1="350.5" x2="351.50000000000006" y1="114.25000000000001" y2="114.25000000000001"/> + <line stroke="#888888" x1="351.50000000000006" x2="351.50000000000006" y1="114.25000000000001" y2="115.25000000000001"/> + <line stroke="#888888" x1="351.50000000000006" x2="350.5" y1="115.25000000000001" y2="115.25000000000001"/> + <line stroke="#888888" x1="370.50000000000006" x2="370.50000000000006" y1="115.25000000000001" y2="114.25000000000001"/> + <line stroke="#888888" x1="370.50000000000006" x2="371.50000000000006" y1="114.25000000000001" y2="114.25000000000001"/> + <line stroke="#888888" x1="371.50000000000006" x2="371.50000000000006" y1="114.25000000000001" y2="115.25000000000001"/> + <line stroke="#888888" x1="371.50000000000006" x2="370.50000000000006" y1="115.25000000000001" y2="115.25000000000001"/> + <line stroke="#888888" x1="350.5" x2="350.5" y1="117.75000000000001" y2="116.75000000000001"/> + <line stroke="#888888" x1="350.5" x2="351.50000000000006" y1="116.75000000000001" y2="116.75000000000001"/> + <line stroke="#888888" x1="351.50000000000006" x2="351.50000000000006" y1="116.75000000000001" y2="117.75000000000001"/> + <line stroke="#888888" x1="351.50000000000006" x2="350.5" y1="117.75000000000001" y2="117.75000000000001"/> + <line stroke="#888888" x1="370.50000000000006" x2="370.50000000000006" y1="117.75000000000001" y2="116.75000000000001"/> + <line stroke="#888888" x1="370.50000000000006" x2="371.50000000000006" y1="116.75000000000001" y2="116.75000000000001"/> + <line stroke="#888888" x1="371.50000000000006" x2="371.50000000000006" y1="116.75000000000001" y2="117.75000000000001"/> + <line stroke="#888888" x1="371.50000000000006" x2="370.50000000000006" y1="117.75000000000001" y2="117.75000000000001"/> + <line stroke="#888888" x1="350.5" x2="350.5" y1="120.25000000000001" y2="119.25000000000001"/> + <line stroke="#888888" x1="350.5" x2="351.50000000000006" y1="119.25000000000001" y2="119.25000000000001"/> + <line stroke="#888888" x1="351.50000000000006" x2="351.50000000000006" y1="119.25000000000001" y2="120.25000000000001"/> + <line stroke="#888888" x1="351.50000000000006" x2="350.5" y1="120.25000000000001" y2="120.25000000000001"/> + <line stroke="#888888" x1="370.50000000000006" x2="370.50000000000006" y1="120.25000000000001" y2="119.25000000000001"/> + <line stroke="#888888" x1="370.50000000000006" x2="371.50000000000006" y1="119.25000000000001" y2="119.25000000000001"/> + <line stroke="#888888" x1="371.50000000000006" x2="371.50000000000006" y1="119.25000000000001" y2="120.25000000000001"/> + <line stroke="#888888" x1="371.50000000000006" x2="370.50000000000006" y1="120.25000000000001" y2="120.25000000000001"/> + <line stroke="#888888" x1="350.5" x2="350.5" y1="122.75000000000001" y2="121.75000000000001"/> + <line stroke="#888888" x1="350.5" x2="351.50000000000006" y1="121.75000000000001" y2="121.75000000000001"/> + <line stroke="#888888" x1="351.50000000000006" x2="351.50000000000006" y1="121.75000000000001" y2="122.75000000000001"/> + <line stroke="#888888" x1="351.50000000000006" x2="350.5" y1="122.75000000000001" y2="122.75000000000001"/> + <line stroke="#888888" x1="370.50000000000006" x2="370.50000000000006" y1="122.75000000000001" y2="121.75000000000001"/> + <line stroke="#888888" x1="370.50000000000006" x2="371.50000000000006" y1="121.75000000000001" y2="121.75000000000001"/> + <line stroke="#888888" x1="371.50000000000006" x2="371.50000000000006" y1="121.75000000000001" y2="122.75000000000001"/> + <line stroke="#888888" x1="371.50000000000006" x2="370.50000000000006" y1="122.75000000000001" y2="122.75000000000001"/> + <line stroke="#888888" x1="350.5" x2="350.5" y1="125.25000000000001" y2="124.25000000000001"/> + <line stroke="#888888" x1="350.5" x2="351.50000000000006" y1="124.25000000000001" y2="124.25000000000001"/> + <line stroke="#888888" x1="351.50000000000006" x2="351.50000000000006" y1="124.25000000000001" y2="125.25000000000001"/> + <line stroke="#888888" x1="351.50000000000006" x2="350.5" y1="125.25000000000001" y2="125.25000000000001"/> + <line stroke="#888888" x1="370.50000000000006" x2="370.50000000000006" y1="125.25000000000001" y2="124.25000000000001"/> + <line stroke="#888888" x1="370.50000000000006" x2="371.50000000000006" y1="124.25000000000001" y2="124.25000000000001"/> + <line stroke="#888888" x1="371.50000000000006" x2="371.50000000000006" y1="124.25000000000001" y2="125.25000000000001"/> + <line stroke="#888888" x1="371.50000000000006" x2="370.50000000000006" y1="125.25000000000001" y2="125.25000000000001"/> + <line stroke="#888888" x1="350.5" x2="350.5" y1="127.75000000000001" y2="126.75000000000001"/> + <line stroke="#888888" x1="350.5" x2="351.50000000000006" y1="126.75000000000001" y2="126.75000000000001"/> + <line stroke="#888888" x1="351.50000000000006" x2="351.50000000000006" y1="126.75000000000001" y2="127.75000000000001"/> + <line stroke="#888888" x1="351.50000000000006" x2="350.5" y1="127.75000000000001" y2="127.75000000000001"/> + <line stroke="#888888" x1="370.50000000000006" x2="370.50000000000006" y1="127.75000000000001" y2="126.75000000000001"/> + <line stroke="#888888" x1="370.50000000000006" x2="371.50000000000006" y1="126.75000000000001" y2="126.75000000000001"/> + <line stroke="#888888" x1="371.50000000000006" x2="371.50000000000006" y1="126.75000000000001" y2="127.75000000000001"/> + <line stroke="#888888" x1="371.50000000000006" x2="370.50000000000006" y1="127.75000000000001" y2="127.75000000000001"/> + <line stroke="#888888" x1="350.5" x2="350.5" y1="130.25000000000003" y2="129.25000000000003"/> + <line stroke="#888888" x1="350.5" x2="351.50000000000006" y1="129.25000000000003" y2="129.25000000000003"/> + <line stroke="#888888" x1="351.50000000000006" x2="351.50000000000006" y1="129.25000000000003" y2="130.25000000000003"/> + <line stroke="#888888" x1="351.50000000000006" x2="350.5" y1="130.25000000000003" y2="130.25000000000003"/> + <line stroke="#888888" x1="370.50000000000006" x2="370.50000000000006" y1="130.25000000000003" y2="129.25000000000003"/> + <line stroke="#888888" x1="370.50000000000006" x2="371.50000000000006" y1="129.25000000000003" y2="129.25000000000003"/> + <line stroke="#888888" x1="371.50000000000006" x2="371.50000000000006" y1="129.25000000000003" y2="130.25000000000003"/> + <line stroke="#888888" x1="371.50000000000006" x2="370.50000000000006" y1="130.25000000000003" y2="130.25000000000003"/> + <line stroke="#888888" x1="350.5" x2="350.5" y1="132.75000000000003" y2="131.75000000000003"/> + <line stroke="#888888" x1="350.5" x2="351.50000000000006" y1="131.75000000000003" y2="131.75000000000003"/> + <line stroke="#888888" x1="351.50000000000006" x2="351.50000000000006" y1="131.75000000000003" y2="132.75000000000003"/> + <line stroke="#888888" x1="351.50000000000006" x2="350.5" y1="132.75000000000003" y2="132.75000000000003"/> + <line stroke="#888888" x1="370.50000000000006" x2="370.50000000000006" y1="132.75000000000003" y2="131.75000000000003"/> + <line stroke="#888888" x1="370.50000000000006" x2="371.50000000000006" y1="131.75000000000003" y2="131.75000000000003"/> + <line stroke="#888888" x1="371.50000000000006" x2="371.50000000000006" y1="131.75000000000003" y2="132.75000000000003"/> + <line stroke="#888888" x1="371.50000000000006" x2="370.50000000000006" y1="132.75000000000003" y2="132.75000000000003"/> + <line stroke="#888888" x1="350.5" x2="350.5" y1="135.25000000000003" y2="134.25000000000003"/> + <line stroke="#888888" x1="350.5" x2="351.50000000000006" y1="134.25000000000003" y2="134.25000000000003"/> + <line stroke="#888888" x1="351.50000000000006" x2="351.50000000000006" y1="134.25000000000003" y2="135.25000000000003"/> + <line stroke="#888888" x1="351.50000000000006" x2="350.5" y1="135.25000000000003" y2="135.25000000000003"/> + <line stroke="#888888" x1="370.50000000000006" x2="370.50000000000006" y1="135.25000000000003" y2="134.25000000000003"/> + <line stroke="#888888" x1="370.50000000000006" x2="371.50000000000006" y1="134.25000000000003" y2="134.25000000000003"/> + <line stroke="#888888" x1="371.50000000000006" x2="371.50000000000006" y1="134.25000000000003" y2="135.25000000000003"/> + <line stroke="#888888" x1="371.50000000000006" x2="370.50000000000006" y1="135.25000000000003" y2="135.25000000000003"/> + <line stroke="#888888" x1="350.5" x2="350.5" y1="137.75000000000003" y2="136.75"/> + <line stroke="#888888" x1="350.5" x2="351.50000000000006" y1="136.75" y2="136.75"/> + <line stroke="#888888" x1="351.50000000000006" x2="351.50000000000006" y1="136.75" y2="137.75000000000003"/> + <line stroke="#888888" x1="351.50000000000006" x2="350.5" y1="137.75000000000003" y2="137.75000000000003"/> + <line stroke="#888888" x1="370.50000000000006" x2="370.50000000000006" y1="137.75000000000003" y2="136.75"/> + <line stroke="#888888" x1="370.50000000000006" x2="371.50000000000006" y1="136.75" y2="136.75"/> + <line stroke="#888888" x1="371.50000000000006" x2="371.50000000000006" y1="136.75" y2="137.75000000000003"/> + <line stroke="#888888" x1="371.50000000000006" x2="370.50000000000006" y1="137.75000000000003" y2="137.75000000000003"/> + <line stroke="#888888" x1="350.5" x2="350.5" y1="140.25000000000003" y2="139.25"/> + <line stroke="#888888" x1="350.5" x2="351.50000000000006" y1="139.25" y2="139.25"/> + <line stroke="#888888" x1="351.50000000000006" x2="351.50000000000006" y1="139.25" y2="140.25000000000003"/> + <line stroke="#888888" x1="351.50000000000006" x2="350.5" y1="140.25000000000003" y2="140.25000000000003"/> + <line stroke="#888888" x1="370.50000000000006" x2="370.50000000000006" y1="140.25000000000003" y2="139.25"/> + <line stroke="#888888" x1="370.50000000000006" x2="371.50000000000006" y1="139.25" y2="139.25"/> + <line stroke="#888888" x1="371.50000000000006" x2="371.50000000000006" y1="139.25" y2="140.25000000000003"/> + <line stroke="#888888" x1="371.50000000000006" x2="370.50000000000006" y1="140.25000000000003" y2="140.25000000000003"/> + <line stroke="#888888" x1="350.5" x2="350.5" y1="142.75000000000003" y2="141.75000000000003"/> + <line stroke="#888888" x1="350.5" x2="351.50000000000006" y1="141.75000000000003" y2="141.75000000000003"/> + <line stroke="#888888" x1="351.50000000000006" x2="351.50000000000006" y1="141.75000000000003" y2="142.75000000000003"/> + <line stroke="#888888" x1="351.50000000000006" x2="350.5" y1="142.75000000000003" y2="142.75000000000003"/> + <line stroke="#888888" x1="370.50000000000006" x2="370.50000000000006" y1="142.75000000000003" y2="141.75000000000003"/> + <line stroke="#888888" x1="370.50000000000006" x2="371.50000000000006" y1="141.75000000000003" y2="141.75000000000003"/> + <line stroke="#888888" x1="371.50000000000006" x2="371.50000000000006" y1="141.75000000000003" y2="142.75000000000003"/> + <line stroke="#888888" x1="371.50000000000006" x2="370.50000000000006" y1="142.75000000000003" y2="142.75000000000003"/> + <line stroke="#888888" x1="350.5" x2="350.5" y1="145.25" y2="144.25000000000003"/> + <line stroke="#888888" x1="350.5" x2="351.50000000000006" y1="144.25000000000003" y2="144.25000000000003"/> + <line stroke="#888888" x1="351.50000000000006" x2="351.50000000000006" y1="144.25000000000003" y2="145.25"/> + <line stroke="#888888" x1="351.50000000000006" x2="350.5" y1="145.25" y2="145.25"/> + <line stroke="#888888" x1="370.50000000000006" x2="370.50000000000006" y1="145.25" y2="144.25000000000003"/> + <line stroke="#888888" x1="370.50000000000006" x2="371.50000000000006" y1="144.25000000000003" y2="144.25000000000003"/> + <line stroke="#888888" x1="371.50000000000006" x2="371.50000000000006" y1="144.25000000000003" y2="145.25"/> + <line stroke="#888888" x1="371.50000000000006" x2="370.50000000000006" y1="145.25" y2="145.25"/> + <line stroke="#888888" x1="350.5" x2="350.5" y1="147.75" y2="146.75000000000003"/> + <line stroke="#888888" x1="350.5" x2="351.50000000000006" y1="146.75000000000003" y2="146.75000000000003"/> + <line stroke="#888888" x1="351.50000000000006" x2="351.50000000000006" y1="146.75000000000003" y2="147.75"/> + <line stroke="#888888" x1="351.50000000000006" x2="350.5" y1="147.75" y2="147.75"/> + <line stroke="#888888" x1="369.50000000000006" x2="369.50000000000006" y1="148.75000000000003" y2="145.75"/> + <line stroke="#888888" x1="369.50000000000006" x2="372.50000000000006" y1="145.75" y2="145.75"/> + <line stroke="#888888" x1="372.50000000000006" x2="372.50000000000006" y1="145.75" y2="148.75000000000003"/> + <line stroke="#888888" x1="372.50000000000006" x2="369.50000000000006" y1="148.75000000000003" y2="148.75000000000003"/> + <line stroke="#888888" x1="365.25000000000006" x2="356.75000000000006" y1="105.75" y2="105.75"/> + <line stroke="#888888" x1="356.75000000000006" x2="356.75000000000006" y1="105.75" y2="105.25000000000001"/> + <line stroke="#888888" x1="356.75000000000006" x2="365.25000000000006" y1="105.25000000000001" y2="105.25000000000001"/> + <line stroke="#888888" x1="365.25000000000006" x2="365.25000000000006" y1="105.25000000000001" y2="105.75"/> + <line stroke="#888888" x1="356.75000000000006" x2="365.25000000000006" y1="153.50000000000003" y2="153.50000000000003"/> + <line stroke="#888888" x1="365.25000000000006" x2="365.25000000000006" y1="153.50000000000003" y2="154.00000000000003"/> + <line stroke="#888888" x1="365.25000000000006" x2="356.75000000000006" y1="154.00000000000003" y2="154.00000000000003"/> + <line stroke="#888888" x1="356.75000000000006" x2="356.75000000000006" y1="154.00000000000003" y2="153.50000000000003"/> + <line stroke="#888888" x1="388.00000000000006" x2="388.00000000000006" y1="149.00000000000003" y2="136.0"/> + <line stroke="#888888" x1="388.00000000000006" x2="418.00000000000006" y1="136.0" y2="136.0"/> + <line stroke="#888888" x1="418.00000000000006" x2="418.00000000000006" y1="136.0" y2="149.00000000000003"/> + <line stroke="#888888" x1="418.00000000000006" x2="388.00000000000006" y1="149.00000000000003" y2="149.00000000000003"/> + <line stroke="#888888" x1="395.06818181818187" x2="383.6590909090909" y1="103.5" y2="103.5"/> + <line stroke="#888888" x1="383.6590909090909" x2="383.6590909090909" y1="103.5" y2="103.00000000000001"/> + <line stroke="#888888" x1="383.6590909090909" x2="395.06818181818187" y1="103.00000000000001" y2="103.00000000000001"/> + <line stroke="#888888" x1="395.06818181818187" x2="395.06818181818187" y1="103.00000000000001" y2="103.5"/> + <line stroke="#888888" x1="422.3409090909092" x2="410.93181818181824" y1="103.5" y2="103.5"/> + <line stroke="#888888" x1="410.93181818181824" x2="410.93181818181824" y1="103.5" y2="103.00000000000001"/> + <line stroke="#888888" x1="410.93181818181824" x2="422.3409090909092" y1="103.00000000000001" y2="103.00000000000001"/> + <line stroke="#888888" x1="422.3409090909092" x2="422.3409090909092" y1="103.00000000000001" y2="103.5"/> + <line stroke="#888888" x1="425.25000000000006" x2="425.25000000000006" y1="120.4318181818182" y2="108.84090909090911"/> + <line stroke="#888888" x1="425.25000000000006" x2="425.75000000000006" y1="108.84090909090911" y2="108.84090909090911"/> + <line stroke="#888888" x1="425.75000000000006" x2="425.75000000000006" y1="108.84090909090911" y2="120.4318181818182"/> + <line stroke="#888888" x1="425.75000000000006" x2="425.25000000000006" y1="120.4318181818182" y2="120.4318181818182"/> + <line stroke="#888888" x1="425.25000000000006" x2="425.25000000000006" y1="148.15909090909093" y2="136.5681818181818"/> + <line stroke="#888888" x1="425.25000000000006" x2="425.75000000000006" y1="136.5681818181818" y2="136.5681818181818"/> + <line stroke="#888888" x1="425.75000000000006" x2="425.75000000000006" y1="136.5681818181818" y2="148.15909090909093"/> + <line stroke="#888888" x1="425.75000000000006" x2="425.25000000000006" y1="148.15909090909093" y2="148.15909090909093"/> + <line stroke="#888888" x1="265.50000000000006" x2="265.50000000000006" y1="111.25000000000001" y2="108.25000000000001"/> + <line stroke="#888888" x1="265.50000000000006" x2="268.50000000000006" y1="108.25000000000001" y2="108.25000000000001"/> + <line stroke="#888888" x1="268.50000000000006" x2="268.50000000000006" y1="108.25000000000001" y2="111.25000000000001"/> + <line stroke="#888888" x1="268.50000000000006" x2="265.50000000000006" y1="111.25000000000001" y2="111.25000000000001"/> + <line stroke="#888888" x1="286.5" x2="286.5" y1="110.25000000000001" y2="109.25"/> + <line stroke="#888888" x1="286.5" x2="287.5" y1="109.25" y2="109.25"/> + <line stroke="#888888" x1="287.5" x2="287.5" y1="109.25" y2="110.25000000000001"/> + <line stroke="#888888" x1="287.5" x2="286.5" y1="110.25000000000001" y2="110.25000000000001"/> + <line stroke="#888888" x1="266.5" x2="266.5" y1="112.75000000000001" y2="111.75000000000001"/> + <line stroke="#888888" x1="266.5" x2="267.50000000000006" y1="111.75000000000001" y2="111.75000000000001"/> + <line stroke="#888888" x1="267.50000000000006" x2="267.50000000000006" y1="111.75000000000001" y2="112.75000000000001"/> + <line stroke="#888888" x1="267.50000000000006" x2="266.5" y1="112.75000000000001" y2="112.75000000000001"/> + <line stroke="#888888" x1="286.5" x2="286.5" y1="112.75000000000001" y2="111.75000000000001"/> + <line stroke="#888888" x1="286.5" x2="287.5" y1="111.75000000000001" y2="111.75000000000001"/> + <line stroke="#888888" x1="287.5" x2="287.5" y1="111.75000000000001" y2="112.75000000000001"/> + <line stroke="#888888" x1="287.5" x2="286.5" y1="112.75000000000001" y2="112.75000000000001"/> + <line stroke="#888888" x1="266.5" x2="266.5" y1="115.25000000000001" y2="114.25000000000001"/> + <line stroke="#888888" x1="266.5" x2="267.50000000000006" y1="114.25000000000001" y2="114.25000000000001"/> + <line stroke="#888888" x1="267.50000000000006" x2="267.50000000000006" y1="114.25000000000001" y2="115.25000000000001"/> + <line stroke="#888888" x1="267.50000000000006" x2="266.5" y1="115.25000000000001" y2="115.25000000000001"/> + <line stroke="#888888" x1="286.5" x2="286.5" y1="115.25000000000001" y2="114.25000000000001"/> + <line stroke="#888888" x1="286.5" x2="287.5" y1="114.25000000000001" y2="114.25000000000001"/> + <line stroke="#888888" x1="287.5" x2="287.5" y1="114.25000000000001" y2="115.25000000000001"/> + <line stroke="#888888" x1="287.5" x2="286.5" y1="115.25000000000001" y2="115.25000000000001"/> + <line stroke="#888888" x1="266.5" x2="266.5" y1="117.75000000000001" y2="116.75000000000001"/> + <line stroke="#888888" x1="266.5" x2="267.50000000000006" y1="116.75000000000001" y2="116.75000000000001"/> + <line stroke="#888888" x1="267.50000000000006" x2="267.50000000000006" y1="116.75000000000001" y2="117.75000000000001"/> + <line stroke="#888888" x1="267.50000000000006" x2="266.5" y1="117.75000000000001" y2="117.75000000000001"/> + <line stroke="#888888" x1="286.5" x2="286.5" y1="117.75000000000001" y2="116.75000000000001"/> + <line stroke="#888888" x1="286.5" x2="287.5" y1="116.75000000000001" y2="116.75000000000001"/> + <line stroke="#888888" x1="287.5" x2="287.5" y1="116.75000000000001" y2="117.75000000000001"/> + <line stroke="#888888" x1="287.5" x2="286.5" y1="117.75000000000001" y2="117.75000000000001"/> + <line stroke="#888888" x1="266.5" x2="266.5" y1="120.25000000000001" y2="119.25000000000001"/> + <line stroke="#888888" x1="266.5" x2="267.50000000000006" y1="119.25000000000001" y2="119.25000000000001"/> + <line stroke="#888888" x1="267.50000000000006" x2="267.50000000000006" y1="119.25000000000001" y2="120.25000000000001"/> + <line stroke="#888888" x1="267.50000000000006" x2="266.5" y1="120.25000000000001" y2="120.25000000000001"/> + <line stroke="#888888" x1="286.5" x2="286.5" y1="120.25000000000001" y2="119.25000000000001"/> + <line stroke="#888888" x1="286.5" x2="287.5" y1="119.25000000000001" y2="119.25000000000001"/> + <line stroke="#888888" x1="287.5" x2="287.5" y1="119.25000000000001" y2="120.25000000000001"/> + <line stroke="#888888" x1="287.5" x2="286.5" y1="120.25000000000001" y2="120.25000000000001"/> + <line stroke="#888888" x1="266.5" x2="266.5" y1="122.75000000000001" y2="121.75000000000001"/> + <line stroke="#888888" x1="266.5" x2="267.50000000000006" y1="121.75000000000001" y2="121.75000000000001"/> + <line stroke="#888888" x1="267.50000000000006" x2="267.50000000000006" y1="121.75000000000001" y2="122.75000000000001"/> + <line stroke="#888888" x1="267.50000000000006" x2="266.5" y1="122.75000000000001" y2="122.75000000000001"/> + <line stroke="#888888" x1="286.5" x2="286.5" y1="122.75000000000001" y2="121.75000000000001"/> + <line stroke="#888888" x1="286.5" x2="287.5" y1="121.75000000000001" y2="121.75000000000001"/> + <line stroke="#888888" x1="287.5" x2="287.5" y1="121.75000000000001" y2="122.75000000000001"/> + <line stroke="#888888" x1="287.5" x2="286.5" y1="122.75000000000001" y2="122.75000000000001"/> + <line stroke="#888888" x1="266.5" x2="266.5" y1="125.25000000000001" y2="124.25000000000001"/> + <line stroke="#888888" x1="266.5" x2="267.50000000000006" y1="124.25000000000001" y2="124.25000000000001"/> + <line stroke="#888888" x1="267.50000000000006" x2="267.50000000000006" y1="124.25000000000001" y2="125.25000000000001"/> + <line stroke="#888888" x1="267.50000000000006" x2="266.5" y1="125.25000000000001" y2="125.25000000000001"/> + <line stroke="#888888" x1="286.5" x2="286.5" y1="125.25000000000001" y2="124.25000000000001"/> + <line stroke="#888888" x1="286.5" x2="287.5" y1="124.25000000000001" y2="124.25000000000001"/> + <line stroke="#888888" x1="287.5" x2="287.5" y1="124.25000000000001" y2="125.25000000000001"/> + <line stroke="#888888" x1="287.5" x2="286.5" y1="125.25000000000001" y2="125.25000000000001"/> + <line stroke="#888888" x1="266.5" x2="266.5" y1="127.75000000000001" y2="126.75000000000001"/> + <line stroke="#888888" x1="266.5" x2="267.50000000000006" y1="126.75000000000001" y2="126.75000000000001"/> + <line stroke="#888888" x1="267.50000000000006" x2="267.50000000000006" y1="126.75000000000001" y2="127.75000000000001"/> + <line stroke="#888888" x1="267.50000000000006" x2="266.5" y1="127.75000000000001" y2="127.75000000000001"/> + <line stroke="#888888" x1="286.5" x2="286.5" y1="127.75000000000001" y2="126.75000000000001"/> + <line stroke="#888888" x1="286.5" x2="287.5" y1="126.75000000000001" y2="126.75000000000001"/> + <line stroke="#888888" x1="287.5" x2="287.5" y1="126.75000000000001" y2="127.75000000000001"/> + <line stroke="#888888" x1="287.5" x2="286.5" y1="127.75000000000001" y2="127.75000000000001"/> + <line stroke="#888888" x1="266.5" x2="266.5" y1="130.25000000000003" y2="129.25000000000003"/> + <line stroke="#888888" x1="266.5" x2="267.50000000000006" y1="129.25000000000003" y2="129.25000000000003"/> + <line stroke="#888888" x1="267.50000000000006" x2="267.50000000000006" y1="129.25000000000003" y2="130.25000000000003"/> + <line stroke="#888888" x1="267.50000000000006" x2="266.5" y1="130.25000000000003" y2="130.25000000000003"/> + <line stroke="#888888" x1="286.5" x2="286.5" y1="130.25000000000003" y2="129.25000000000003"/> + <line stroke="#888888" x1="286.5" x2="287.5" y1="129.25000000000003" y2="129.25000000000003"/> + <line stroke="#888888" x1="287.5" x2="287.5" y1="129.25000000000003" y2="130.25000000000003"/> + <line stroke="#888888" x1="287.5" x2="286.5" y1="130.25000000000003" y2="130.25000000000003"/> + <line stroke="#888888" x1="266.5" x2="266.5" y1="132.75000000000003" y2="131.75000000000003"/> + <line stroke="#888888" x1="266.5" x2="267.50000000000006" y1="131.75000000000003" y2="131.75000000000003"/> + <line stroke="#888888" x1="267.50000000000006" x2="267.50000000000006" y1="131.75000000000003" y2="132.75000000000003"/> + <line stroke="#888888" x1="267.50000000000006" x2="266.5" y1="132.75000000000003" y2="132.75000000000003"/> + <line stroke="#888888" x1="286.5" x2="286.5" y1="132.75000000000003" y2="131.75000000000003"/> + <line stroke="#888888" x1="286.5" x2="287.5" y1="131.75000000000003" y2="131.75000000000003"/> + <line stroke="#888888" x1="287.5" x2="287.5" y1="131.75000000000003" y2="132.75000000000003"/> + <line stroke="#888888" x1="287.5" x2="286.5" y1="132.75000000000003" y2="132.75000000000003"/> + <line stroke="#888888" x1="266.5" x2="266.5" y1="135.25000000000003" y2="134.25000000000003"/> + <line stroke="#888888" x1="266.5" x2="267.50000000000006" y1="134.25000000000003" y2="134.25000000000003"/> + <line stroke="#888888" x1="267.50000000000006" x2="267.50000000000006" y1="134.25000000000003" y2="135.25000000000003"/> + <line stroke="#888888" x1="267.50000000000006" x2="266.5" y1="135.25000000000003" y2="135.25000000000003"/> + <line stroke="#888888" x1="286.5" x2="286.5" y1="135.25000000000003" y2="134.25000000000003"/> + <line stroke="#888888" x1="286.5" x2="287.5" y1="134.25000000000003" y2="134.25000000000003"/> + <line stroke="#888888" x1="287.5" x2="287.5" y1="134.25000000000003" y2="135.25000000000003"/> + <line stroke="#888888" x1="287.5" x2="286.5" y1="135.25000000000003" y2="135.25000000000003"/> + <line stroke="#888888" x1="266.5" x2="266.5" y1="137.75000000000003" y2="136.75"/> + <line stroke="#888888" x1="266.5" x2="267.50000000000006" y1="136.75" y2="136.75"/> + <line stroke="#888888" x1="267.50000000000006" x2="267.50000000000006" y1="136.75" y2="137.75000000000003"/> + <line stroke="#888888" x1="267.50000000000006" x2="266.5" y1="137.75000000000003" y2="137.75000000000003"/> + <line stroke="#888888" x1="286.5" x2="286.5" y1="137.75000000000003" y2="136.75"/> + <line stroke="#888888" x1="286.5" x2="287.5" y1="136.75" y2="136.75"/> + <line stroke="#888888" x1="287.5" x2="287.5" y1="136.75" y2="137.75000000000003"/> + <line stroke="#888888" x1="287.5" x2="286.5" y1="137.75000000000003" y2="137.75000000000003"/> + <line stroke="#888888" x1="266.5" x2="266.5" y1="140.25000000000003" y2="139.25"/> + <line stroke="#888888" x1="266.5" x2="267.50000000000006" y1="139.25" y2="139.25"/> + <line stroke="#888888" x1="267.50000000000006" x2="267.50000000000006" y1="139.25" y2="140.25000000000003"/> + <line stroke="#888888" x1="267.50000000000006" x2="266.5" y1="140.25000000000003" y2="140.25000000000003"/> + <line stroke="#888888" x1="286.5" x2="286.5" y1="140.25000000000003" y2="139.25"/> + <line stroke="#888888" x1="286.5" x2="287.5" y1="139.25" y2="139.25"/> + <line stroke="#888888" x1="287.5" x2="287.5" y1="139.25" y2="140.25000000000003"/> + <line stroke="#888888" x1="287.5" x2="286.5" y1="140.25000000000003" y2="140.25000000000003"/> + <line stroke="#888888" x1="266.5" x2="266.5" y1="142.75000000000003" y2="141.75000000000003"/> + <line stroke="#888888" x1="266.5" x2="267.50000000000006" y1="141.75000000000003" y2="141.75000000000003"/> + <line stroke="#888888" x1="267.50000000000006" x2="267.50000000000006" y1="141.75000000000003" y2="142.75000000000003"/> + <line stroke="#888888" x1="267.50000000000006" x2="266.5" y1="142.75000000000003" y2="142.75000000000003"/> + <line stroke="#888888" x1="286.5" x2="286.5" y1="142.75000000000003" y2="141.75000000000003"/> + <line stroke="#888888" x1="286.5" x2="287.5" y1="141.75000000000003" y2="141.75000000000003"/> + <line stroke="#888888" x1="287.5" x2="287.5" y1="141.75000000000003" y2="142.75000000000003"/> + <line stroke="#888888" x1="287.5" x2="286.5" y1="142.75000000000003" y2="142.75000000000003"/> + <line stroke="#888888" x1="266.5" x2="266.5" y1="145.25" y2="144.25000000000003"/> + <line stroke="#888888" x1="266.5" x2="267.50000000000006" y1="144.25000000000003" y2="144.25000000000003"/> + <line stroke="#888888" x1="267.50000000000006" x2="267.50000000000006" y1="144.25000000000003" y2="145.25"/> + <line stroke="#888888" x1="267.50000000000006" x2="266.5" y1="145.25" y2="145.25"/> + <line stroke="#888888" x1="286.5" x2="286.5" y1="145.25" y2="144.25000000000003"/> + <line stroke="#888888" x1="286.5" x2="287.5" y1="144.25000000000003" y2="144.25000000000003"/> + <line stroke="#888888" x1="287.5" x2="287.5" y1="144.25000000000003" y2="145.25"/> + <line stroke="#888888" x1="287.5" x2="286.5" y1="145.25" y2="145.25"/> + <line stroke="#888888" x1="266.5" x2="266.5" y1="147.75" y2="146.75000000000003"/> + <line stroke="#888888" x1="266.5" x2="267.50000000000006" y1="146.75000000000003" y2="146.75000000000003"/> + <line stroke="#888888" x1="267.50000000000006" x2="267.50000000000006" y1="146.75000000000003" y2="147.75"/> + <line stroke="#888888" x1="267.50000000000006" x2="266.5" y1="147.75" y2="147.75"/> + <line stroke="#888888" x1="285.50000000000006" x2="285.50000000000006" y1="148.75000000000003" y2="145.75"/> + <line stroke="#888888" x1="285.50000000000006" x2="288.50000000000006" y1="145.75" y2="145.75"/> + <line stroke="#888888" x1="288.50000000000006" x2="288.50000000000006" y1="145.75" y2="148.75000000000003"/> + <line stroke="#888888" x1="288.50000000000006" x2="285.50000000000006" y1="148.75000000000003" y2="148.75000000000003"/> + <line stroke="#888888" x1="281.25" x2="272.75" y1="105.75" y2="105.75"/> + <line stroke="#888888" x1="272.75" x2="272.75" y1="105.75" y2="105.25000000000001"/> + <line stroke="#888888" x1="272.75" x2="281.25" y1="105.25000000000001" y2="105.25000000000001"/> + <line stroke="#888888" x1="281.25" x2="281.25" y1="105.25000000000001" y2="105.75"/> + <line stroke="#888888" x1="272.75" x2="281.25" y1="153.50000000000003" y2="153.50000000000003"/> + <line stroke="#888888" x1="281.25" x2="281.25" y1="153.50000000000003" y2="154.00000000000003"/> + <line stroke="#888888" x1="281.25" x2="272.75" y1="154.00000000000003" y2="154.00000000000003"/> + <line stroke="#888888" x1="272.75" x2="272.75" y1="154.00000000000003" y2="153.50000000000003"/> + <line stroke="#888888" x1="257.5" x2="262.5" y1="109.0909090909091" y2="109.0909090909091"/> + <line stroke="#888888" x1="262.5" x2="262.5" y1="109.0909090909091" y2="120.1818181818182"/> + <line stroke="#888888" x1="262.5" x2="257.5" y1="120.1818181818182" y2="120.1818181818182"/> + <line stroke="#888888" x1="257.5" x2="262.5" y1="136.8181818181818" y2="136.8181818181818"/> + <line stroke="#888888" x1="262.5" x2="262.5" y1="136.8181818181818" y2="147.90909090909093"/> + <line stroke="#888888" x1="262.5" x2="257.5" y1="147.90909090909093" y2="147.90909090909093"/> + <line stroke="#888888" x1="282.75" x2="286.25" y1="82.0" y2="82.0"/> + <line stroke="#888888" x1="286.25" x2="286.25" y1="82.0" y2="90.0"/> + <line stroke="#888888" x1="286.25" x2="282.75" y1="90.0" y2="90.0"/> +</svg> diff --git a/rocolib/output/ServoMountAndStack/graph-model.png b/rocolib/output/ServoMountAndStack/graph-model.png new file mode 100644 index 0000000000000000000000000000000000000000..c37e69e60209d1a3126a4044c75f4063424b9fb6 Binary files /dev/null and b/rocolib/output/ServoMountAndStack/graph-model.png differ diff --git a/rocolib/output/ServoMountAndStack/graph-model.stl b/rocolib/output/ServoMountAndStack/graph-model.stl new file mode 100644 index 0000000000000000000000000000000000000000..f94b1ff078fcee9132eecc9ab67386513eab74f5 --- /dev/null +++ b/rocolib/output/ServoMountAndStack/graph-model.stl @@ -0,0 +1,3614 @@ +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0305 0.0120 0.0000 +vertex -0.0305 -0.0120 0.0000 +vertex 0.0305 -0.0120 0.0000 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0120 0.0000 +vertex 0.0305 0.0120 0.0000 +vertex -0.0305 0.0120 0.0000 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0120 0.0000 +vertex -0.0295 -0.0115 -0.0103 +vertex -0.0295 -0.0115 -0.0132 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0115 -0.0132 +vertex -0.0295 -0.0105 -0.0138 +vertex -0.0295 -0.0105 -0.0148 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0115 -0.0103 +vertex -0.0295 -0.0120 0.0000 +vertex -0.0295 -0.0085 -0.0103 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0120 0.0000 +vertex -0.0295 -0.0115 -0.0132 +vertex -0.0295 -0.0120 -0.0610 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0105 -0.0148 +vertex -0.0295 -0.0105 -0.0163 +vertex -0.0295 -0.0115 -0.0132 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0105 -0.0163 +vertex -0.0295 -0.0105 -0.0148 +vertex -0.0295 -0.0095 -0.0148 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0105 -0.0173 +vertex -0.0295 -0.0105 -0.0187 +vertex -0.0295 -0.0115 -0.0132 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0105 -0.0187 +vertex -0.0295 -0.0105 -0.0173 +vertex -0.0295 -0.0095 -0.0173 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0105 -0.0163 +vertex -0.0295 -0.0105 -0.0173 +vertex -0.0295 -0.0115 -0.0132 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0115 -0.0132 +vertex -0.0295 -0.0105 -0.0187 +vertex -0.0295 -0.0105 -0.0198 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0105 -0.0198 +vertex -0.0295 -0.0105 -0.0213 +vertex -0.0295 -0.0115 -0.0132 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0105 -0.0213 +vertex -0.0295 -0.0105 -0.0198 +vertex -0.0295 -0.0095 -0.0198 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0105 -0.0222 +vertex -0.0295 -0.0105 -0.0238 +vertex -0.0295 -0.0115 -0.0132 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0105 -0.0238 +vertex -0.0295 -0.0105 -0.0222 +vertex -0.0295 -0.0095 -0.0222 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0105 -0.0213 +vertex -0.0295 -0.0105 -0.0222 +vertex -0.0295 -0.0115 -0.0132 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0105 -0.0248 +vertex -0.0295 -0.0105 -0.0262 +vertex -0.0295 -0.0115 -0.0132 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0105 -0.0262 +vertex -0.0295 -0.0105 -0.0248 +vertex -0.0295 -0.0095 -0.0248 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0105 -0.0272 +vertex -0.0295 -0.0105 -0.0288 +vertex -0.0295 -0.0115 -0.0132 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0105 -0.0288 +vertex -0.0295 -0.0105 -0.0272 +vertex -0.0295 -0.0095 -0.0272 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0105 -0.0262 +vertex -0.0295 -0.0105 -0.0272 +vertex -0.0295 -0.0115 -0.0132 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0105 -0.0238 +vertex -0.0295 -0.0105 -0.0248 +vertex -0.0295 -0.0115 -0.0132 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0115 -0.0132 +vertex -0.0295 -0.0105 -0.0288 +vertex -0.0295 -0.0105 -0.0298 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0095 -0.0163 +vertex -0.0295 -0.0105 -0.0163 +vertex -0.0295 -0.0095 -0.0148 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0095 -0.0148 +vertex -0.0295 -0.0095 -0.0138 +vertex -0.0295 -0.0085 -0.0132 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0095 -0.0187 +vertex -0.0295 -0.0105 -0.0187 +vertex -0.0295 -0.0095 -0.0173 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0095 -0.0173 +vertex -0.0295 -0.0095 -0.0163 +vertex -0.0295 -0.0085 -0.0132 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0095 -0.0148 +vertex -0.0295 -0.0085 -0.0132 +vertex -0.0295 -0.0095 -0.0163 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0095 -0.0173 +vertex -0.0295 0.0095 -0.0173 +vertex -0.0295 -0.0095 -0.0187 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0085 -0.0132 +vertex -0.0295 -0.0085 -0.0103 +vertex -0.0295 0.0095 -0.0112 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0095 -0.0213 +vertex -0.0295 -0.0105 -0.0213 +vertex -0.0295 -0.0095 -0.0198 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0095 -0.0187 +vertex -0.0295 -0.0095 -0.0198 +vertex -0.0295 -0.0095 -0.0187 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0095 -0.0198 +vertex -0.0295 0.0095 -0.0198 +vertex -0.0295 -0.0095 -0.0213 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0095 -0.0138 +vertex -0.0295 -0.0115 -0.0132 +vertex -0.0295 -0.0085 -0.0132 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0105 -0.0138 +vertex -0.0295 -0.0115 -0.0132 +vertex -0.0295 -0.0095 -0.0138 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0095 -0.0238 +vertex -0.0295 -0.0105 -0.0238 +vertex -0.0295 -0.0095 -0.0222 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0095 -0.0213 +vertex -0.0295 -0.0095 -0.0222 +vertex -0.0295 -0.0095 -0.0213 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0095 -0.0248 +vertex -0.0295 -0.0095 -0.0262 +vertex -0.0295 -0.0105 -0.0262 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0095 -0.0238 +vertex -0.0295 -0.0095 -0.0222 +vertex -0.0295 0.0095 -0.0222 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0095 -0.0248 +vertex -0.0295 -0.0095 -0.0262 +vertex -0.0295 -0.0095 -0.0248 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0095 -0.0272 +vertex -0.0295 -0.0095 -0.0288 +vertex -0.0295 -0.0095 -0.0272 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0095 -0.0288 +vertex -0.0295 -0.0095 -0.0298 +vertex -0.0295 -0.0095 -0.0288 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0095 -0.0272 +vertex -0.0295 -0.0095 -0.0262 +vertex -0.0295 0.0095 -0.0262 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0095 -0.0288 +vertex -0.0295 -0.0105 -0.0288 +vertex -0.0295 -0.0095 -0.0272 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0095 -0.0248 +vertex -0.0295 -0.0095 -0.0238 +vertex -0.0295 0.0095 -0.0238 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0105 -0.0298 +vertex -0.0295 -0.0095 -0.0298 +vertex -0.0295 -0.0095 -0.0312 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0095 -0.0298 +vertex -0.0295 0.0095 -0.0298 +vertex -0.0295 -0.0095 -0.0312 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0120 0.0000 +vertex -0.0295 0.0120 0.0000 +vertex -0.0295 -0.0085 -0.0103 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0115 -0.0132 +vertex -0.0295 -0.0105 -0.0298 +vertex -0.0295 -0.0105 -0.0312 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0105 -0.0338 +vertex -0.0295 -0.0115 -0.0132 +vertex -0.0295 -0.0105 -0.0323 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0105 -0.0348 +vertex -0.0295 -0.0120 -0.0610 +vertex -0.0295 -0.0115 -0.0132 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0105 -0.0323 +vertex -0.0295 -0.0095 -0.0323 +vertex -0.0295 -0.0105 -0.0338 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0105 -0.0348 +vertex -0.0295 -0.0115 -0.0132 +vertex -0.0295 -0.0105 -0.0338 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0105 -0.0362 +vertex -0.0295 -0.0105 -0.0372 +vertex -0.0295 -0.0120 -0.0610 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0105 -0.0387 +vertex -0.0295 -0.0105 -0.0398 +vertex -0.0295 -0.0120 -0.0610 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0105 -0.0372 +vertex -0.0295 -0.0095 -0.0372 +vertex -0.0295 -0.0105 -0.0387 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0105 -0.0372 +vertex -0.0295 -0.0105 -0.0387 +vertex -0.0295 -0.0120 -0.0610 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0105 -0.0348 +vertex -0.0295 -0.0095 -0.0348 +vertex -0.0295 -0.0105 -0.0362 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0105 -0.0348 +vertex -0.0295 -0.0105 -0.0362 +vertex -0.0295 -0.0120 -0.0610 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0105 -0.0413 +vertex -0.0295 -0.0105 -0.0423 +vertex -0.0295 -0.0120 -0.0610 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0120 -0.0610 +vertex -0.0295 -0.0105 -0.0438 +vertex -0.0295 -0.0105 -0.0447 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0105 -0.0438 +vertex -0.0295 -0.0120 -0.0610 +vertex -0.0295 -0.0105 -0.0423 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0105 -0.0423 +vertex -0.0295 -0.0095 -0.0423 +vertex -0.0295 -0.0105 -0.0438 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0105 -0.0413 +vertex -0.0295 -0.0120 -0.0610 +vertex -0.0295 -0.0105 -0.0398 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0105 -0.0447 +vertex -0.0295 -0.0105 -0.0462 +vertex -0.0295 -0.0120 -0.0610 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0105 -0.0462 +vertex -0.0295 -0.0105 -0.0447 +vertex -0.0295 -0.0095 -0.0447 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0105 -0.0473 +vertex -0.0295 -0.0105 -0.0488 +vertex -0.0295 -0.0120 -0.0610 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0105 -0.0488 +vertex -0.0295 -0.0105 -0.0473 +vertex -0.0295 -0.0095 -0.0473 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0105 -0.0462 +vertex -0.0295 -0.0105 -0.0473 +vertex -0.0295 -0.0120 -0.0610 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0120 -0.0610 +vertex -0.0295 -0.0105 -0.0488 +vertex -0.0295 -0.0105 -0.0498 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0105 -0.0398 +vertex -0.0295 -0.0095 -0.0398 +vertex -0.0295 -0.0105 -0.0413 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0105 -0.0323 +vertex -0.0295 -0.0115 -0.0132 +vertex -0.0295 -0.0105 -0.0312 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0095 -0.0338 +vertex -0.0295 -0.0105 -0.0338 +vertex -0.0295 -0.0095 -0.0323 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0095 -0.0312 +vertex -0.0295 -0.0095 -0.0323 +vertex -0.0295 -0.0095 -0.0312 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0095 -0.0362 +vertex -0.0295 -0.0105 -0.0362 +vertex -0.0295 -0.0095 -0.0348 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0095 -0.0338 +vertex -0.0295 -0.0095 -0.0348 +vertex -0.0295 -0.0095 -0.0338 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0095 -0.0338 +vertex -0.0295 -0.0095 -0.0323 +vertex -0.0295 0.0095 -0.0323 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0095 -0.0387 +vertex -0.0295 -0.0105 -0.0387 +vertex -0.0295 -0.0095 -0.0372 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0095 -0.0362 +vertex -0.0295 -0.0095 -0.0372 +vertex -0.0295 -0.0095 -0.0362 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0095 -0.0413 +vertex -0.0295 -0.0105 -0.0413 +vertex -0.0295 -0.0095 -0.0398 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0095 -0.0387 +vertex -0.0295 -0.0095 -0.0398 +vertex -0.0295 -0.0095 -0.0387 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0095 -0.0387 +vertex -0.0295 -0.0095 -0.0372 +vertex -0.0295 0.0095 -0.0372 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0095 -0.0362 +vertex -0.0295 -0.0095 -0.0348 +vertex -0.0295 0.0095 -0.0348 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0095 -0.0438 +vertex -0.0295 -0.0105 -0.0438 +vertex -0.0295 -0.0095 -0.0423 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0095 -0.0413 +vertex -0.0295 -0.0095 -0.0423 +vertex -0.0295 -0.0095 -0.0413 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0095 -0.0447 +vertex -0.0295 -0.0095 -0.0462 +vertex -0.0295 -0.0105 -0.0462 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0095 -0.0438 +vertex -0.0295 -0.0095 -0.0423 +vertex -0.0295 0.0095 -0.0423 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0085 -0.0478 +vertex -0.0295 -0.0095 -0.0462 +vertex -0.0295 -0.0095 -0.0447 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0085 -0.0478 +vertex -0.0295 -0.0095 -0.0488 +vertex -0.0295 -0.0095 -0.0473 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0085 -0.0478 +vertex -0.0295 -0.0095 -0.0498 +vertex -0.0295 -0.0095 -0.0488 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0095 -0.0473 +vertex -0.0295 -0.0095 -0.0462 +vertex -0.0295 0.0085 -0.0478 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0095 -0.0488 +vertex -0.0295 -0.0105 -0.0488 +vertex -0.0295 -0.0095 -0.0473 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0095 -0.0447 +vertex -0.0295 -0.0095 -0.0438 +vertex -0.0295 0.0085 -0.0478 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0105 -0.0498 +vertex -0.0295 -0.0095 -0.0498 +vertex -0.0295 -0.0120 -0.0610 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0095 -0.0413 +vertex -0.0295 -0.0095 -0.0398 +vertex -0.0295 0.0095 -0.0398 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0105 -0.0312 +vertex -0.0295 -0.0105 -0.0298 +vertex -0.0295 -0.0095 -0.0312 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0120 -0.0610 +vertex -0.0295 -0.0095 -0.0498 +vertex -0.0295 0.0085 -0.0508 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0095 -0.0173 +vertex -0.0295 -0.0095 -0.0173 +vertex -0.0295 -0.0085 -0.0132 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0095 -0.0138 +vertex -0.0295 -0.0085 -0.0132 +vertex -0.0295 0.0095 -0.0123 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0095 -0.0163 +vertex -0.0295 -0.0085 -0.0132 +vertex -0.0295 0.0095 -0.0148 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0095 -0.0123 +vertex -0.0295 0.0105 -0.0123 +vertex -0.0295 0.0095 -0.0138 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0095 -0.0148 +vertex -0.0295 -0.0085 -0.0132 +vertex -0.0295 0.0095 -0.0138 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0095 -0.0187 +vertex -0.0295 -0.0095 -0.0187 +vertex -0.0295 0.0095 -0.0173 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0095 -0.0213 +vertex -0.0295 -0.0095 -0.0213 +vertex -0.0295 0.0095 -0.0198 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0095 -0.0173 +vertex -0.0295 0.0105 -0.0173 +vertex -0.0295 0.0095 -0.0187 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0095 -0.0198 +vertex -0.0295 -0.0095 -0.0198 +vertex -0.0295 0.0095 -0.0187 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0095 -0.0148 +vertex -0.0295 0.0105 -0.0148 +vertex -0.0295 0.0095 -0.0163 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0095 -0.0173 +vertex -0.0295 -0.0085 -0.0132 +vertex -0.0295 0.0095 -0.0163 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0095 -0.0238 +vertex -0.0295 -0.0095 -0.0238 +vertex -0.0295 0.0095 -0.0222 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0095 -0.0262 +vertex -0.0295 -0.0095 -0.0262 +vertex -0.0295 0.0095 -0.0248 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0095 -0.0222 +vertex -0.0295 0.0105 -0.0222 +vertex -0.0295 0.0095 -0.0238 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0095 -0.0248 +vertex -0.0295 -0.0095 -0.0248 +vertex -0.0295 0.0095 -0.0238 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0095 -0.0288 +vertex -0.0295 -0.0095 -0.0288 +vertex -0.0295 0.0095 -0.0272 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0095 -0.0312 +vertex -0.0295 -0.0095 -0.0312 +vertex -0.0295 0.0095 -0.0298 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0095 -0.0272 +vertex -0.0295 0.0105 -0.0272 +vertex -0.0295 0.0095 -0.0288 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0095 -0.0298 +vertex -0.0295 -0.0095 -0.0298 +vertex -0.0295 0.0095 -0.0288 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0095 -0.0248 +vertex -0.0295 0.0105 -0.0248 +vertex -0.0295 0.0095 -0.0262 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0095 -0.0272 +vertex -0.0295 -0.0095 -0.0272 +vertex -0.0295 0.0095 -0.0262 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0095 -0.0198 +vertex -0.0295 0.0105 -0.0198 +vertex -0.0295 0.0095 -0.0213 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0095 -0.0222 +vertex -0.0295 -0.0095 -0.0222 +vertex -0.0295 0.0095 -0.0213 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0105 -0.0123 +vertex -0.0295 0.0105 -0.0112 +vertex -0.0295 0.0120 0.0000 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0105 -0.0148 +vertex -0.0295 0.0105 -0.0138 +vertex -0.0295 0.0120 0.0000 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0105 -0.0123 +vertex -0.0295 0.0120 0.0000 +vertex -0.0295 0.0105 -0.0138 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0105 -0.0123 +vertex -0.0295 0.0105 -0.0138 +vertex -0.0295 0.0095 -0.0138 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0105 -0.0163 +vertex -0.0295 0.0120 0.0000 +vertex -0.0295 0.0105 -0.0173 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0120 0.0000 +vertex -0.0295 0.0105 -0.0163 +vertex -0.0295 0.0105 -0.0148 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0105 -0.0173 +vertex -0.0295 0.0105 -0.0187 +vertex -0.0295 0.0095 -0.0187 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0105 -0.0187 +vertex -0.0295 0.0105 -0.0173 +vertex -0.0295 0.0120 0.0000 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0120 0.0000 +vertex -0.0295 0.0105 -0.0198 +vertex -0.0295 0.0105 -0.0187 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0105 -0.0112 +vertex -0.0295 0.0095 -0.0112 +vertex -0.0295 0.0120 0.0000 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0105 -0.0148 +vertex -0.0295 0.0105 -0.0163 +vertex -0.0295 0.0095 -0.0163 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0105 -0.0198 +vertex -0.0295 0.0105 -0.0213 +vertex -0.0295 0.0095 -0.0213 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0105 -0.0213 +vertex -0.0295 0.0105 -0.0198 +vertex -0.0295 0.0120 0.0000 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0105 -0.0222 +vertex -0.0295 0.0105 -0.0238 +vertex -0.0295 0.0095 -0.0238 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0105 -0.0238 +vertex -0.0295 0.0105 -0.0222 +vertex -0.0295 0.0120 0.0000 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0105 -0.0213 +vertex -0.0295 0.0120 0.0000 +vertex -0.0295 0.0105 -0.0222 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0105 -0.0248 +vertex -0.0295 0.0105 -0.0262 +vertex -0.0295 0.0095 -0.0262 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0105 -0.0262 +vertex -0.0295 0.0105 -0.0248 +vertex -0.0295 0.0120 0.0000 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0105 -0.0272 +vertex -0.0295 0.0105 -0.0288 +vertex -0.0295 0.0095 -0.0288 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0115 -0.0478 +vertex -0.0295 0.0105 -0.0288 +vertex -0.0295 0.0105 -0.0272 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0115 -0.0478 +vertex -0.0295 0.0105 -0.0298 +vertex -0.0295 0.0105 -0.0288 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0105 -0.0272 +vertex -0.0295 0.0105 -0.0262 +vertex -0.0295 0.0115 -0.0478 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0105 -0.0238 +vertex -0.0295 0.0120 0.0000 +vertex -0.0295 0.0105 -0.0248 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0120 0.0000 +vertex -0.0295 0.0115 -0.0478 +vertex -0.0295 0.0105 -0.0262 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0095 -0.0112 +vertex -0.0295 -0.0085 -0.0103 +vertex -0.0295 0.0120 0.0000 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0095 -0.0298 +vertex -0.0295 0.0105 -0.0298 +vertex -0.0295 0.0105 -0.0312 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0095 -0.0338 +vertex -0.0295 -0.0095 -0.0338 +vertex -0.0295 0.0095 -0.0323 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0095 -0.0362 +vertex -0.0295 -0.0095 -0.0362 +vertex -0.0295 0.0095 -0.0348 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0095 -0.0323 +vertex -0.0295 0.0105 -0.0323 +vertex -0.0295 0.0095 -0.0338 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0095 -0.0348 +vertex -0.0295 -0.0095 -0.0348 +vertex -0.0295 0.0095 -0.0338 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0095 -0.0387 +vertex -0.0295 -0.0095 -0.0387 +vertex -0.0295 0.0095 -0.0372 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0095 -0.0413 +vertex -0.0295 -0.0095 -0.0413 +vertex -0.0295 0.0095 -0.0398 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0095 -0.0372 +vertex -0.0295 0.0105 -0.0372 +vertex -0.0295 0.0095 -0.0387 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0095 -0.0398 +vertex -0.0295 -0.0095 -0.0398 +vertex -0.0295 0.0095 -0.0387 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0095 -0.0348 +vertex -0.0295 0.0105 -0.0348 +vertex -0.0295 0.0095 -0.0362 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0095 -0.0372 +vertex -0.0295 -0.0095 -0.0372 +vertex -0.0295 0.0095 -0.0362 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0095 -0.0438 +vertex -0.0295 -0.0095 -0.0438 +vertex -0.0295 0.0095 -0.0423 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0085 -0.0478 +vertex -0.0295 0.0085 -0.0508 +vertex -0.0295 -0.0095 -0.0498 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0115 -0.0478 +vertex -0.0295 0.0085 -0.0478 +vertex -0.0295 0.0095 -0.0473 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0095 -0.0438 +vertex -0.0295 0.0095 -0.0438 +vertex -0.0295 0.0085 -0.0478 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0095 -0.0423 +vertex -0.0295 0.0095 -0.0413 +vertex -0.0295 0.0095 -0.0423 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0095 -0.0438 +vertex -0.0295 0.0095 -0.0447 +vertex -0.0295 0.0085 -0.0478 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0095 -0.0462 +vertex -0.0295 0.0095 -0.0473 +vertex -0.0295 0.0085 -0.0478 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0095 -0.0447 +vertex -0.0295 0.0105 -0.0447 +vertex -0.0295 0.0095 -0.0462 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0095 -0.0447 +vertex -0.0295 0.0095 -0.0462 +vertex -0.0295 0.0085 -0.0478 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0095 -0.0423 +vertex -0.0295 0.0105 -0.0423 +vertex -0.0295 0.0095 -0.0438 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0095 -0.0473 +vertex -0.0295 0.0105 -0.0473 +vertex -0.0295 0.0115 -0.0478 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0095 -0.0398 +vertex -0.0295 0.0105 -0.0398 +vertex -0.0295 0.0095 -0.0413 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0095 -0.0323 +vertex -0.0295 0.0095 -0.0312 +vertex -0.0295 0.0095 -0.0323 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0105 -0.0323 +vertex -0.0295 0.0105 -0.0312 +vertex -0.0295 0.0115 -0.0478 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0105 -0.0348 +vertex -0.0295 0.0105 -0.0338 +vertex -0.0295 0.0115 -0.0478 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0105 -0.0323 +vertex -0.0295 0.0115 -0.0478 +vertex -0.0295 0.0105 -0.0338 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0105 -0.0323 +vertex -0.0295 0.0105 -0.0338 +vertex -0.0295 0.0095 -0.0338 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0105 -0.0372 +vertex -0.0295 0.0105 -0.0362 +vertex -0.0295 0.0115 -0.0478 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0105 -0.0398 +vertex -0.0295 0.0105 -0.0387 +vertex -0.0295 0.0115 -0.0478 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0105 -0.0372 +vertex -0.0295 0.0115 -0.0478 +vertex -0.0295 0.0105 -0.0387 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0105 -0.0372 +vertex -0.0295 0.0105 -0.0387 +vertex -0.0295 0.0095 -0.0387 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0105 -0.0348 +vertex -0.0295 0.0115 -0.0478 +vertex -0.0295 0.0105 -0.0362 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0105 -0.0348 +vertex -0.0295 0.0105 -0.0362 +vertex -0.0295 0.0095 -0.0362 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0105 -0.0423 +vertex -0.0295 0.0105 -0.0413 +vertex -0.0295 0.0115 -0.0478 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0105 -0.0447 +vertex -0.0295 0.0105 -0.0438 +vertex -0.0295 0.0115 -0.0478 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0105 -0.0423 +vertex -0.0295 0.0115 -0.0478 +vertex -0.0295 0.0105 -0.0438 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0105 -0.0423 +vertex -0.0295 0.0105 -0.0438 +vertex -0.0295 0.0095 -0.0438 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0105 -0.0473 +vertex -0.0295 0.0105 -0.0462 +vertex -0.0295 0.0115 -0.0478 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0115 -0.0478 +vertex -0.0295 0.0120 -0.0610 +vertex -0.0295 0.0115 -0.0508 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0120 -0.0610 +vertex -0.0295 0.0115 -0.0478 +vertex -0.0295 0.0120 0.0000 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0120 -0.0610 +vertex -0.0295 0.0085 -0.0508 +vertex -0.0295 0.0115 -0.0508 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0105 -0.0462 +vertex -0.0295 0.0105 -0.0447 +vertex -0.0295 0.0115 -0.0478 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0105 -0.0413 +vertex -0.0295 0.0105 -0.0398 +vertex -0.0295 0.0115 -0.0478 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0105 -0.0447 +vertex -0.0295 0.0105 -0.0462 +vertex -0.0295 0.0095 -0.0462 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0105 -0.0312 +vertex -0.0295 0.0105 -0.0298 +vertex -0.0295 0.0115 -0.0478 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0105 -0.0398 +vertex -0.0295 0.0105 -0.0413 +vertex -0.0295 0.0095 -0.0413 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0095 -0.0312 +vertex -0.0295 0.0095 -0.0298 +vertex -0.0295 0.0105 -0.0312 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0085 -0.0508 +vertex -0.0295 0.0120 -0.0610 +vertex -0.0295 -0.0120 -0.0610 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0095 -0.0123 +vertex -0.0295 -0.0085 -0.0132 +vertex -0.0295 0.0095 -0.0112 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0120 0.0000 +vertex -0.0220 0.0120 -0.0335 +vertex -0.0295 0.0120 -0.0610 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0220 0.0120 -0.0335 +vertex -0.0295 0.0120 0.0000 +vertex 0.0130 0.0120 -0.0335 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0120 -0.0610 +vertex -0.0220 0.0120 -0.0515 +vertex 0.0130 0.0120 -0.0515 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0220 0.0120 -0.0515 +vertex -0.0295 0.0120 -0.0610 +vertex -0.0220 0.0120 -0.0335 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0130 0.0120 -0.0335 +vertex 0.0305 0.0120 0.0000 +vertex 0.0305 0.0120 -0.0610 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0120 0.0000 +vertex 0.0130 0.0120 -0.0335 +vertex -0.0295 0.0120 0.0000 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0130 0.0120 -0.0515 +vertex 0.0305 0.0120 -0.0610 +vertex -0.0295 0.0120 -0.0610 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0120 -0.0610 +vertex 0.0130 0.0120 -0.0515 +vertex 0.0130 0.0120 -0.0335 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0120 0.0000 +vertex 0.0305 0.0115 -0.0103 +vertex 0.0305 0.0115 -0.0132 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0115 -0.0132 +vertex 0.0305 0.0105 -0.0138 +vertex 0.0305 0.0105 -0.0148 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0115 -0.0103 +vertex 0.0305 0.0120 0.0000 +vertex 0.0305 0.0085 -0.0103 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0120 0.0000 +vertex 0.0305 0.0115 -0.0132 +vertex 0.0305 0.0120 -0.0610 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0105 -0.0148 +vertex 0.0305 0.0105 -0.0163 +vertex 0.0305 0.0115 -0.0132 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0105 -0.0163 +vertex 0.0305 0.0105 -0.0148 +vertex 0.0305 0.0095 -0.0148 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0105 -0.0173 +vertex 0.0305 0.0105 -0.0187 +vertex 0.0305 0.0115 -0.0132 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0105 -0.0187 +vertex 0.0305 0.0105 -0.0173 +vertex 0.0305 0.0095 -0.0173 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0105 -0.0163 +vertex 0.0305 0.0105 -0.0173 +vertex 0.0305 0.0115 -0.0132 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0115 -0.0132 +vertex 0.0305 0.0105 -0.0187 +vertex 0.0305 0.0105 -0.0198 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0105 -0.0198 +vertex 0.0305 0.0105 -0.0213 +vertex 0.0305 0.0115 -0.0132 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0105 -0.0213 +vertex 0.0305 0.0105 -0.0198 +vertex 0.0305 0.0095 -0.0198 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0105 -0.0222 +vertex 0.0305 0.0105 -0.0238 +vertex 0.0305 0.0115 -0.0132 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0105 -0.0238 +vertex 0.0305 0.0105 -0.0222 +vertex 0.0305 0.0095 -0.0222 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0105 -0.0213 +vertex 0.0305 0.0105 -0.0222 +vertex 0.0305 0.0115 -0.0132 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0105 -0.0248 +vertex 0.0305 0.0105 -0.0262 +vertex 0.0305 0.0115 -0.0132 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0105 -0.0262 +vertex 0.0305 0.0105 -0.0248 +vertex 0.0305 0.0095 -0.0248 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0105 -0.0272 +vertex 0.0305 0.0105 -0.0288 +vertex 0.0305 0.0115 -0.0132 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0105 -0.0288 +vertex 0.0305 0.0105 -0.0272 +vertex 0.0305 0.0095 -0.0272 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0105 -0.0262 +vertex 0.0305 0.0105 -0.0272 +vertex 0.0305 0.0115 -0.0132 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0105 -0.0238 +vertex 0.0305 0.0105 -0.0248 +vertex 0.0305 0.0115 -0.0132 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0115 -0.0132 +vertex 0.0305 0.0105 -0.0288 +vertex 0.0305 0.0105 -0.0298 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0095 -0.0163 +vertex 0.0305 0.0105 -0.0163 +vertex 0.0305 0.0095 -0.0148 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0095 -0.0148 +vertex 0.0305 0.0095 -0.0138 +vertex 0.0305 0.0085 -0.0132 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0095 -0.0187 +vertex 0.0305 0.0105 -0.0187 +vertex 0.0305 0.0095 -0.0173 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0095 -0.0173 +vertex 0.0305 0.0095 -0.0163 +vertex 0.0305 0.0085 -0.0132 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0095 -0.0148 +vertex 0.0305 0.0085 -0.0132 +vertex 0.0305 0.0095 -0.0163 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0095 -0.0173 +vertex 0.0305 -0.0095 -0.0173 +vertex 0.0305 0.0095 -0.0187 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0085 -0.0132 +vertex 0.0305 0.0085 -0.0103 +vertex 0.0305 -0.0095 -0.0112 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0095 -0.0213 +vertex 0.0305 0.0105 -0.0213 +vertex 0.0305 0.0095 -0.0198 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0095 -0.0187 +vertex 0.0305 0.0095 -0.0198 +vertex 0.0305 0.0095 -0.0187 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0095 -0.0198 +vertex 0.0305 -0.0095 -0.0198 +vertex 0.0305 0.0095 -0.0213 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0095 -0.0138 +vertex 0.0305 0.0115 -0.0132 +vertex 0.0305 0.0085 -0.0132 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0105 -0.0138 +vertex 0.0305 0.0115 -0.0132 +vertex 0.0305 0.0095 -0.0138 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0095 -0.0238 +vertex 0.0305 0.0105 -0.0238 +vertex 0.0305 0.0095 -0.0222 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0095 -0.0213 +vertex 0.0305 0.0095 -0.0222 +vertex 0.0305 0.0095 -0.0213 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0095 -0.0248 +vertex 0.0305 0.0095 -0.0262 +vertex 0.0305 0.0105 -0.0262 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0095 -0.0238 +vertex 0.0305 0.0095 -0.0222 +vertex 0.0305 -0.0095 -0.0222 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0095 -0.0248 +vertex 0.0305 0.0095 -0.0262 +vertex 0.0305 0.0095 -0.0248 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0095 -0.0272 +vertex 0.0305 0.0095 -0.0288 +vertex 0.0305 0.0095 -0.0272 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0095 -0.0288 +vertex 0.0305 0.0095 -0.0298 +vertex 0.0305 0.0095 -0.0288 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0095 -0.0272 +vertex 0.0305 0.0095 -0.0262 +vertex 0.0305 -0.0095 -0.0262 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0095 -0.0288 +vertex 0.0305 0.0105 -0.0288 +vertex 0.0305 0.0095 -0.0272 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0095 -0.0248 +vertex 0.0305 0.0095 -0.0238 +vertex 0.0305 -0.0095 -0.0238 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0105 -0.0298 +vertex 0.0305 0.0095 -0.0298 +vertex 0.0305 0.0095 -0.0312 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0095 -0.0298 +vertex 0.0305 -0.0095 -0.0298 +vertex 0.0305 0.0095 -0.0312 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0120 0.0000 +vertex 0.0305 -0.0120 0.0000 +vertex 0.0305 0.0085 -0.0103 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0115 -0.0132 +vertex 0.0305 0.0105 -0.0298 +vertex 0.0305 0.0105 -0.0312 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0105 -0.0338 +vertex 0.0305 0.0115 -0.0132 +vertex 0.0305 0.0105 -0.0323 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0105 -0.0348 +vertex 0.0305 0.0120 -0.0610 +vertex 0.0305 0.0115 -0.0132 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0105 -0.0323 +vertex 0.0305 0.0095 -0.0323 +vertex 0.0305 0.0105 -0.0338 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0105 -0.0348 +vertex 0.0305 0.0115 -0.0132 +vertex 0.0305 0.0105 -0.0338 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0105 -0.0362 +vertex 0.0305 0.0105 -0.0372 +vertex 0.0305 0.0120 -0.0610 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0105 -0.0387 +vertex 0.0305 0.0105 -0.0398 +vertex 0.0305 0.0120 -0.0610 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0105 -0.0372 +vertex 0.0305 0.0095 -0.0372 +vertex 0.0305 0.0105 -0.0387 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0105 -0.0372 +vertex 0.0305 0.0105 -0.0387 +vertex 0.0305 0.0120 -0.0610 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0105 -0.0348 +vertex 0.0305 0.0095 -0.0348 +vertex 0.0305 0.0105 -0.0362 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0105 -0.0348 +vertex 0.0305 0.0105 -0.0362 +vertex 0.0305 0.0120 -0.0610 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0105 -0.0413 +vertex 0.0305 0.0105 -0.0423 +vertex 0.0305 0.0120 -0.0610 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0120 -0.0610 +vertex 0.0305 0.0105 -0.0438 +vertex 0.0305 0.0105 -0.0447 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0105 -0.0438 +vertex 0.0305 0.0120 -0.0610 +vertex 0.0305 0.0105 -0.0423 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0105 -0.0423 +vertex 0.0305 0.0095 -0.0423 +vertex 0.0305 0.0105 -0.0438 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0105 -0.0413 +vertex 0.0305 0.0120 -0.0610 +vertex 0.0305 0.0105 -0.0398 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0105 -0.0447 +vertex 0.0305 0.0105 -0.0462 +vertex 0.0305 0.0120 -0.0610 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0105 -0.0462 +vertex 0.0305 0.0105 -0.0447 +vertex 0.0305 0.0095 -0.0447 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0105 -0.0473 +vertex 0.0305 0.0105 -0.0488 +vertex 0.0305 0.0120 -0.0610 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0105 -0.0488 +vertex 0.0305 0.0105 -0.0473 +vertex 0.0305 0.0095 -0.0473 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0105 -0.0462 +vertex 0.0305 0.0105 -0.0473 +vertex 0.0305 0.0120 -0.0610 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0120 -0.0610 +vertex 0.0305 0.0105 -0.0488 +vertex 0.0305 0.0105 -0.0498 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0105 -0.0398 +vertex 0.0305 0.0095 -0.0398 +vertex 0.0305 0.0105 -0.0413 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0105 -0.0323 +vertex 0.0305 0.0115 -0.0132 +vertex 0.0305 0.0105 -0.0312 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0095 -0.0338 +vertex 0.0305 0.0105 -0.0338 +vertex 0.0305 0.0095 -0.0323 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0095 -0.0312 +vertex 0.0305 0.0095 -0.0323 +vertex 0.0305 0.0095 -0.0312 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0095 -0.0362 +vertex 0.0305 0.0105 -0.0362 +vertex 0.0305 0.0095 -0.0348 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0095 -0.0338 +vertex 0.0305 0.0095 -0.0348 +vertex 0.0305 0.0095 -0.0338 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0095 -0.0338 +vertex 0.0305 0.0095 -0.0323 +vertex 0.0305 -0.0095 -0.0323 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0095 -0.0387 +vertex 0.0305 0.0105 -0.0387 +vertex 0.0305 0.0095 -0.0372 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0095 -0.0362 +vertex 0.0305 0.0095 -0.0372 +vertex 0.0305 0.0095 -0.0362 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0095 -0.0413 +vertex 0.0305 0.0105 -0.0413 +vertex 0.0305 0.0095 -0.0398 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0095 -0.0387 +vertex 0.0305 0.0095 -0.0398 +vertex 0.0305 0.0095 -0.0387 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0095 -0.0387 +vertex 0.0305 0.0095 -0.0372 +vertex 0.0305 -0.0095 -0.0372 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0095 -0.0362 +vertex 0.0305 0.0095 -0.0348 +vertex 0.0305 -0.0095 -0.0348 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0095 -0.0438 +vertex 0.0305 0.0105 -0.0438 +vertex 0.0305 0.0095 -0.0423 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0095 -0.0413 +vertex 0.0305 0.0095 -0.0423 +vertex 0.0305 0.0095 -0.0413 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0095 -0.0447 +vertex 0.0305 0.0095 -0.0462 +vertex 0.0305 0.0105 -0.0462 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0095 -0.0438 +vertex 0.0305 0.0095 -0.0423 +vertex 0.0305 -0.0095 -0.0423 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0085 -0.0478 +vertex 0.0305 0.0095 -0.0462 +vertex 0.0305 0.0095 -0.0447 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0085 -0.0478 +vertex 0.0305 0.0095 -0.0488 +vertex 0.0305 0.0095 -0.0473 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0085 -0.0478 +vertex 0.0305 0.0095 -0.0498 +vertex 0.0305 0.0095 -0.0488 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0095 -0.0473 +vertex 0.0305 0.0095 -0.0462 +vertex 0.0305 -0.0085 -0.0478 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0095 -0.0488 +vertex 0.0305 0.0105 -0.0488 +vertex 0.0305 0.0095 -0.0473 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0095 -0.0447 +vertex 0.0305 0.0095 -0.0438 +vertex 0.0305 -0.0085 -0.0478 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0105 -0.0498 +vertex 0.0305 0.0095 -0.0498 +vertex 0.0305 0.0120 -0.0610 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0095 -0.0413 +vertex 0.0305 0.0095 -0.0398 +vertex 0.0305 -0.0095 -0.0398 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0105 -0.0312 +vertex 0.0305 0.0105 -0.0298 +vertex 0.0305 0.0095 -0.0312 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0120 -0.0610 +vertex 0.0305 0.0095 -0.0498 +vertex 0.0305 -0.0085 -0.0508 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0095 -0.0173 +vertex 0.0305 0.0095 -0.0173 +vertex 0.0305 0.0085 -0.0132 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0095 -0.0138 +vertex 0.0305 0.0085 -0.0132 +vertex 0.0305 -0.0095 -0.0123 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0095 -0.0163 +vertex 0.0305 0.0085 -0.0132 +vertex 0.0305 -0.0095 -0.0148 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0095 -0.0123 +vertex 0.0305 -0.0105 -0.0123 +vertex 0.0305 -0.0095 -0.0138 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0095 -0.0148 +vertex 0.0305 0.0085 -0.0132 +vertex 0.0305 -0.0095 -0.0138 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0095 -0.0187 +vertex 0.0305 0.0095 -0.0187 +vertex 0.0305 -0.0095 -0.0173 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0095 -0.0213 +vertex 0.0305 0.0095 -0.0213 +vertex 0.0305 -0.0095 -0.0198 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0095 -0.0173 +vertex 0.0305 -0.0105 -0.0173 +vertex 0.0305 -0.0095 -0.0187 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0095 -0.0198 +vertex 0.0305 0.0095 -0.0198 +vertex 0.0305 -0.0095 -0.0187 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0095 -0.0148 +vertex 0.0305 -0.0105 -0.0148 +vertex 0.0305 -0.0095 -0.0163 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0095 -0.0173 +vertex 0.0305 0.0085 -0.0132 +vertex 0.0305 -0.0095 -0.0163 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0095 -0.0238 +vertex 0.0305 0.0095 -0.0238 +vertex 0.0305 -0.0095 -0.0222 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0095 -0.0262 +vertex 0.0305 0.0095 -0.0262 +vertex 0.0305 -0.0095 -0.0248 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0095 -0.0222 +vertex 0.0305 -0.0105 -0.0222 +vertex 0.0305 -0.0095 -0.0238 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0095 -0.0248 +vertex 0.0305 0.0095 -0.0248 +vertex 0.0305 -0.0095 -0.0238 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0095 -0.0288 +vertex 0.0305 0.0095 -0.0288 +vertex 0.0305 -0.0095 -0.0272 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0095 -0.0312 +vertex 0.0305 0.0095 -0.0312 +vertex 0.0305 -0.0095 -0.0298 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0095 -0.0272 +vertex 0.0305 -0.0105 -0.0272 +vertex 0.0305 -0.0095 -0.0288 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0095 -0.0298 +vertex 0.0305 0.0095 -0.0298 +vertex 0.0305 -0.0095 -0.0288 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0095 -0.0248 +vertex 0.0305 -0.0105 -0.0248 +vertex 0.0305 -0.0095 -0.0262 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0095 -0.0272 +vertex 0.0305 0.0095 -0.0272 +vertex 0.0305 -0.0095 -0.0262 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0095 -0.0198 +vertex 0.0305 -0.0105 -0.0198 +vertex 0.0305 -0.0095 -0.0213 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0095 -0.0222 +vertex 0.0305 0.0095 -0.0222 +vertex 0.0305 -0.0095 -0.0213 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0105 -0.0123 +vertex 0.0305 -0.0105 -0.0112 +vertex 0.0305 -0.0120 0.0000 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0105 -0.0148 +vertex 0.0305 -0.0105 -0.0138 +vertex 0.0305 -0.0120 0.0000 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0105 -0.0123 +vertex 0.0305 -0.0120 0.0000 +vertex 0.0305 -0.0105 -0.0138 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0105 -0.0123 +vertex 0.0305 -0.0105 -0.0138 +vertex 0.0305 -0.0095 -0.0138 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0105 -0.0163 +vertex 0.0305 -0.0120 0.0000 +vertex 0.0305 -0.0105 -0.0173 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0120 0.0000 +vertex 0.0305 -0.0105 -0.0163 +vertex 0.0305 -0.0105 -0.0148 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0105 -0.0173 +vertex 0.0305 -0.0105 -0.0187 +vertex 0.0305 -0.0095 -0.0187 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0105 -0.0187 +vertex 0.0305 -0.0105 -0.0173 +vertex 0.0305 -0.0120 0.0000 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0120 0.0000 +vertex 0.0305 -0.0105 -0.0198 +vertex 0.0305 -0.0105 -0.0187 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0105 -0.0112 +vertex 0.0305 -0.0095 -0.0112 +vertex 0.0305 -0.0120 0.0000 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0105 -0.0148 +vertex 0.0305 -0.0105 -0.0163 +vertex 0.0305 -0.0095 -0.0163 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0105 -0.0198 +vertex 0.0305 -0.0105 -0.0213 +vertex 0.0305 -0.0095 -0.0213 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0105 -0.0213 +vertex 0.0305 -0.0105 -0.0198 +vertex 0.0305 -0.0120 0.0000 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0105 -0.0222 +vertex 0.0305 -0.0105 -0.0238 +vertex 0.0305 -0.0095 -0.0238 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0105 -0.0238 +vertex 0.0305 -0.0105 -0.0222 +vertex 0.0305 -0.0120 0.0000 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0105 -0.0213 +vertex 0.0305 -0.0120 0.0000 +vertex 0.0305 -0.0105 -0.0222 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0105 -0.0248 +vertex 0.0305 -0.0105 -0.0262 +vertex 0.0305 -0.0095 -0.0262 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0105 -0.0262 +vertex 0.0305 -0.0105 -0.0248 +vertex 0.0305 -0.0120 0.0000 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0105 -0.0272 +vertex 0.0305 -0.0105 -0.0288 +vertex 0.0305 -0.0095 -0.0288 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0115 -0.0478 +vertex 0.0305 -0.0105 -0.0288 +vertex 0.0305 -0.0105 -0.0272 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0115 -0.0478 +vertex 0.0305 -0.0105 -0.0298 +vertex 0.0305 -0.0105 -0.0288 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0105 -0.0272 +vertex 0.0305 -0.0105 -0.0262 +vertex 0.0305 -0.0115 -0.0478 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0105 -0.0238 +vertex 0.0305 -0.0120 0.0000 +vertex 0.0305 -0.0105 -0.0248 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0120 0.0000 +vertex 0.0305 -0.0115 -0.0478 +vertex 0.0305 -0.0105 -0.0262 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0095 -0.0112 +vertex 0.0305 0.0085 -0.0103 +vertex 0.0305 -0.0120 0.0000 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0095 -0.0298 +vertex 0.0305 -0.0105 -0.0298 +vertex 0.0305 -0.0105 -0.0312 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0095 -0.0338 +vertex 0.0305 0.0095 -0.0338 +vertex 0.0305 -0.0095 -0.0323 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0095 -0.0362 +vertex 0.0305 0.0095 -0.0362 +vertex 0.0305 -0.0095 -0.0348 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0095 -0.0323 +vertex 0.0305 -0.0105 -0.0323 +vertex 0.0305 -0.0095 -0.0338 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0095 -0.0348 +vertex 0.0305 0.0095 -0.0348 +vertex 0.0305 -0.0095 -0.0338 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0095 -0.0387 +vertex 0.0305 0.0095 -0.0387 +vertex 0.0305 -0.0095 -0.0372 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0095 -0.0413 +vertex 0.0305 0.0095 -0.0413 +vertex 0.0305 -0.0095 -0.0398 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0095 -0.0372 +vertex 0.0305 -0.0105 -0.0372 +vertex 0.0305 -0.0095 -0.0387 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0095 -0.0398 +vertex 0.0305 0.0095 -0.0398 +vertex 0.0305 -0.0095 -0.0387 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0095 -0.0348 +vertex 0.0305 -0.0105 -0.0348 +vertex 0.0305 -0.0095 -0.0362 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0095 -0.0372 +vertex 0.0305 0.0095 -0.0372 +vertex 0.0305 -0.0095 -0.0362 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0095 -0.0438 +vertex 0.0305 0.0095 -0.0438 +vertex 0.0305 -0.0095 -0.0423 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0085 -0.0478 +vertex 0.0305 -0.0085 -0.0508 +vertex 0.0305 0.0095 -0.0498 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0115 -0.0478 +vertex 0.0305 -0.0085 -0.0478 +vertex 0.0305 -0.0095 -0.0473 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0095 -0.0438 +vertex 0.0305 -0.0095 -0.0438 +vertex 0.0305 -0.0085 -0.0478 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0095 -0.0423 +vertex 0.0305 -0.0095 -0.0413 +vertex 0.0305 -0.0095 -0.0423 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0095 -0.0438 +vertex 0.0305 -0.0095 -0.0447 +vertex 0.0305 -0.0085 -0.0478 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0095 -0.0462 +vertex 0.0305 -0.0095 -0.0473 +vertex 0.0305 -0.0085 -0.0478 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0095 -0.0447 +vertex 0.0305 -0.0105 -0.0447 +vertex 0.0305 -0.0095 -0.0462 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0095 -0.0447 +vertex 0.0305 -0.0095 -0.0462 +vertex 0.0305 -0.0085 -0.0478 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0095 -0.0423 +vertex 0.0305 -0.0105 -0.0423 +vertex 0.0305 -0.0095 -0.0438 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0095 -0.0473 +vertex 0.0305 -0.0105 -0.0473 +vertex 0.0305 -0.0115 -0.0478 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0095 -0.0398 +vertex 0.0305 -0.0105 -0.0398 +vertex 0.0305 -0.0095 -0.0413 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0095 -0.0323 +vertex 0.0305 -0.0095 -0.0312 +vertex 0.0305 -0.0095 -0.0323 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0105 -0.0323 +vertex 0.0305 -0.0105 -0.0312 +vertex 0.0305 -0.0115 -0.0478 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0105 -0.0348 +vertex 0.0305 -0.0105 -0.0338 +vertex 0.0305 -0.0115 -0.0478 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0105 -0.0323 +vertex 0.0305 -0.0115 -0.0478 +vertex 0.0305 -0.0105 -0.0338 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0105 -0.0323 +vertex 0.0305 -0.0105 -0.0338 +vertex 0.0305 -0.0095 -0.0338 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0105 -0.0372 +vertex 0.0305 -0.0105 -0.0362 +vertex 0.0305 -0.0115 -0.0478 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0105 -0.0398 +vertex 0.0305 -0.0105 -0.0387 +vertex 0.0305 -0.0115 -0.0478 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0105 -0.0372 +vertex 0.0305 -0.0115 -0.0478 +vertex 0.0305 -0.0105 -0.0387 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0105 -0.0372 +vertex 0.0305 -0.0105 -0.0387 +vertex 0.0305 -0.0095 -0.0387 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0105 -0.0348 +vertex 0.0305 -0.0115 -0.0478 +vertex 0.0305 -0.0105 -0.0362 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0105 -0.0348 +vertex 0.0305 -0.0105 -0.0362 +vertex 0.0305 -0.0095 -0.0362 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0105 -0.0423 +vertex 0.0305 -0.0105 -0.0413 +vertex 0.0305 -0.0115 -0.0478 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0105 -0.0447 +vertex 0.0305 -0.0105 -0.0438 +vertex 0.0305 -0.0115 -0.0478 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0105 -0.0423 +vertex 0.0305 -0.0115 -0.0478 +vertex 0.0305 -0.0105 -0.0438 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0105 -0.0423 +vertex 0.0305 -0.0105 -0.0438 +vertex 0.0305 -0.0095 -0.0438 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0105 -0.0473 +vertex 0.0305 -0.0105 -0.0462 +vertex 0.0305 -0.0115 -0.0478 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0115 -0.0478 +vertex 0.0305 -0.0120 -0.0610 +vertex 0.0305 -0.0115 -0.0508 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0120 -0.0610 +vertex 0.0305 -0.0115 -0.0478 +vertex 0.0305 -0.0120 0.0000 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0120 -0.0610 +vertex 0.0305 -0.0085 -0.0508 +vertex 0.0305 -0.0115 -0.0508 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0105 -0.0462 +vertex 0.0305 -0.0105 -0.0447 +vertex 0.0305 -0.0115 -0.0478 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0105 -0.0413 +vertex 0.0305 -0.0105 -0.0398 +vertex 0.0305 -0.0115 -0.0478 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0105 -0.0447 +vertex 0.0305 -0.0105 -0.0462 +vertex 0.0305 -0.0095 -0.0462 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0105 -0.0312 +vertex 0.0305 -0.0105 -0.0298 +vertex 0.0305 -0.0115 -0.0478 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0105 -0.0398 +vertex 0.0305 -0.0105 -0.0413 +vertex 0.0305 -0.0095 -0.0413 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0095 -0.0312 +vertex 0.0305 -0.0095 -0.0298 +vertex 0.0305 -0.0105 -0.0312 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0085 -0.0508 +vertex 0.0305 -0.0120 -0.0610 +vertex 0.0305 0.0120 -0.0610 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0095 -0.0123 +vertex 0.0305 0.0085 -0.0132 +vertex 0.0305 -0.0095 -0.0112 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0120 0.0000 +vertex 0.0155 -0.0120 -0.0380 +vertex 0.0305 -0.0120 -0.0610 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0155 -0.0120 -0.0380 +vertex 0.0305 -0.0120 0.0000 +vertex -0.0295 -0.0120 0.0000 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0120 -0.0610 +vertex 0.0155 -0.0120 -0.0510 +vertex -0.0145 -0.0120 -0.0510 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0155 -0.0120 -0.0510 +vertex 0.0305 -0.0120 -0.0610 +vertex 0.0155 -0.0120 -0.0380 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0145 -0.0120 -0.0380 +vertex -0.0295 -0.0120 0.0000 +vertex -0.0295 -0.0120 -0.0610 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0120 0.0000 +vertex -0.0145 -0.0120 -0.0380 +vertex 0.0155 -0.0120 -0.0380 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0145 -0.0120 -0.0510 +vertex -0.0295 -0.0120 -0.0610 +vertex 0.0305 -0.0120 -0.0610 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0120 -0.0610 +vertex -0.0145 -0.0120 -0.0510 +vertex -0.0145 -0.0120 -0.0380 +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 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0120 -0.0070 +vertex 0.0305 0.0120 0.0000 +vertex 0.0305 -0.0120 0.0000 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0120 0.0000 +vertex 0.0305 -0.0120 -0.0070 +vertex 0.0305 0.0120 -0.0070 +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 +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 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0305 -0.0120 -0.0070 +vertex -0.0305 -0.0120 0.0000 +vertex -0.0305 0.0120 0.0000 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0305 0.0120 0.0000 +vertex -0.0305 0.0120 -0.0070 +vertex -0.0305 -0.0120 -0.0070 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0295 -0.0120 -0.0070 +vertex 0.0295 -0.0120 0.0000 +vertex -0.0305 -0.0120 0.0000 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0305 -0.0120 0.0000 +vertex -0.0305 -0.0120 -0.0070 +vertex 0.0295 -0.0120 -0.0070 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0195 -0.0120 -0.0000 +vertex -0.0295 -0.0120 0.0000 +vertex -0.0295 -0.0120 -0.0610 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0120 -0.0610 +vertex -0.0195 -0.0120 -0.0610 +vertex -0.0195 -0.0120 -0.0000 +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 +endsolid python diff --git a/rocolib/output/ServoMountAndStack/graph-silhouette.dxf b/rocolib/output/ServoMountAndStack/graph-silhouette.dxf new file mode 100644 index 0000000000000000000000000000000000000000..88a2003d7b09dfcf0bf09eeefb6644091fe75c89 --- /dev/null +++ b/rocolib/output/ServoMountAndStack/graph-silhouette.dxf @@ -0,0 +1,9948 @@ + 0 +SECTION + 2 +HEADER + 9 +$ACADVER + 1 +AC1009 + 9 +$INSBASE + 10 +0.0 + 20 +0.0 + 30 +0.0 + 9 +$EXTMIN + 10 +0.0 + 20 +0.0 + 30 +0.0 + 9 +$EXTMAX + 10 +100.0 + 20 +100.0 + 30 +0.0 + 9 +$UNITMODE + 70 +0 + 9 +$AUNITS + 70 +0 + 9 +$ANGBASE + 50 +0.0 + 9 +$ANGDIR + 70 +0 + 0 +ENDSEC + 0 +SECTION + 2 +TABLES + 0 +TABLE + 2 +LTYPE + 70 +20 + 0 +LTYPE + 2 +CONTINUOUS + 70 +0 + 3 +Solid + 72 +65 + 73 +0 + 40 +0.0 + 0 +LTYPE + 2 +CENTER + 70 +0 + 3 +Center ____ _ ____ _ ____ _ ____ _ ____ _ ____ + 72 +65 + 73 +4 + 40 +2.0 + 49 +1.25 + 49 +-0.25 + 49 +0.25 + 49 +-0.25 + 0 +LTYPE + 2 +CENTERX2 + 70 +0 + 3 +Center (2x) ________ __ ________ __ ________ + 72 +65 + 73 +4 + 40 +3.5 + 49 +2.5 + 49 +-0.25 + 49 +0.5 + 49 +-0.25 + 0 +LTYPE + 2 +CENTER2 + 70 +0 + 3 +Center (.5x) ____ _ ____ _ ____ _ ____ _ ____ + 72 +65 + 73 +4 + 40 +1.0 + 49 +0.625 + 49 +-0.125 + 49 +0.125 + 49 +-0.125 + 0 +LTYPE + 2 +DASHED + 70 +0 + 3 +Dashed __ __ __ __ __ __ __ __ __ __ __ __ __ _ + 72 +65 + 73 +2 + 40 +0.6 + 49 +0.5 + 49 +-0.1 + 0 +LTYPE + 2 +DASHEDX2 + 70 +0 + 3 +Dashed (2x) ____ ____ ____ ____ ____ ____ + 72 +65 + 73 +2 + 40 +1.2 + 49 +1.0 + 49 +-0.2 + 0 +LTYPE + 2 +DASHED2 + 70 +0 + 3 +Dashed (.5x) _ _ _ _ _ _ _ _ _ _ _ _ _ _ + 72 +65 + 73 +2 + 40 +0.3 + 49 +0.25 + 49 +-0.05 + 0 +LTYPE + 2 +PHANTOM + 70 +0 + 3 +Phantom ______ __ __ ______ __ __ ______ + 72 +65 + 73 +6 + 40 +2.5 + 49 +1.25 + 49 +-0.25 + 49 +0.25 + 49 +-0.25 + 49 +0.25 + 49 +-0.25 + 0 +LTYPE + 2 +PHANTOMX2 + 70 +0 + 3 +Phantom (2x)____________ ____ ____ ____________ + 72 +65 + 73 +6 + 40 +4.25 + 49 +2.5 + 49 +-0.25 + 49 +0.5 + 49 +-0.25 + 49 +0.5 + 49 +-0.25 + 0 +LTYPE + 2 +PHANTOM2 + 70 +0 + 3 +Phantom (.5x) ___ _ _ ___ _ _ ___ _ _ ___ _ _ ___ + 72 +65 + 73 +6 + 40 +1.25 + 49 +0.625 + 49 +-0.125 + 49 +0.125 + 49 +-0.125 + 49 +0.125 + 49 +-0.125 + 0 +LTYPE + 2 +DASHDOT + 70 +0 + 3 +Dash dot __ . __ . __ . __ . __ . __ . __ . __ + 72 +65 + 73 +4 + 40 +1.4 + 49 +1.0 + 49 +-0.2 + 49 +0.0 + 49 +-0.2 + 0 +LTYPE + 2 +DASHDOTX2 + 70 +0 + 3 +Dash dot (2x) ____ . ____ . ____ . ____ + 72 +65 + 73 +4 + 40 +2.4 + 49 +2.0 + 49 +-0.2 + 49 +0.0 + 49 +-0.2 + 0 +LTYPE + 2 +DASHDOT2 + 70 +0 + 3 +Dash dot (.5x) _ . _ . _ . _ . _ . _ . _ . _ + 72 +65 + 73 +4 + 40 +0.7 + 49 +0.5 + 49 +-0.1 + 49 +0.0 + 49 +-0.1 + 0 +LTYPE + 2 +DOT + 70 +0 + 3 +Dot . . . . . . . . . . . . . . . . + 72 +65 + 73 +2 + 40 +0.2 + 49 +0.0 + 49 +-0.2 + 0 +LTYPE + 2 +DOTX2 + 70 +0 + 3 +Dot (2x) . . . . . . . . + 72 +65 + 73 +2 + 40 +0.4 + 49 +0.0 + 49 +-0.4 + 0 +LTYPE + 2 +DOT2 + 70 +0 + 3 +Dot (.5) . . . . . . . . . . . . . . . . . . . + 72 +65 + 73 +2 + 40 +0.1 + 49 +0.0 + 49 +-0.1 + 0 +LTYPE + 2 +DIVIDE + 70 +0 + 3 +Divide __ . . __ . . __ . . __ . . __ . . __ + 72 +65 + 73 +6 + 40 +1.6 + 49 +1.0 + 49 +-0.2 + 49 +0.0 + 49 +-0.2 + 49 +0.0 + 49 +-0.2 + 0 +LTYPE + 2 +DIVIDEX2 + 70 +0 + 3 +Divide (2x) ____ . . ____ . . ____ . . ____ + 72 +65 + 73 +6 + 40 +2.6 + 49 +2.0 + 49 +-0.2 + 49 +0.0 + 49 +-0.2 + 49 +0.0 + 49 +-0.2 + 0 +LTYPE + 2 +DIVIDE2 + 70 +0 + 3 +Divide(.5x) _ . _ . _ . _ . _ . _ . _ . _ + 72 +65 + 73 +6 + 40 +0.8 + 49 +0.5 + 49 +-0.1 + 49 +0.0 + 49 +-0.1 + 49 +0.0 + 49 +-0.1 + 0 +LTYPE + 2 +DOTTED + 70 +0 + 3 + + 72 +65 + 73 +2 + 40 +1.0 + 49 +0.0 + 49 +-1.0 + 0 +ENDTAB + 0 +TABLE + 2 +LAYER + 70 +5 + 0 +LAYER + 2 +DIMENSIONS + 70 +0 + 62 +1 + 6 +CONTINUOUS + 0 +LAYER + 2 +TABLEBACKGROUND + 70 +0 + 62 +1 + 6 +CONTINUOUS + 0 +LAYER + 2 +TABLECONTENT + 70 +0 + 62 +1 + 6 +CONTINUOUS + 0 +LAYER + 2 +TABLEGRID + 70 +0 + 62 +1 + 6 +CONTINUOUS + 0 +LAYER + 2 +VIEWPORTS + 70 +0 + 62 +7 + 6 +CONTINUOUS + 0 +ENDTAB + 0 +TABLE + 2 +STYLE + 70 +12 + 0 +STYLE + 2 +STANDARD + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +arial.ttf + 4 + + 0 +STYLE + 2 +ARIAL + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +arial.ttf + 4 + + 0 +STYLE + 2 +ARIAL_BOLD + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +arialbd.ttf + 4 + + 0 +STYLE + 2 +ARIAL_ITALIC + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +ariali.ttf + 4 + + 0 +STYLE + 2 +ARIAL_BOLD_ITALIC + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +arialbi.ttf + 4 + + 0 +STYLE + 2 +ARIAL_BLACK + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +ariblk.ttf + 4 + + 0 +STYLE + 2 +ISOCPEUR + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +isocpeur.ttf + 4 + + 0 +STYLE + 2 +ISOCPEUR_ITALIC + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +isocpeui.ttf + 4 + + 0 +STYLE + 2 +TIMES + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +times.ttf + 4 + + 0 +STYLE + 2 +TIMES_BOLD + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +timesbd.ttf + 4 + + 0 +STYLE + 2 +TIMES_ITALIC + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +timesi.ttf + 4 + + 0 +STYLE + 2 +TIMES_BOLD_ITALIC + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +timesbi.ttf + 4 + + 0 +ENDTAB + 0 +TABLE + 2 +VIEW + 70 +0 + 0 +ENDTAB + 0 +TABLE + 2 +APPID + 70 +1 + 0 +APPID + 2 +DXFWRITE + 70 +0 + 0 +ENDTAB + 0 +TABLE + 2 +VPORT + 70 +0 + 0 +ENDTAB + 0 +TABLE + 2 +UCS + 70 +0 + 0 +ENDTAB + 0 +ENDSEC + 0 +SECTION + 2 +BLOCKS + 0 +ENDSEC + 0 +SECTION + 2 +ENTITIES + 0 +VIEWPORT + 8 +VIEWPORTS + 67 +1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +1.0 + 41 +1.0 + 68 +1 + 69 +1 +1001 +ACAD +1000 +MVIEW +1002 +{ +1070 +16 +1010 +0.0 +1020 +0.0 +1030 +0.0 +1010 +0.0 +1020 +0.0 +1030 +0.0 +1040 +0.0 +1040 +1.0 +1040 +0.0 +1040 +0.0 +1040 +50.0 +1040 +0.0 +1040 +0.0 +1070 +0 +1070 +100 +1070 +1 +1070 +3 +1070 +0 +1070 +0 +1070 +0 +1070 +0 +1040 +0.0 +1040 +0.0 +1040 +0.0 +1040 +0.1 +1040 +0.1 +1040 +0.1 +1040 +0.1 +1070 +0 +1002 +{ +1002 +} +1002 +} + 0 +LINE + 62 +5 + 8 +0 + 10 +70.00000000000001 + 20 +74.0 + 30 +0.0 + 11 +34.0 + 21 +74.0 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +3 + 8 +0 + 10 +70.00000000000001 + 20 +74.0 + 30 +0.0 + 11 +70.00000000000001 + 21 +98.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +34.0 + 20 +98.00000000000001 + 30 +0.0 + 11 +70.00000000000001 + 21 +98.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +70.00000000000001 + 20 +98.00000000000001 + 30 +0.0 + 11 +115.00000000000001 + 21 +98.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +115.00000000000001 + 20 +74.0 + 30 +0.0 + 11 +70.00000000000001 + 21 +74.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +120.00000000000001 + 20 +74.0 + 30 +0.0 + 11 +115.00000000000001 + 21 +74.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +120.00000000000001 + 20 +98.00000000000001 + 30 +0.0 + 11 +120.00000000000001 + 21 +74.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +115.00000000000001 + 20 +98.00000000000001 + 30 +0.0 + 11 +120.00000000000001 + 21 +98.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +0.0 + 20 +98.00000000000001 + 30 +0.0 + 11 +34.0 + 21 +98.00000000000001 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +34.0 + 20 +74.0 + 30 +0.0 + 11 +0.0 + 21 +74.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +0.0 + 20 +74.0 + 30 +0.0 + 11 +0.0 + 21 +1.0000000000000002 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +0.0 + 20 +108.00000000000001 + 30 +0.0 + 11 +0.0 + 21 +98.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +0.0 + 20 +169.00000000000003 + 30 +0.0 + 11 +0.0 + 21 +169.00000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +0.0 + 20 +1.0000000000000002 + 30 +0.0 + 11 +0.0 + 21 +169.00000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +0.0 + 20 +1.0000000000000002 + 30 +0.0 + 11 +0.0 + 21 +1.0000000000000002 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +36.138621999185304 + 20 +108.00000000000001 + 30 +0.0 + 11 +36.138621999185304 + 21 +169.00000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +0.0 + 20 +169.00000000000003 + 30 +0.0 + 11 +36.138621999185304 + 21 +169.00000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +36.138621999185304 + 20 +108.00000000000001 + 30 +0.0 + 11 +0.0 + 21 +108.00000000000001 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +60.13862199918531 + 20 +169.00000000000003 + 30 +0.0 + 11 +60.13862199918531 + 21 +108.00000000000001 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +60.13862199918531 + 20 +169.00000000000003 + 30 +0.0 + 11 +36.138621999185304 + 21 +169.00000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +96.27724399837062 + 20 +108.00000000000001 + 30 +0.0 + 11 +60.13862199918531 + 21 +108.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +60.13862199918531 + 20 +169.00000000000003 + 30 +0.0 + 11 +96.27724399837062 + 21 +169.00000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +106.27724399837062 + 20 +108.00000000000001 + 30 +0.0 + 11 +96.27724399837062 + 21 +108.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +106.27724399837062 + 20 +169.00000000000003 + 30 +0.0 + 11 +106.27724399837062 + 21 +108.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +96.27724399837062 + 20 +169.00000000000003 + 30 +0.0 + 11 +106.27724399837062 + 21 +169.00000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +60.13862199918531 + 20 +179.00000000000003 + 30 +0.0 + 11 +60.13862199918531 + 21 +169.00000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +36.138621999185304 + 20 +179.00000000000003 + 30 +0.0 + 11 +60.13862199918531 + 21 +179.00000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +36.138621999185304 + 20 +169.00000000000003 + 30 +0.0 + 11 +36.138621999185304 + 21 +179.00000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +36.138621999185304 + 20 +98.00000000000001 + 30 +0.0 + 11 +36.138621999185304 + 21 +108.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +60.13862199918531 + 20 +98.00000000000001 + 30 +0.0 + 11 +36.138621999185304 + 21 +98.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +60.13862199918531 + 20 +108.00000000000001 + 30 +0.0 + 11 +60.13862199918531 + 21 +98.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +34.0 + 20 +74.0 + 30 +0.0 + 11 +34.0 + 21 +54.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +0.0 + 20 +54.00000000000001 + 30 +0.0 + 11 +0.0 + 21 +74.0 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +34.0 + 20 +54.00000000000001 + 30 +0.0 + 11 +0.0 + 21 +54.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +34.0 + 20 +54.00000000000001 + 30 +0.0 + 11 +34.0 + 21 +30.000000000000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +0.0 + 20 +30.000000000000004 + 30 +0.0 + 11 +0.0 + 21 +54.00000000000001 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +34.0 + 20 +30.000000000000004 + 30 +0.0 + 11 +0.0 + 21 +30.000000000000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +34.0 + 20 +30.000000000000004 + 30 +0.0 + 11 +34.0 + 21 +10.000000000000002 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +0.0 + 20 +10.000000000000002 + 30 +0.0 + 11 +0.0 + 21 +30.000000000000004 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +0.0 + 20 +10.000000000000002 + 30 +0.0 + 11 +34.0 + 21 +10.000000000000002 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 11 +0.0 + 21 +10.000000000000002 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +34.0 + 20 +0.0 + 30 +0.0 + 11 +0.0 + 21 +0.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +34.0 + 20 +10.000000000000002 + 30 +0.0 + 11 +34.0 + 21 +0.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +118.75000000000001 + 20 +90.0 + 30 +0.0 + 11 +118.75000000000001 + 21 +92.50000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +118.75000000000001 + 20 +92.50000000000001 + 30 +0.0 + 11 +116.25000000000001 + 21 +90.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +116.25000000000001 + 20 +90.0 + 30 +0.0 + 11 +116.25000000000001 + 21 +82.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +116.25000000000001 + 20 +82.0 + 30 +0.0 + 11 +118.75000000000001 + 21 +79.5 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +118.75000000000001 + 20 +79.5 + 30 +0.0 + 11 +118.75000000000001 + 21 +82.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +11.08333333333333 + 20 +90.25000000000001 + 30 +0.0 + 11 +22.916666666666668 + 21 +90.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +22.916666666666668 + 20 +90.25000000000001 + 30 +0.0 + 11 +22.916666666666668 + 21 +90.75000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +22.916666666666668 + 20 +90.75000000000001 + 30 +0.0 + 11 +11.08333333333333 + 21 +90.75000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +11.08333333333333 + 20 +90.75000000000001 + 30 +0.0 + 11 +11.08333333333333 + 21 +90.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +54.63862199918531 + 20 +126.00000000000001 + 30 +0.0 + 11 +54.63862199918531 + 21 +137.00000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +54.63862199918531 + 20 +137.00000000000003 + 30 +0.0 + 11 +41.63862199918531 + 21 +137.00000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +41.63862199918531 + 20 +137.00000000000003 + 30 +0.0 + 11 +41.63862199918531 + 21 +126.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +41.63862199918531 + 20 +126.00000000000001 + 30 +0.0 + 11 +54.63862199918531 + 21 +126.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +53.13862199918531 + 20 +157.50000000000003 + 30 +0.0 + 11 +53.13862199918531 + 21 +163.5 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +53.13862199918531 + 20 +163.5 + 30 +0.0 + 11 +43.13862199918531 + 21 +163.5 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +43.13862199918531 + 20 +163.5 + 30 +0.0 + 11 +43.13862199918531 + 21 +157.50000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +43.13862199918531 + 20 +157.50000000000003 + 30 +0.0 + 11 +53.13862199918531 + 21 +157.50000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +103.77724399837062 + 20 +157.9090909090909 + 30 +0.0 + 11 +98.77724399837062 + 21 +157.9090909090909 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +98.77724399837062 + 20 +157.9090909090909 + 30 +0.0 + 11 +98.77724399837062 + 21 +146.81818181818184 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +98.77724399837062 + 20 +146.81818181818184 + 30 +0.0 + 11 +103.77724399837062 + 21 +146.81818181818184 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +103.77724399837062 + 20 +130.18181818181822 + 30 +0.0 + 11 +98.77724399837062 + 21 +130.18181818181822 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +98.77724399837062 + 20 +130.18181818181822 + 30 +0.0 + 11 +98.77724399837062 + 21 +119.09090909090911 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +98.77724399837062 + 20 +119.09090909090911 + 30 +0.0 + 11 +103.77724399837062 + 21 +119.09090909090911 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +44.138621999185304 + 20 +176.50000000000003 + 30 +0.0 + 11 +44.138621999185304 + 21 +171.50000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +44.138621999185304 + 20 +171.50000000000003 + 30 +0.0 + 11 +52.13862199918531 + 21 +171.50000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +52.13862199918531 + 20 +171.50000000000003 + 30 +0.0 + 11 +52.13862199918531 + 21 +176.50000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +52.13862199918531 + 20 +100.50000000000001 + 30 +0.0 + 11 +52.13862199918531 + 21 +105.50000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +52.13862199918531 + 20 +105.50000000000001 + 30 +0.0 + 11 +44.138621999185304 + 21 +105.50000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +44.138621999185304 + 20 +105.50000000000001 + 30 +0.0 + 11 +44.138621999185304 + 21 +100.50000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +23.000000000000004 + 20 +55.00000000000001 + 30 +0.0 + 11 +23.000000000000004 + 21 +59.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +23.000000000000004 + 20 +59.00000000000001 + 30 +0.0 + 11 +11.000000000000002 + 21 +59.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +11.000000000000002 + 20 +59.00000000000001 + 30 +0.0 + 11 +11.000000000000002 + 21 +55.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +11.000000000000002 + 20 +55.00000000000001 + 30 +0.0 + 11 +23.000000000000004 + 21 +55.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +21.500000000000004 + 20 +67.00000000000001 + 30 +0.0 + 11 +21.500000000000004 + 21 +71.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +21.500000000000004 + 20 +71.00000000000001 + 30 +0.0 + 11 +12.5 + 21 +71.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +12.5 + 20 +71.00000000000001 + 30 +0.0 + 11 +12.5 + 21 +67.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +12.5 + 20 +67.00000000000001 + 30 +0.0 + 11 +21.500000000000004 + 21 +67.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +23.000000000000004 + 20 +30.500000000000004 + 30 +0.0 + 11 +23.000000000000004 + 21 +53.5 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +23.000000000000004 + 20 +53.5 + 30 +0.0 + 11 +11.000000000000002 + 21 +53.5 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +11.000000000000002 + 20 +53.5 + 30 +0.0 + 11 +11.000000000000002 + 21 +30.500000000000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +11.000000000000002 + 20 +30.500000000000004 + 30 +0.0 + 11 +23.000000000000004 + 21 +30.500000000000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +23.000000000000004 + 20 +25.0 + 30 +0.0 + 11 +23.000000000000004 + 21 +29.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +23.000000000000004 + 20 +29.0 + 30 +0.0 + 11 +11.000000000000002 + 21 +29.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +11.000000000000002 + 20 +29.0 + 30 +0.0 + 11 +11.000000000000002 + 21 +25.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +11.000000000000002 + 20 +25.0 + 30 +0.0 + 11 +23.000000000000004 + 21 +25.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +22.666666666666668 + 20 +2.5000000000000004 + 30 +0.0 + 11 +22.666666666666668 + 21 +7.500000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +22.666666666666668 + 20 +7.500000000000001 + 30 +0.0 + 11 +11.33333333333333 + 21 +7.500000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +11.33333333333333 + 20 +7.500000000000001 + 30 +0.0 + 11 +11.33333333333333 + 21 +2.5000000000000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +200.0 + 20 +74.0 + 30 +0.0 + 11 +164.0 + 21 +74.0 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +3 + 8 +0 + 10 +200.0 + 20 +74.0 + 30 +0.0 + 11 +200.0 + 21 +98.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +164.0 + 20 +98.00000000000001 + 30 +0.0 + 11 +200.0 + 21 +98.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +200.0 + 20 +98.00000000000001 + 30 +0.0 + 11 +245.00000000000003 + 21 +98.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +245.00000000000003 + 20 +74.0 + 30 +0.0 + 11 +200.0 + 21 +74.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +245.00000000000003 + 20 +98.00000000000001 + 30 +0.0 + 11 +245.00000000000003 + 21 +74.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +164.0 + 20 +74.0 + 30 +0.0 + 11 +130.0 + 21 +74.0 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +130.0 + 20 +98.00000000000001 + 30 +0.0 + 11 +164.0 + 21 +98.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +130.0 + 20 +64.00000000000001 + 30 +0.0 + 11 +130.0 + 21 +3.0000000000000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +130.0 + 20 +74.0 + 30 +0.0 + 11 +130.0 + 21 +64.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +130.0 + 20 +171.00000000000003 + 30 +0.0 + 11 +130.0 + 21 +98.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +130.0 + 20 +171.00000000000003 + 30 +0.0 + 11 +130.0 + 21 +171.00000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +130.0 + 20 +3.0000000000000004 + 30 +0.0 + 11 +130.0 + 21 +171.00000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +130.0 + 20 +3.0000000000000004 + 30 +0.0 + 11 +130.0 + 21 +3.0000000000000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +130.0 + 20 +98.00000000000001 + 30 +0.0 + 11 +130.0 + 21 +118.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +164.0 + 20 +118.00000000000001 + 30 +0.0 + 11 +164.0 + 21 +98.00000000000001 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +130.0 + 20 +118.00000000000001 + 30 +0.0 + 11 +164.0 + 21 +118.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +130.0 + 20 +118.00000000000001 + 30 +0.0 + 11 +130.0 + 21 +142.00000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +164.0 + 20 +142.00000000000003 + 30 +0.0 + 11 +164.0 + 21 +118.00000000000001 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +130.0 + 20 +142.00000000000003 + 30 +0.0 + 11 +164.0 + 21 +142.00000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +130.0 + 20 +142.00000000000003 + 30 +0.0 + 11 +130.0 + 21 +162.00000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +164.0 + 20 +162.00000000000003 + 30 +0.0 + 11 +164.0 + 21 +142.00000000000003 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +164.0 + 20 +162.00000000000003 + 30 +0.0 + 11 +130.0 + 21 +162.00000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +164.0 + 20 +172.00000000000003 + 30 +0.0 + 11 +164.0 + 21 +162.00000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +130.0 + 20 +172.00000000000003 + 30 +0.0 + 11 +164.0 + 21 +172.00000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +130.0 + 20 +162.00000000000003 + 30 +0.0 + 11 +130.0 + 21 +172.00000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +241.00000000000003 + 20 +90.25000000000001 + 30 +0.0 + 11 +241.00000000000003 + 21 +81.75 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +241.00000000000003 + 20 +81.75 + 30 +0.0 + 11 +241.50000000000003 + 21 +81.75 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +241.50000000000003 + 20 +81.75 + 30 +0.0 + 11 +241.50000000000003 + 21 +90.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +241.50000000000003 + 20 +90.25000000000001 + 30 +0.0 + 11 +241.00000000000003 + 21 +90.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +152.91666666666669 + 20 +81.75 + 30 +0.0 + 11 +141.08333333333334 + 21 +81.75 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +141.08333333333334 + 20 +81.75 + 30 +0.0 + 11 +141.08333333333334 + 21 +81.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +141.08333333333334 + 20 +81.25000000000001 + 30 +0.0 + 11 +152.91666666666669 + 21 +81.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +152.91666666666669 + 20 +81.25000000000001 + 30 +0.0 + 11 +152.91666666666669 + 21 +81.75 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +122.25000000000001 + 20 +25.43181818181819 + 30 +0.0 + 11 +122.25000000000001 + 21 +13.840909090909095 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +122.25000000000001 + 20 +13.840909090909095 + 30 +0.0 + 11 +122.75000000000001 + 21 +13.840909090909095 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +122.75000000000001 + 20 +13.840909090909095 + 30 +0.0 + 11 +122.75000000000001 + 21 +25.43181818181819 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +122.75000000000001 + 20 +25.43181818181819 + 30 +0.0 + 11 +122.25000000000001 + 21 +25.43181818181819 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +122.25000000000001 + 20 +53.15909090909092 + 30 +0.0 + 11 +122.25000000000001 + 21 +41.568181818181834 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +122.25000000000001 + 20 +41.568181818181834 + 30 +0.0 + 11 +122.75000000000001 + 21 +41.568181818181834 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +122.75000000000001 + 20 +41.568181818181834 + 30 +0.0 + 11 +122.75000000000001 + 21 +53.15909090909092 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +122.75000000000001 + 20 +53.15909090909092 + 30 +0.0 + 11 +122.25000000000001 + 21 +53.15909090909092 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +141.0 + 20 +117.00000000000001 + 30 +0.0 + 11 +141.0 + 21 +113.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +141.0 + 20 +113.00000000000001 + 30 +0.0 + 11 +153.00000000000003 + 21 +113.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +153.00000000000003 + 20 +113.00000000000001 + 30 +0.0 + 11 +153.00000000000003 + 21 +117.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +153.00000000000003 + 20 +117.00000000000001 + 30 +0.0 + 11 +141.0 + 21 +117.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +142.50000000000003 + 20 +105.00000000000001 + 30 +0.0 + 11 +142.50000000000003 + 21 +101.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +142.50000000000003 + 20 +101.00000000000001 + 30 +0.0 + 11 +151.50000000000003 + 21 +101.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +151.50000000000003 + 20 +101.00000000000001 + 30 +0.0 + 11 +151.50000000000003 + 21 +105.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +151.50000000000003 + 20 +105.00000000000001 + 30 +0.0 + 11 +142.50000000000003 + 21 +105.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +141.0 + 20 +141.5 + 30 +0.0 + 11 +141.0 + 21 +118.50000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +141.0 + 20 +118.50000000000001 + 30 +0.0 + 11 +153.00000000000003 + 21 +118.50000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +153.00000000000003 + 20 +118.50000000000001 + 30 +0.0 + 11 +153.00000000000003 + 21 +141.5 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +153.00000000000003 + 20 +141.5 + 30 +0.0 + 11 +141.0 + 21 +141.5 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +141.0 + 20 +147.00000000000003 + 30 +0.0 + 11 +141.0 + 21 +143.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +141.0 + 20 +143.0 + 30 +0.0 + 11 +153.00000000000003 + 21 +143.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +153.00000000000003 + 20 +143.0 + 30 +0.0 + 11 +153.00000000000003 + 21 +147.00000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +153.00000000000003 + 20 +147.00000000000003 + 30 +0.0 + 11 +141.0 + 21 +147.00000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +141.33333333333334 + 20 +169.50000000000003 + 30 +0.0 + 11 +141.33333333333334 + 21 +164.50000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +141.33333333333334 + 20 +164.50000000000003 + 30 +0.0 + 11 +152.66666666666666 + 21 +164.50000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +152.66666666666666 + 20 +164.50000000000003 + 30 +0.0 + 11 +152.66666666666666 + 21 +169.50000000000003 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +288.00000000000006 + 20 +74.0 + 30 +0.0 + 11 +349.00000000000006 + 21 +74.0 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +349.00000000000006 + 20 +74.0 + 30 +0.0 + 11 +349.00000000000006 + 21 +98.00000000000001 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +349.00000000000006 + 20 +98.00000000000001 + 30 +0.0 + 11 +288.00000000000006 + 21 +98.00000000000001 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +288.00000000000006 + 20 +98.00000000000001 + 30 +0.0 + 11 +288.00000000000006 + 21 +74.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +288.00000000000006 + 20 +67.00000000000001 + 30 +0.0 + 11 +288.00000000000006 + 21 +74.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +348.00000000000006 + 20 +67.00000000000001 + 30 +0.0 + 11 +288.00000000000006 + 21 +67.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +348.00000000000006 + 20 +74.0 + 30 +0.0 + 11 +348.00000000000006 + 21 +67.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +356.00000000000006 + 20 +74.0 + 30 +0.0 + 11 +349.00000000000006 + 21 +74.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +356.00000000000006 + 20 +98.00000000000001 + 30 +0.0 + 11 +356.00000000000006 + 21 +74.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +349.00000000000006 + 20 +98.00000000000001 + 30 +0.0 + 11 +356.00000000000006 + 21 +98.00000000000001 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +349.00000000000006 + 20 +98.00000000000001 + 30 +0.0 + 11 +349.00000000000006 + 21 +159.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +289.00000000000006 + 20 +159.0 + 30 +0.0 + 11 +349.00000000000006 + 21 +159.0 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +289.00000000000006 + 20 +98.00000000000001 + 30 +0.0 + 11 +289.00000000000006 + 21 +159.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +373.0 + 20 +98.00000000000001 + 30 +0.0 + 11 +349.00000000000006 + 21 +98.00000000000001 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +373.0 + 20 +98.00000000000001 + 30 +0.0 + 11 +373.0 + 21 +159.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +349.00000000000006 + 20 +159.0 + 30 +0.0 + 11 +373.0 + 21 +159.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +433.00000000000006 + 20 +98.00000000000001 + 30 +0.0 + 11 +373.0 + 21 +98.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +433.00000000000006 + 20 +159.0 + 30 +0.0 + 11 +433.00000000000006 + 21 +98.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +373.0 + 20 +159.0 + 30 +0.0 + 11 +433.00000000000006 + 21 +159.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +289.00000000000006 + 20 +98.00000000000001 + 30 +0.0 + 11 +265.00000000000006 + 21 +98.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +265.00000000000006 + 20 +159.0 + 30 +0.0 + 11 +289.00000000000006 + 21 +159.0 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +265.00000000000006 + 20 +159.0 + 30 +0.0 + 11 +265.00000000000006 + 21 +98.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +255.00000000000003 + 20 +159.0 + 30 +0.0 + 11 +265.00000000000006 + 21 +159.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +255.00000000000003 + 20 +98.00000000000001 + 30 +0.0 + 11 +255.00000000000003 + 21 +159.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +265.00000000000006 + 20 +98.00000000000001 + 30 +0.0 + 11 +255.00000000000003 + 21 +98.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +281.00000000000006 + 20 +98.00000000000001 + 30 +0.0 + 11 +288.00000000000006 + 21 +98.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +281.00000000000006 + 20 +74.0 + 30 +0.0 + 11 +281.00000000000006 + 21 +98.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +288.00000000000006 + 20 +74.0 + 30 +0.0 + 11 +281.00000000000006 + 21 +74.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +337.0909090909092 + 20 +68.75000000000001 + 30 +0.0 + 11 +340.59090909090907 + 21 +68.75000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +340.59090909090907 + 20 +68.75000000000001 + 30 +0.0 + 11 +337.0909090909092 + 21 +72.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +337.0909090909092 + 20 +72.25000000000001 + 30 +0.0 + 11 +326.18181818181824 + 21 +72.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +326.18181818181824 + 20 +72.25000000000001 + 30 +0.0 + 11 +322.68181818181824 + 21 +68.75000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +322.68181818181824 + 20 +68.75000000000001 + 30 +0.0 + 11 +326.18181818181824 + 21 +68.75000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +309.81818181818187 + 20 +68.75000000000001 + 30 +0.0 + 11 +313.31818181818187 + 21 +68.75000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +313.31818181818187 + 20 +68.75000000000001 + 30 +0.0 + 11 +309.81818181818187 + 21 +72.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +309.81818181818187 + 20 +72.25000000000001 + 30 +0.0 + 11 +298.909090909091 + 21 +72.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +298.909090909091 + 20 +72.25000000000001 + 30 +0.0 + 11 +295.409090909091 + 21 +68.75000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +295.409090909091 + 20 +68.75000000000001 + 30 +0.0 + 11 +298.909090909091 + 21 +68.75000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +354.25000000000006 + 20 +90.0 + 30 +0.0 + 11 +350.75 + 21 +90.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +350.75 + 20 +90.0 + 30 +0.0 + 11 +350.75 + 21 +82.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +350.75 + 20 +82.0 + 30 +0.0 + 11 +354.25000000000006 + 21 +82.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +296.5 + 20 +149.50000000000003 + 30 +0.0 + 11 +296.5 + 21 +131.50000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +296.5 + 20 +131.50000000000003 + 30 +0.0 + 11 +331.5 + 21 +131.50000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +331.5 + 20 +131.50000000000003 + 30 +0.0 + 11 +331.5 + 21 +149.50000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +331.5 + 20 +149.50000000000003 + 30 +0.0 + 11 +296.5 + 21 +149.50000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +349.50000000000006 + 20 +111.25000000000001 + 30 +0.0 + 11 +349.50000000000006 + 21 +108.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +349.50000000000006 + 20 +108.25000000000001 + 30 +0.0 + 11 +352.50000000000006 + 21 +108.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +352.50000000000006 + 20 +108.25000000000001 + 30 +0.0 + 11 +352.50000000000006 + 21 +111.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +352.50000000000006 + 20 +111.25000000000001 + 30 +0.0 + 11 +349.50000000000006 + 21 +111.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +370.50000000000006 + 20 +110.25000000000001 + 30 +0.0 + 11 +370.50000000000006 + 21 +109.25 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +370.50000000000006 + 20 +109.25 + 30 +0.0 + 11 +371.50000000000006 + 21 +109.25 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +371.50000000000006 + 20 +109.25 + 30 +0.0 + 11 +371.50000000000006 + 21 +110.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +371.50000000000006 + 20 +110.25000000000001 + 30 +0.0 + 11 +370.50000000000006 + 21 +110.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +350.5 + 20 +112.75000000000001 + 30 +0.0 + 11 +350.5 + 21 +111.75000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +350.5 + 20 +111.75000000000001 + 30 +0.0 + 11 +351.50000000000006 + 21 +111.75000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +351.50000000000006 + 20 +111.75000000000001 + 30 +0.0 + 11 +351.50000000000006 + 21 +112.75000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +351.50000000000006 + 20 +112.75000000000001 + 30 +0.0 + 11 +350.5 + 21 +112.75000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +370.50000000000006 + 20 +112.75000000000001 + 30 +0.0 + 11 +370.50000000000006 + 21 +111.75000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +370.50000000000006 + 20 +111.75000000000001 + 30 +0.0 + 11 +371.50000000000006 + 21 +111.75000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +371.50000000000006 + 20 +111.75000000000001 + 30 +0.0 + 11 +371.50000000000006 + 21 +112.75000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +371.50000000000006 + 20 +112.75000000000001 + 30 +0.0 + 11 +370.50000000000006 + 21 +112.75000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +350.5 + 20 +115.25000000000001 + 30 +0.0 + 11 +350.5 + 21 +114.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +350.5 + 20 +114.25000000000001 + 30 +0.0 + 11 +351.50000000000006 + 21 +114.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +351.50000000000006 + 20 +114.25000000000001 + 30 +0.0 + 11 +351.50000000000006 + 21 +115.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +351.50000000000006 + 20 +115.25000000000001 + 30 +0.0 + 11 +350.5 + 21 +115.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +370.50000000000006 + 20 +115.25000000000001 + 30 +0.0 + 11 +370.50000000000006 + 21 +114.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +370.50000000000006 + 20 +114.25000000000001 + 30 +0.0 + 11 +371.50000000000006 + 21 +114.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +371.50000000000006 + 20 +114.25000000000001 + 30 +0.0 + 11 +371.50000000000006 + 21 +115.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +371.50000000000006 + 20 +115.25000000000001 + 30 +0.0 + 11 +370.50000000000006 + 21 +115.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +350.5 + 20 +117.75000000000001 + 30 +0.0 + 11 +350.5 + 21 +116.75000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +350.5 + 20 +116.75000000000001 + 30 +0.0 + 11 +351.50000000000006 + 21 +116.75000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +351.50000000000006 + 20 +116.75000000000001 + 30 +0.0 + 11 +351.50000000000006 + 21 +117.75000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +351.50000000000006 + 20 +117.75000000000001 + 30 +0.0 + 11 +350.5 + 21 +117.75000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +370.50000000000006 + 20 +117.75000000000001 + 30 +0.0 + 11 +370.50000000000006 + 21 +116.75000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +370.50000000000006 + 20 +116.75000000000001 + 30 +0.0 + 11 +371.50000000000006 + 21 +116.75000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +371.50000000000006 + 20 +116.75000000000001 + 30 +0.0 + 11 +371.50000000000006 + 21 +117.75000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +371.50000000000006 + 20 +117.75000000000001 + 30 +0.0 + 11 +370.50000000000006 + 21 +117.75000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +350.5 + 20 +120.25000000000001 + 30 +0.0 + 11 +350.5 + 21 +119.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +350.5 + 20 +119.25000000000001 + 30 +0.0 + 11 +351.50000000000006 + 21 +119.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +351.50000000000006 + 20 +119.25000000000001 + 30 +0.0 + 11 +351.50000000000006 + 21 +120.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +351.50000000000006 + 20 +120.25000000000001 + 30 +0.0 + 11 +350.5 + 21 +120.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +370.50000000000006 + 20 +120.25000000000001 + 30 +0.0 + 11 +370.50000000000006 + 21 +119.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +370.50000000000006 + 20 +119.25000000000001 + 30 +0.0 + 11 +371.50000000000006 + 21 +119.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +371.50000000000006 + 20 +119.25000000000001 + 30 +0.0 + 11 +371.50000000000006 + 21 +120.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +371.50000000000006 + 20 +120.25000000000001 + 30 +0.0 + 11 +370.50000000000006 + 21 +120.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +350.5 + 20 +122.75000000000001 + 30 +0.0 + 11 +350.5 + 21 +121.75000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +350.5 + 20 +121.75000000000001 + 30 +0.0 + 11 +351.50000000000006 + 21 +121.75000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +351.50000000000006 + 20 +121.75000000000001 + 30 +0.0 + 11 +351.50000000000006 + 21 +122.75000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +351.50000000000006 + 20 +122.75000000000001 + 30 +0.0 + 11 +350.5 + 21 +122.75000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +370.50000000000006 + 20 +122.75000000000001 + 30 +0.0 + 11 +370.50000000000006 + 21 +121.75000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +370.50000000000006 + 20 +121.75000000000001 + 30 +0.0 + 11 +371.50000000000006 + 21 +121.75000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +371.50000000000006 + 20 +121.75000000000001 + 30 +0.0 + 11 +371.50000000000006 + 21 +122.75000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +371.50000000000006 + 20 +122.75000000000001 + 30 +0.0 + 11 +370.50000000000006 + 21 +122.75000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +350.5 + 20 +125.25000000000001 + 30 +0.0 + 11 +350.5 + 21 +124.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +350.5 + 20 +124.25000000000001 + 30 +0.0 + 11 +351.50000000000006 + 21 +124.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +351.50000000000006 + 20 +124.25000000000001 + 30 +0.0 + 11 +351.50000000000006 + 21 +125.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +351.50000000000006 + 20 +125.25000000000001 + 30 +0.0 + 11 +350.5 + 21 +125.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +370.50000000000006 + 20 +125.25000000000001 + 30 +0.0 + 11 +370.50000000000006 + 21 +124.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +370.50000000000006 + 20 +124.25000000000001 + 30 +0.0 + 11 +371.50000000000006 + 21 +124.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +371.50000000000006 + 20 +124.25000000000001 + 30 +0.0 + 11 +371.50000000000006 + 21 +125.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +371.50000000000006 + 20 +125.25000000000001 + 30 +0.0 + 11 +370.50000000000006 + 21 +125.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +350.5 + 20 +127.75000000000001 + 30 +0.0 + 11 +350.5 + 21 +126.75000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +350.5 + 20 +126.75000000000001 + 30 +0.0 + 11 +351.50000000000006 + 21 +126.75000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +351.50000000000006 + 20 +126.75000000000001 + 30 +0.0 + 11 +351.50000000000006 + 21 +127.75000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +351.50000000000006 + 20 +127.75000000000001 + 30 +0.0 + 11 +350.5 + 21 +127.75000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +370.50000000000006 + 20 +127.75000000000001 + 30 +0.0 + 11 +370.50000000000006 + 21 +126.75000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +370.50000000000006 + 20 +126.75000000000001 + 30 +0.0 + 11 +371.50000000000006 + 21 +126.75000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +371.50000000000006 + 20 +126.75000000000001 + 30 +0.0 + 11 +371.50000000000006 + 21 +127.75000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +371.50000000000006 + 20 +127.75000000000001 + 30 +0.0 + 11 +370.50000000000006 + 21 +127.75000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +350.5 + 20 +130.25000000000003 + 30 +0.0 + 11 +350.5 + 21 +129.25000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +350.5 + 20 +129.25000000000003 + 30 +0.0 + 11 +351.50000000000006 + 21 +129.25000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +351.50000000000006 + 20 +129.25000000000003 + 30 +0.0 + 11 +351.50000000000006 + 21 +130.25000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +351.50000000000006 + 20 +130.25000000000003 + 30 +0.0 + 11 +350.5 + 21 +130.25000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +370.50000000000006 + 20 +130.25000000000003 + 30 +0.0 + 11 +370.50000000000006 + 21 +129.25000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +370.50000000000006 + 20 +129.25000000000003 + 30 +0.0 + 11 +371.50000000000006 + 21 +129.25000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +371.50000000000006 + 20 +129.25000000000003 + 30 +0.0 + 11 +371.50000000000006 + 21 +130.25000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +371.50000000000006 + 20 +130.25000000000003 + 30 +0.0 + 11 +370.50000000000006 + 21 +130.25000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +350.5 + 20 +132.75000000000003 + 30 +0.0 + 11 +350.5 + 21 +131.75000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +350.5 + 20 +131.75000000000003 + 30 +0.0 + 11 +351.50000000000006 + 21 +131.75000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +351.50000000000006 + 20 +131.75000000000003 + 30 +0.0 + 11 +351.50000000000006 + 21 +132.75000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +351.50000000000006 + 20 +132.75000000000003 + 30 +0.0 + 11 +350.5 + 21 +132.75000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +370.50000000000006 + 20 +132.75000000000003 + 30 +0.0 + 11 +370.50000000000006 + 21 +131.75000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +370.50000000000006 + 20 +131.75000000000003 + 30 +0.0 + 11 +371.50000000000006 + 21 +131.75000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +371.50000000000006 + 20 +131.75000000000003 + 30 +0.0 + 11 +371.50000000000006 + 21 +132.75000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +371.50000000000006 + 20 +132.75000000000003 + 30 +0.0 + 11 +370.50000000000006 + 21 +132.75000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +350.5 + 20 +135.25000000000003 + 30 +0.0 + 11 +350.5 + 21 +134.25000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +350.5 + 20 +134.25000000000003 + 30 +0.0 + 11 +351.50000000000006 + 21 +134.25000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +351.50000000000006 + 20 +134.25000000000003 + 30 +0.0 + 11 +351.50000000000006 + 21 +135.25000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +351.50000000000006 + 20 +135.25000000000003 + 30 +0.0 + 11 +350.5 + 21 +135.25000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +370.50000000000006 + 20 +135.25000000000003 + 30 +0.0 + 11 +370.50000000000006 + 21 +134.25000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +370.50000000000006 + 20 +134.25000000000003 + 30 +0.0 + 11 +371.50000000000006 + 21 +134.25000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +371.50000000000006 + 20 +134.25000000000003 + 30 +0.0 + 11 +371.50000000000006 + 21 +135.25000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +371.50000000000006 + 20 +135.25000000000003 + 30 +0.0 + 11 +370.50000000000006 + 21 +135.25000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +350.5 + 20 +137.75000000000003 + 30 +0.0 + 11 +350.5 + 21 +136.75 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +350.5 + 20 +136.75 + 30 +0.0 + 11 +351.50000000000006 + 21 +136.75 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +351.50000000000006 + 20 +136.75 + 30 +0.0 + 11 +351.50000000000006 + 21 +137.75000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +351.50000000000006 + 20 +137.75000000000003 + 30 +0.0 + 11 +350.5 + 21 +137.75000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +370.50000000000006 + 20 +137.75000000000003 + 30 +0.0 + 11 +370.50000000000006 + 21 +136.75 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +370.50000000000006 + 20 +136.75 + 30 +0.0 + 11 +371.50000000000006 + 21 +136.75 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +371.50000000000006 + 20 +136.75 + 30 +0.0 + 11 +371.50000000000006 + 21 +137.75000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +371.50000000000006 + 20 +137.75000000000003 + 30 +0.0 + 11 +370.50000000000006 + 21 +137.75000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +350.5 + 20 +140.25000000000003 + 30 +0.0 + 11 +350.5 + 21 +139.25 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +350.5 + 20 +139.25 + 30 +0.0 + 11 +351.50000000000006 + 21 +139.25 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +351.50000000000006 + 20 +139.25 + 30 +0.0 + 11 +351.50000000000006 + 21 +140.25000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +351.50000000000006 + 20 +140.25000000000003 + 30 +0.0 + 11 +350.5 + 21 +140.25000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +370.50000000000006 + 20 +140.25000000000003 + 30 +0.0 + 11 +370.50000000000006 + 21 +139.25 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +370.50000000000006 + 20 +139.25 + 30 +0.0 + 11 +371.50000000000006 + 21 +139.25 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +371.50000000000006 + 20 +139.25 + 30 +0.0 + 11 +371.50000000000006 + 21 +140.25000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +371.50000000000006 + 20 +140.25000000000003 + 30 +0.0 + 11 +370.50000000000006 + 21 +140.25000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +350.5 + 20 +142.75000000000003 + 30 +0.0 + 11 +350.5 + 21 +141.75000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +350.5 + 20 +141.75000000000003 + 30 +0.0 + 11 +351.50000000000006 + 21 +141.75000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +351.50000000000006 + 20 +141.75000000000003 + 30 +0.0 + 11 +351.50000000000006 + 21 +142.75000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +351.50000000000006 + 20 +142.75000000000003 + 30 +0.0 + 11 +350.5 + 21 +142.75000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +370.50000000000006 + 20 +142.75000000000003 + 30 +0.0 + 11 +370.50000000000006 + 21 +141.75000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +370.50000000000006 + 20 +141.75000000000003 + 30 +0.0 + 11 +371.50000000000006 + 21 +141.75000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +371.50000000000006 + 20 +141.75000000000003 + 30 +0.0 + 11 +371.50000000000006 + 21 +142.75000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +371.50000000000006 + 20 +142.75000000000003 + 30 +0.0 + 11 +370.50000000000006 + 21 +142.75000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +350.5 + 20 +145.25 + 30 +0.0 + 11 +350.5 + 21 +144.25000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +350.5 + 20 +144.25000000000003 + 30 +0.0 + 11 +351.50000000000006 + 21 +144.25000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +351.50000000000006 + 20 +144.25000000000003 + 30 +0.0 + 11 +351.50000000000006 + 21 +145.25 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +351.50000000000006 + 20 +145.25 + 30 +0.0 + 11 +350.5 + 21 +145.25 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +370.50000000000006 + 20 +145.25 + 30 +0.0 + 11 +370.50000000000006 + 21 +144.25000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +370.50000000000006 + 20 +144.25000000000003 + 30 +0.0 + 11 +371.50000000000006 + 21 +144.25000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +371.50000000000006 + 20 +144.25000000000003 + 30 +0.0 + 11 +371.50000000000006 + 21 +145.25 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +371.50000000000006 + 20 +145.25 + 30 +0.0 + 11 +370.50000000000006 + 21 +145.25 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +350.5 + 20 +147.75 + 30 +0.0 + 11 +350.5 + 21 +146.75000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +350.5 + 20 +146.75000000000003 + 30 +0.0 + 11 +351.50000000000006 + 21 +146.75000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +351.50000000000006 + 20 +146.75000000000003 + 30 +0.0 + 11 +351.50000000000006 + 21 +147.75 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +351.50000000000006 + 20 +147.75 + 30 +0.0 + 11 +350.5 + 21 +147.75 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +369.50000000000006 + 20 +148.75000000000003 + 30 +0.0 + 11 +369.50000000000006 + 21 +145.75 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +369.50000000000006 + 20 +145.75 + 30 +0.0 + 11 +372.50000000000006 + 21 +145.75 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +372.50000000000006 + 20 +145.75 + 30 +0.0 + 11 +372.50000000000006 + 21 +148.75000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +372.50000000000006 + 20 +148.75000000000003 + 30 +0.0 + 11 +369.50000000000006 + 21 +148.75000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +365.25000000000006 + 20 +105.75 + 30 +0.0 + 11 +356.75000000000006 + 21 +105.75 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +356.75000000000006 + 20 +105.75 + 30 +0.0 + 11 +356.75000000000006 + 21 +105.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +356.75000000000006 + 20 +105.25000000000001 + 30 +0.0 + 11 +365.25000000000006 + 21 +105.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +365.25000000000006 + 20 +105.25000000000001 + 30 +0.0 + 11 +365.25000000000006 + 21 +105.75 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +356.75000000000006 + 20 +153.50000000000003 + 30 +0.0 + 11 +365.25000000000006 + 21 +153.50000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +365.25000000000006 + 20 +153.50000000000003 + 30 +0.0 + 11 +365.25000000000006 + 21 +154.00000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +365.25000000000006 + 20 +154.00000000000003 + 30 +0.0 + 11 +356.75000000000006 + 21 +154.00000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +356.75000000000006 + 20 +154.00000000000003 + 30 +0.0 + 11 +356.75000000000006 + 21 +153.50000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +388.00000000000006 + 20 +149.00000000000003 + 30 +0.0 + 11 +388.00000000000006 + 21 +136.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +388.00000000000006 + 20 +136.0 + 30 +0.0 + 11 +418.00000000000006 + 21 +136.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +418.00000000000006 + 20 +136.0 + 30 +0.0 + 11 +418.00000000000006 + 21 +149.00000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +418.00000000000006 + 20 +149.00000000000003 + 30 +0.0 + 11 +388.00000000000006 + 21 +149.00000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +395.06818181818187 + 20 +103.5 + 30 +0.0 + 11 +383.6590909090909 + 21 +103.5 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +383.6590909090909 + 20 +103.5 + 30 +0.0 + 11 +383.6590909090909 + 21 +103.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +383.6590909090909 + 20 +103.00000000000001 + 30 +0.0 + 11 +395.06818181818187 + 21 +103.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +395.06818181818187 + 20 +103.00000000000001 + 30 +0.0 + 11 +395.06818181818187 + 21 +103.5 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +422.3409090909092 + 20 +103.5 + 30 +0.0 + 11 +410.93181818181824 + 21 +103.5 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +410.93181818181824 + 20 +103.5 + 30 +0.0 + 11 +410.93181818181824 + 21 +103.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +410.93181818181824 + 20 +103.00000000000001 + 30 +0.0 + 11 +422.3409090909092 + 21 +103.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +422.3409090909092 + 20 +103.00000000000001 + 30 +0.0 + 11 +422.3409090909092 + 21 +103.5 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +425.25000000000006 + 20 +120.4318181818182 + 30 +0.0 + 11 +425.25000000000006 + 21 +108.84090909090911 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +425.25000000000006 + 20 +108.84090909090911 + 30 +0.0 + 11 +425.75000000000006 + 21 +108.84090909090911 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +425.75000000000006 + 20 +108.84090909090911 + 30 +0.0 + 11 +425.75000000000006 + 21 +120.4318181818182 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +425.75000000000006 + 20 +120.4318181818182 + 30 +0.0 + 11 +425.25000000000006 + 21 +120.4318181818182 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +425.25000000000006 + 20 +148.15909090909093 + 30 +0.0 + 11 +425.25000000000006 + 21 +136.5681818181818 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +425.25000000000006 + 20 +136.5681818181818 + 30 +0.0 + 11 +425.75000000000006 + 21 +136.5681818181818 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +425.75000000000006 + 20 +136.5681818181818 + 30 +0.0 + 11 +425.75000000000006 + 21 +148.15909090909093 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +425.75000000000006 + 20 +148.15909090909093 + 30 +0.0 + 11 +425.25000000000006 + 21 +148.15909090909093 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +265.50000000000006 + 20 +111.25000000000001 + 30 +0.0 + 11 +265.50000000000006 + 21 +108.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +265.50000000000006 + 20 +108.25000000000001 + 30 +0.0 + 11 +268.50000000000006 + 21 +108.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +268.50000000000006 + 20 +108.25000000000001 + 30 +0.0 + 11 +268.50000000000006 + 21 +111.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +268.50000000000006 + 20 +111.25000000000001 + 30 +0.0 + 11 +265.50000000000006 + 21 +111.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +286.5 + 20 +110.25000000000001 + 30 +0.0 + 11 +286.5 + 21 +109.25 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +286.5 + 20 +109.25 + 30 +0.0 + 11 +287.5 + 21 +109.25 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +287.5 + 20 +109.25 + 30 +0.0 + 11 +287.5 + 21 +110.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +287.5 + 20 +110.25000000000001 + 30 +0.0 + 11 +286.5 + 21 +110.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +266.5 + 20 +112.75000000000001 + 30 +0.0 + 11 +266.5 + 21 +111.75000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +266.5 + 20 +111.75000000000001 + 30 +0.0 + 11 +267.50000000000006 + 21 +111.75000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +267.50000000000006 + 20 +111.75000000000001 + 30 +0.0 + 11 +267.50000000000006 + 21 +112.75000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +267.50000000000006 + 20 +112.75000000000001 + 30 +0.0 + 11 +266.5 + 21 +112.75000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +286.5 + 20 +112.75000000000001 + 30 +0.0 + 11 +286.5 + 21 +111.75000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +286.5 + 20 +111.75000000000001 + 30 +0.0 + 11 +287.5 + 21 +111.75000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +287.5 + 20 +111.75000000000001 + 30 +0.0 + 11 +287.5 + 21 +112.75000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +287.5 + 20 +112.75000000000001 + 30 +0.0 + 11 +286.5 + 21 +112.75000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +266.5 + 20 +115.25000000000001 + 30 +0.0 + 11 +266.5 + 21 +114.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +266.5 + 20 +114.25000000000001 + 30 +0.0 + 11 +267.50000000000006 + 21 +114.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +267.50000000000006 + 20 +114.25000000000001 + 30 +0.0 + 11 +267.50000000000006 + 21 +115.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +267.50000000000006 + 20 +115.25000000000001 + 30 +0.0 + 11 +266.5 + 21 +115.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +286.5 + 20 +115.25000000000001 + 30 +0.0 + 11 +286.5 + 21 +114.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +286.5 + 20 +114.25000000000001 + 30 +0.0 + 11 +287.5 + 21 +114.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +287.5 + 20 +114.25000000000001 + 30 +0.0 + 11 +287.5 + 21 +115.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +287.5 + 20 +115.25000000000001 + 30 +0.0 + 11 +286.5 + 21 +115.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +266.5 + 20 +117.75000000000001 + 30 +0.0 + 11 +266.5 + 21 +116.75000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +266.5 + 20 +116.75000000000001 + 30 +0.0 + 11 +267.50000000000006 + 21 +116.75000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +267.50000000000006 + 20 +116.75000000000001 + 30 +0.0 + 11 +267.50000000000006 + 21 +117.75000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +267.50000000000006 + 20 +117.75000000000001 + 30 +0.0 + 11 +266.5 + 21 +117.75000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +286.5 + 20 +117.75000000000001 + 30 +0.0 + 11 +286.5 + 21 +116.75000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +286.5 + 20 +116.75000000000001 + 30 +0.0 + 11 +287.5 + 21 +116.75000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +287.5 + 20 +116.75000000000001 + 30 +0.0 + 11 +287.5 + 21 +117.75000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +287.5 + 20 +117.75000000000001 + 30 +0.0 + 11 +286.5 + 21 +117.75000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +266.5 + 20 +120.25000000000001 + 30 +0.0 + 11 +266.5 + 21 +119.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +266.5 + 20 +119.25000000000001 + 30 +0.0 + 11 +267.50000000000006 + 21 +119.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +267.50000000000006 + 20 +119.25000000000001 + 30 +0.0 + 11 +267.50000000000006 + 21 +120.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +267.50000000000006 + 20 +120.25000000000001 + 30 +0.0 + 11 +266.5 + 21 +120.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +286.5 + 20 +120.25000000000001 + 30 +0.0 + 11 +286.5 + 21 +119.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +286.5 + 20 +119.25000000000001 + 30 +0.0 + 11 +287.5 + 21 +119.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +287.5 + 20 +119.25000000000001 + 30 +0.0 + 11 +287.5 + 21 +120.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +287.5 + 20 +120.25000000000001 + 30 +0.0 + 11 +286.5 + 21 +120.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +266.5 + 20 +122.75000000000001 + 30 +0.0 + 11 +266.5 + 21 +121.75000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +266.5 + 20 +121.75000000000001 + 30 +0.0 + 11 +267.50000000000006 + 21 +121.75000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +267.50000000000006 + 20 +121.75000000000001 + 30 +0.0 + 11 +267.50000000000006 + 21 +122.75000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +267.50000000000006 + 20 +122.75000000000001 + 30 +0.0 + 11 +266.5 + 21 +122.75000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +286.5 + 20 +122.75000000000001 + 30 +0.0 + 11 +286.5 + 21 +121.75000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +286.5 + 20 +121.75000000000001 + 30 +0.0 + 11 +287.5 + 21 +121.75000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +287.5 + 20 +121.75000000000001 + 30 +0.0 + 11 +287.5 + 21 +122.75000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +287.5 + 20 +122.75000000000001 + 30 +0.0 + 11 +286.5 + 21 +122.75000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +266.5 + 20 +125.25000000000001 + 30 +0.0 + 11 +266.5 + 21 +124.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +266.5 + 20 +124.25000000000001 + 30 +0.0 + 11 +267.50000000000006 + 21 +124.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +267.50000000000006 + 20 +124.25000000000001 + 30 +0.0 + 11 +267.50000000000006 + 21 +125.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +267.50000000000006 + 20 +125.25000000000001 + 30 +0.0 + 11 +266.5 + 21 +125.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +286.5 + 20 +125.25000000000001 + 30 +0.0 + 11 +286.5 + 21 +124.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +286.5 + 20 +124.25000000000001 + 30 +0.0 + 11 +287.5 + 21 +124.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +287.5 + 20 +124.25000000000001 + 30 +0.0 + 11 +287.5 + 21 +125.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +287.5 + 20 +125.25000000000001 + 30 +0.0 + 11 +286.5 + 21 +125.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +266.5 + 20 +127.75000000000001 + 30 +0.0 + 11 +266.5 + 21 +126.75000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +266.5 + 20 +126.75000000000001 + 30 +0.0 + 11 +267.50000000000006 + 21 +126.75000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +267.50000000000006 + 20 +126.75000000000001 + 30 +0.0 + 11 +267.50000000000006 + 21 +127.75000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +267.50000000000006 + 20 +127.75000000000001 + 30 +0.0 + 11 +266.5 + 21 +127.75000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +286.5 + 20 +127.75000000000001 + 30 +0.0 + 11 +286.5 + 21 +126.75000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +286.5 + 20 +126.75000000000001 + 30 +0.0 + 11 +287.5 + 21 +126.75000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +287.5 + 20 +126.75000000000001 + 30 +0.0 + 11 +287.5 + 21 +127.75000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +287.5 + 20 +127.75000000000001 + 30 +0.0 + 11 +286.5 + 21 +127.75000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +266.5 + 20 +130.25000000000003 + 30 +0.0 + 11 +266.5 + 21 +129.25000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +266.5 + 20 +129.25000000000003 + 30 +0.0 + 11 +267.50000000000006 + 21 +129.25000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +267.50000000000006 + 20 +129.25000000000003 + 30 +0.0 + 11 +267.50000000000006 + 21 +130.25000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +267.50000000000006 + 20 +130.25000000000003 + 30 +0.0 + 11 +266.5 + 21 +130.25000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +286.5 + 20 +130.25000000000003 + 30 +0.0 + 11 +286.5 + 21 +129.25000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +286.5 + 20 +129.25000000000003 + 30 +0.0 + 11 +287.5 + 21 +129.25000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +287.5 + 20 +129.25000000000003 + 30 +0.0 + 11 +287.5 + 21 +130.25000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +287.5 + 20 +130.25000000000003 + 30 +0.0 + 11 +286.5 + 21 +130.25000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +266.5 + 20 +132.75000000000003 + 30 +0.0 + 11 +266.5 + 21 +131.75000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +266.5 + 20 +131.75000000000003 + 30 +0.0 + 11 +267.50000000000006 + 21 +131.75000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +267.50000000000006 + 20 +131.75000000000003 + 30 +0.0 + 11 +267.50000000000006 + 21 +132.75000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +267.50000000000006 + 20 +132.75000000000003 + 30 +0.0 + 11 +266.5 + 21 +132.75000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +286.5 + 20 +132.75000000000003 + 30 +0.0 + 11 +286.5 + 21 +131.75000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +286.5 + 20 +131.75000000000003 + 30 +0.0 + 11 +287.5 + 21 +131.75000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +287.5 + 20 +131.75000000000003 + 30 +0.0 + 11 +287.5 + 21 +132.75000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +287.5 + 20 +132.75000000000003 + 30 +0.0 + 11 +286.5 + 21 +132.75000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +266.5 + 20 +135.25000000000003 + 30 +0.0 + 11 +266.5 + 21 +134.25000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +266.5 + 20 +134.25000000000003 + 30 +0.0 + 11 +267.50000000000006 + 21 +134.25000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +267.50000000000006 + 20 +134.25000000000003 + 30 +0.0 + 11 +267.50000000000006 + 21 +135.25000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +267.50000000000006 + 20 +135.25000000000003 + 30 +0.0 + 11 +266.5 + 21 +135.25000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +286.5 + 20 +135.25000000000003 + 30 +0.0 + 11 +286.5 + 21 +134.25000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +286.5 + 20 +134.25000000000003 + 30 +0.0 + 11 +287.5 + 21 +134.25000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +287.5 + 20 +134.25000000000003 + 30 +0.0 + 11 +287.5 + 21 +135.25000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +287.5 + 20 +135.25000000000003 + 30 +0.0 + 11 +286.5 + 21 +135.25000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +266.5 + 20 +137.75000000000003 + 30 +0.0 + 11 +266.5 + 21 +136.75 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +266.5 + 20 +136.75 + 30 +0.0 + 11 +267.50000000000006 + 21 +136.75 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +267.50000000000006 + 20 +136.75 + 30 +0.0 + 11 +267.50000000000006 + 21 +137.75000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +267.50000000000006 + 20 +137.75000000000003 + 30 +0.0 + 11 +266.5 + 21 +137.75000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +286.5 + 20 +137.75000000000003 + 30 +0.0 + 11 +286.5 + 21 +136.75 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +286.5 + 20 +136.75 + 30 +0.0 + 11 +287.5 + 21 +136.75 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +287.5 + 20 +136.75 + 30 +0.0 + 11 +287.5 + 21 +137.75000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +287.5 + 20 +137.75000000000003 + 30 +0.0 + 11 +286.5 + 21 +137.75000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +266.5 + 20 +140.25000000000003 + 30 +0.0 + 11 +266.5 + 21 +139.25 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +266.5 + 20 +139.25 + 30 +0.0 + 11 +267.50000000000006 + 21 +139.25 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +267.50000000000006 + 20 +139.25 + 30 +0.0 + 11 +267.50000000000006 + 21 +140.25000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +267.50000000000006 + 20 +140.25000000000003 + 30 +0.0 + 11 +266.5 + 21 +140.25000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +286.5 + 20 +140.25000000000003 + 30 +0.0 + 11 +286.5 + 21 +139.25 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +286.5 + 20 +139.25 + 30 +0.0 + 11 +287.5 + 21 +139.25 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +287.5 + 20 +139.25 + 30 +0.0 + 11 +287.5 + 21 +140.25000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +287.5 + 20 +140.25000000000003 + 30 +0.0 + 11 +286.5 + 21 +140.25000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +266.5 + 20 +142.75000000000003 + 30 +0.0 + 11 +266.5 + 21 +141.75000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +266.5 + 20 +141.75000000000003 + 30 +0.0 + 11 +267.50000000000006 + 21 +141.75000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +267.50000000000006 + 20 +141.75000000000003 + 30 +0.0 + 11 +267.50000000000006 + 21 +142.75000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +267.50000000000006 + 20 +142.75000000000003 + 30 +0.0 + 11 +266.5 + 21 +142.75000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +286.5 + 20 +142.75000000000003 + 30 +0.0 + 11 +286.5 + 21 +141.75000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +286.5 + 20 +141.75000000000003 + 30 +0.0 + 11 +287.5 + 21 +141.75000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +287.5 + 20 +141.75000000000003 + 30 +0.0 + 11 +287.5 + 21 +142.75000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +287.5 + 20 +142.75000000000003 + 30 +0.0 + 11 +286.5 + 21 +142.75000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +266.5 + 20 +145.25 + 30 +0.0 + 11 +266.5 + 21 +144.25000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +266.5 + 20 +144.25000000000003 + 30 +0.0 + 11 +267.50000000000006 + 21 +144.25000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +267.50000000000006 + 20 +144.25000000000003 + 30 +0.0 + 11 +267.50000000000006 + 21 +145.25 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +267.50000000000006 + 20 +145.25 + 30 +0.0 + 11 +266.5 + 21 +145.25 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +286.5 + 20 +145.25 + 30 +0.0 + 11 +286.5 + 21 +144.25000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +286.5 + 20 +144.25000000000003 + 30 +0.0 + 11 +287.5 + 21 +144.25000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +287.5 + 20 +144.25000000000003 + 30 +0.0 + 11 +287.5 + 21 +145.25 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +287.5 + 20 +145.25 + 30 +0.0 + 11 +286.5 + 21 +145.25 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +266.5 + 20 +147.75 + 30 +0.0 + 11 +266.5 + 21 +146.75000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +266.5 + 20 +146.75000000000003 + 30 +0.0 + 11 +267.50000000000006 + 21 +146.75000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +267.50000000000006 + 20 +146.75000000000003 + 30 +0.0 + 11 +267.50000000000006 + 21 +147.75 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +267.50000000000006 + 20 +147.75 + 30 +0.0 + 11 +266.5 + 21 +147.75 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +285.50000000000006 + 20 +148.75000000000003 + 30 +0.0 + 11 +285.50000000000006 + 21 +145.75 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +285.50000000000006 + 20 +145.75 + 30 +0.0 + 11 +288.50000000000006 + 21 +145.75 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +288.50000000000006 + 20 +145.75 + 30 +0.0 + 11 +288.50000000000006 + 21 +148.75000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +288.50000000000006 + 20 +148.75000000000003 + 30 +0.0 + 11 +285.50000000000006 + 21 +148.75000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +281.25 + 20 +105.75 + 30 +0.0 + 11 +272.75 + 21 +105.75 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +272.75 + 20 +105.75 + 30 +0.0 + 11 +272.75 + 21 +105.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +272.75 + 20 +105.25000000000001 + 30 +0.0 + 11 +281.25 + 21 +105.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +281.25 + 20 +105.25000000000001 + 30 +0.0 + 11 +281.25 + 21 +105.75 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +272.75 + 20 +153.50000000000003 + 30 +0.0 + 11 +281.25 + 21 +153.50000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +281.25 + 20 +153.50000000000003 + 30 +0.0 + 11 +281.25 + 21 +154.00000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +281.25 + 20 +154.00000000000003 + 30 +0.0 + 11 +272.75 + 21 +154.00000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +272.75 + 20 +154.00000000000003 + 30 +0.0 + 11 +272.75 + 21 +153.50000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +257.5 + 20 +109.0909090909091 + 30 +0.0 + 11 +262.5 + 21 +109.0909090909091 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +262.5 + 20 +109.0909090909091 + 30 +0.0 + 11 +262.5 + 21 +120.1818181818182 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +262.5 + 20 +120.1818181818182 + 30 +0.0 + 11 +257.5 + 21 +120.1818181818182 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +257.5 + 20 +136.8181818181818 + 30 +0.0 + 11 +262.5 + 21 +136.8181818181818 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +262.5 + 20 +136.8181818181818 + 30 +0.0 + 11 +262.5 + 21 +147.90909090909093 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +262.5 + 20 +147.90909090909093 + 30 +0.0 + 11 +257.5 + 21 +147.90909090909093 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +282.75 + 20 +82.0 + 30 +0.0 + 11 +286.25 + 21 +82.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +286.25 + 20 +82.0 + 30 +0.0 + 11 +286.25 + 21 +90.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +286.25 + 20 +90.0 + 30 +0.0 + 11 +282.75 + 21 +90.0 + 31 +0.0 + 0 +ENDSEC + 0 +EOF diff --git a/rocolib/output/ServoMountAndStack/tree.png b/rocolib/output/ServoMountAndStack/tree.png new file mode 100644 index 0000000000000000000000000000000000000000..5562209a1d2f5e2550c2529f7528e84cd7f9efe7 Binary files /dev/null and b/rocolib/output/ServoMountAndStack/tree.png differ